19.08.2017, 02:19
Hi All, Like the title, in the login, i want to show textdraw for player
After Login, i want this textdraw disappear
how to do it ?
After Login, i want this textdraw disappear
how to do it ?
TDGame[5] = TextDrawCreate(3.200013, 282.986724, "~w~your:~p~ text~w~~n~draw: here~n~for~n~example"); //Your textdraw here.
TextDrawHideForPlayer(playerid,TDGame[5]); //TDGame[5] is the name i choosed, it's just for example.
If you want it to disappear after spawning, you will use this for example.
This is under OnGameModeInit: Code:
TDGame[5] = TextDrawCreate(3.200013, 282.986724, "~w~your:~p~ text~w~~n~draw: here~n~for~n~example"); //Your textdraw here. Code:
TextDrawHideForPlayer(playerid,TDGame[5]); //TDGame[5] is the name i choosed, it's just for example. Ultraz. |
TextDrawShowForPlayer(playerid, YourTextDrawName);
TextDrawHideForPlayer(playerid, YourTextDrawName);