textdrawhide timer
#1

Код:
YCMD:sethp(playerid, params[], help)
{
	if(help) return SCM(playerid, COLOR_GREY, "Not supported");

    new string[128], playa, health;
    if(sscanf(params, "ud", playa, health))
	{
        SCM(playerid, COLOR_GRAD, "USAGE:  /sethp [playerid] [health]");
        return 1;
    }
    if (PlayerInfo[playerid][pAdmin] >= 4) {
    	if(IsPlayerConnected(playa))
		{
            if(playa != INVALID_PLAYER_ID)
			{
                SetPlayerHealth(playa, health);
                format(string, sizeof(string), "> You have set %s's health to %d.", GetPlayerNameEx(playa), health);
                SCM(playerid, COLOR_BLUE, string);
                format(string, sizeof(string), "> Admin %s has set your health to %d.", GetPlayerNameEx(playerid), health);
                SCM(playa, COLOR_BLUE, string);
            }
        }
        else SCM(playerid, COLOR_GRAD1, "Invalid player specified.");
    }
    else {
        format(string,sizeof(string),"~n~~n~~w~You cannot use this command.");
		TextDrawSetString(Textdraw69[playerid],string);
		TextDrawShowForPlayer(playerid, Textdraw69[playerid]);
    }
    return 1;
}
Код:
stock HideCMessage(playerid)
{
	TextDrawHideForPlayer(playerid, Textdraw69);
	return 1;
}

timer HideCMessage[4000](playerid)
{
	TextDrawHideForPlayer(playerid, Textdraw69);
	return 1;
}
That's my code, 1 problem, how do I get the textdraw hided after 4 seconds? I am stuck for a few hours, all I try(timers stocks anything) it all gets me error, could anyone please help me? I'm using Y_INI.
Reply


Messages In This Thread
textdrawhide timer - by whando - 07.02.2014, 22:01
Re: textdrawhide timer - by nmader - 07.02.2014, 22:04
Re: textdrawhide timer - by whando - 07.02.2014, 22:06
Re: textdrawhide timer - by Sledgehammer - 07.02.2014, 22:06
Re: textdrawhide timer - by whando - 07.02.2014, 22:19
Re: textdrawhide timer - by nmader - 08.02.2014, 00:31
Re: textdrawhide timer - by Jefff - 08.02.2014, 00:52

Forum Jump:


Users browsing this thread: 3 Guest(s)