14.05.2010, 12:18
check your arrays you used for each players like
the reason for the textdraw not working for IDs higher than 0 indicates that the pointer (ID here) points to 0 always.
make sure it gets count up by inserting a
into that loop, its easier to ckeck out if that variable counts up...
Код:
for(ID=0;ID<MAX_PLAYERS;ID++)
{
HideTextDraw(ID,Textdraw[ID]);
}
make sure it gets count up by inserting a
Код:
new string[64]; format(string,sizeof(string),"hide textdraw for player id %d",ID); SendClientMessage(ID,0xff7f7fff,string);

