Just some bloke coding garbage
-
Автор темы
- #1
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:
Thank you in advance
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");
}
Последнее редактирование: