Textdraw for each player.
#1

I currently have a little bar textdraw along the bottom of the screen, whenever a player types /work or finishes a mission, it will change the textdraw for everybody. so i need to create a textdraw for each player but not sure how.
Reply
#2

Put this Textdrawname[playerid] into each line of textdraw and on top of the script new textdrawname[MAX_PLAYERS];
Reply
#3

pawn Код:
new Text:YourTextDraw[MAX_PLAYERS];

YourTextDraw[playerid] = CreateTextDraw(...);

TextDrawSetString(YourTextDraw[playerid], String);

TextDrawShowForPlayer(playerid, YourTextDraw[playerid]);
Reply
#4

got it, thanks guys
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)