23.02.2014, 20:51
I assume you could make a for loop, and check for a "hasLabel[playerid]" and then run the code:
pawn Код:
//When the label gets created
hasLabel[playerid] = 1;
//Command or sth..
for(new i; i < MAX_PLAYERS; i++)
{
if(hasLabel[i] == 1)
{
//Do some code here
}
}