30.08.2010, 14:09
Hey guys. I want that when you enter a bus only the person that enters it will have the textdraw.
But when I enter it other people have it too.
What's wrong now?
But when I enter it other people have it too.
pawn Код:
public busstart()
{
for(new i; i < MAX_PLAYERS; i ++)
{
if(IsPlayerConnected(i))
{
TextDrawShowForPlayer(i, Textdraw1);
TogglePlayerControllable(i,0);
}
}
return 1;
}