SA-MP Forums Archive
Little Help - 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: Little Help (/showthread.php?tid=570459)



Little Help - Sanady - 10.04.2015

Hello all. I have some issues which I don`t understand. So take a look:

pawn Код:
InsertLog("Administrator %s has given "#mTEAM1" money! [ Amount: %d $ ]", pName[playerid]);

stock InsertLog(Text2[])
{
    new Text[150];
    getdate(Year, Month, Day);
    gettime(Hour, Minute, Second);
    format(Text,150,"[%02d/%02d/%d][%02d:%02d:%02d] %s", Day, Month, Year, Hour, Minute, Second, Text2);
    dini_Set("AdminLog",Text);
    return 1;
}
Код:
D:\SA-MP Server Stuff 2\SA-MP Server\gamemodes\battletestv6.pwn(1397) : warning 202: number of arguments does not match definition
D:\SA-MP Server Stuff 2\SA-MP Server\gamemodes\battletestv6.pwn(3503) : warning 202: number of arguments does not match definition



Re: Little Help - Matess - 10.04.2015

PHP код:
new str[128];
format(str,sizeof(str),"Administrator %s has given "#mTEAM1" money! [ Amount: %d $ ]", pName[playerid]);
InsertLog(str);