SA-MP Forums Archive
Tag Mis... - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Tag Mis... (/showthread.php?tid=454697)



Tag Mis... - RandomDude - 30.07.2013

Код:
C:\Users\Grand\Desktop\Ultimate Gaming Ground\gamemodes\STUNTS.pwn(688) : warning 213: tag mismatch
C:\Users\Grand\Desktop\Ultimate Gaming Ground\gamemodes\STUNTS.pwn(688) : warning 202: number of arguments does not match definition
C:\Users\Grand\Desktop\Ultimate Gaming Ground\gamemodes\STUNTS.pwn(696) : warning 213: tag mismatch
C:\Users\Grand\Desktop\Ultimate Gaming Ground\gamemodes\STUNTS.pwn(696) : warning 202: number of arguments does not match definition
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase
pawn Код:
CMD:intro(playerid)
{
    for(new i = 0; i < sizeof(TextDraw); i++)
    {
        TextDrawShowForPlayer(TextDraw[i]);
    }
    return 1;
}
CMD:introcancel(playerid)
{
    for(new i = 0; i < sizeof(TextDraw); i++)
    {
    TextDrawHideForPlayer(TextDraw[i]);
    }
    return 1;
}



Re: Tag Mis... - -Prodigy- - 30.07.2013

pawn Код:
TextDrawShowForPlayer(playerid, TextDraw[i]);

TextDrawHideForPlayer(playerid, TextDraw[i]);