small problem
#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


Messages In This Thread
small problem - by Dylancoolblue - 27.03.2014, 23:17
Re: small problem - by MattTucker - 27.03.2014, 23:41
Re: small problem - by Dylancoolblue - 27.03.2014, 23:44
Re: small problem - by MattTucker - 27.03.2014, 23:46
Re: small problem - by [..MonTaNa..] - 27.03.2014, 23:51

Forum Jump:


Users browsing this thread: 2 Guest(s)