JS-скрипт Finding the score of each player

Just some bloke coding garbage
Пользователь
Статус
Оффлайн
Регистрация
26 Окт 2020
Сообщения
122
Реакции[?]
57
Поинты[?]
0
Basically I want to do a loop that puts the score values of each enemy player in an array. The only issue I have is that I have no idea how to get it. Apparently the prop_name should be "CL_SCRBRD_SCORE", but I have no idea what the table is etc.

I would also appreciate if someone send me a list that contains all the tables with all prop_name, if thats possible.

Code:
JavaScript:
scores = ["","","","",""];
enemies = Entity.GetEnemies();

for(x = 0; x < enemies.length; x++)
{
    scores[x] = Entity.GetProp(enemies[x], "?????", "CL_SCRBRD_SCORE");
}
Thank you in advance
 
Последнее редактирование:
Сверху Снизу