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



Errors - rapister - 16.12.2012

Код:
IRCCMD:away(botid, channel[], user[], host[], params[])
{
	new afk[256];
    if(isnull(params)) return IRC_GroupSay(IRC_Group, channel, "3Usage: !away <msg>");
    afk = dini_Get(I_afk, user);
    if(strlen(afk) > 0)
    {
        back(user,channel);
        away(user, channel, params);
        return 1;
	}
	else away(user, channel, params);
	return 1;
}

IRCCMD:back(botid, channel[], user[], host[], params[])
{
    back(user,channel);
    return 1;
}
Errors

Код:
C:\Users\Home\Desktop\NVCNR\gamemodes\NVCNR.pwn(30319) : error 004: function "back" is not implemented
C:\Users\Home\Desktop\NVCNR\gamemodes\NVCNR.pwn(30320) : error 004: function "away" is not implemented
C:\Users\Home\Desktop\NVCNR\gamemodes\NVCNR.pwn(30323) : error 004: function "away" is not implemented
C:\Users\Home\Desktop\NVCNR\gamemodes\NVCNR.pwn(30329) : error 004: function "back" is not implemented
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


4 Errors.
Help please