Quote:
Originally Posted by Kasichok
PHP код:
new str[20], count = 0;
for(new i = 0, j = GetPlayerPoolSize(); i <= j; i++)
{
if(GetPlayerWantedLevel(i) < 1) continue;
count ++;
}
format(str, 20, "%d wanted players", count);
TextDrawSetString(textdraw, str);
|
I assume this works but where can I put it in the code? I've tried multiple places but I can't seem to find a place to fit the code in.