Two Erroros Undefine Symbol
#3

Now i changed the code and added that

pawn Код:
new Textdraw:MyTd;

CMD:count(playerid, params[])
{
    TextDrawShowForPlayer(playerid, MyTd);
    CountDown(MyTd, playerid, 5);
    return 1;
}
forward CountDown(Text: text, playerid, time);
public CountDown(Text: text, playerid, time) {
    if(time < 1) {
        TextDrawSetString(text, "~r~GoGo!");
        SetTimerEx("tTextDrawHide", 5000, false, "ii", playerid, _: text);
    } else {
        new
            str[8] = "~r~";
        valstr(str[3], time, false);
        TextDrawSetString(text, str);
        SetTimerEx("CountDown", 1000, false, "iii", _: text, playerid, --time);
    }
}
forward tTextDrawHide(playerid, Text: text);
public tTextDrawHide(playerid, Text: text) {
    if(playerid == MAX_PLAYERS) {
        TextDrawHideForAll(text);
    } else {
        TextDrawHideForPlayer(playerid, text);
    }
}
Still its giving warnings
Код:
E:\SA-MP\SA-MP SERVERS\My Projects\0.3d\DM,STUNT,RACE\Live Stunting(ENG) [DM,STUNT,RACE,DERBY]\Server\gamemodes\1.0.pwn(1917) : warning 213: tag mismatch
E:\SA-MP\SA-MP SERVERS\My Projects\0.3d\DM,STUNT,RACE\Live Stunting(ENG) [DM,STUNT,RACE,DERBY]\Server\gamemodes\1.0.pwn(1918) : warning 213: tag mismatch
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


2 Warnings.
Reply


Messages In This Thread
Two Erroros Undefine Symbol - by Spooky - 04.01.2012, 08:56
Re: Two Erroros Undefine Symbol - by #Pwn. - 04.01.2012, 09:06
Re: Two Erroros Undefine Symbol - by Spooky - 04.01.2012, 09:16
Re: Two Erroros Undefine Symbol - by Spooky - 04.01.2012, 09:25
Re: Two Erroros Undefine Symbol - by Spooky - 04.01.2012, 09:49
Re: Two Erroros Undefine Symbol - by Spooky - 04.01.2012, 14:13
Re: Two Erroros Undefine Symbol - by Stigg - 04.01.2012, 14:18
Re: Two Erroros Undefine Symbol - by Spooky - 04.01.2012, 14:20

Forum Jump:


Users browsing this thread: 1 Guest(s)