TextDraw
#5

Change the textdraw variables to Textdraw0[MAX_PLAYERS], Textdraw1[MAX_PLAYERS], etc., then use Textdraw0[playerid], Textdraw1[playerid] to use the textdraws specific to that player.
You will also need add a loop to loop through all players and create those textdraws at the start.
Eg.
Код:
OnFilterScriptInit() {
  for(new i=0;i<MAX_PLAYERS;i++) {
    Textdraw0[i] = TextDrawCreate(....);
  }
}
Reply


Messages In This Thread
TextDraw - by Ro[X]y - 08.08.2009, 19:21
Re: TextDraw - by Chrham_2 - 08.08.2009, 19:57
Re: TextDraw - by Ro[X]y - 08.08.2009, 20:27
Re: TextDraw - by Ro[X]y - 09.08.2009, 00:48
Re: TextDraw - by ev0lution - 09.08.2009, 00:56

Forum Jump:


Users browsing this thread: 1 Guest(s)