SA-MP Forums Archive
little help =D - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: little help =D (/showthread.php?tid=200897)



little help =D - MestreKiller - 19.12.2010

pawn Код:
public counter()
{
    count++;
    TextDrawSetString(Counttext,count);
    return 1;
}
Код:
C:\Users\Carlos\Desktop\New folder\filterscripts\gates.pwn(61) : error 035: argument type mismatch (argument 2)
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase
1 Error.
error line:
pawn Код:
TextDrawSetString(Counttext,count);



Re: little help =D - Norck - 19.12.2010

pawn Код:
public counter()
{
    count++;
    new string[8];
    format(string,sizeof(string),"%d",count);
    TextDrawSetString(Counttext,string);
    return 1;
}