small problem
#1

After i login a class selection comes up but i want my textdraws to disspier straight after the player logs in so how can i do that?
Reply
#2

EDIT:nvm.
Reply
#3

I allready got stuff for the textdraws under onplayerconnect but the textdraw does not dissapier when im picking a skin
Reply
#4

I am not really that good with textdraws (never tried scripting them) but perhaps set like a timer to destroy them?
Reply
#5

You could make something like this:

pawn Код:
forward HideTextDraws(playerid);

public OnPlayerConnect(playerid)
{
    TextDrawShowForPlayer(playerid, yourtextdraw);
    TextDrawShowForPlayer(playerid, yourtextdraw2);
    SetTimerEx("HideTextDraws", 5000, false, "i", playerid);
    return 1;
}

public HideTextDraws(playerid)
{
    TextDrawHideForPlayer(playerid, yourtextdraw);
    TextDrawHideForPlayer(playerid, yourtextdraw2);
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)