06.09.2017, 01:43
Hello i get this error in my IRC Fs
code :
MessageToAdmins is defined but dont work it give error
Код:
error 010: invalid function or declaration C:\Users\donat\Desktop\Archivos 2\BLTTDM\IRC BLTTDM 3E\IRCFS.pwn(904) : error 021: symbol already defined: "GetPlayerName" C:\Users\donat\Desktop\Archivos 2\BLTTDM\IRC BLTTDM 3E\IRCFS.pwn(906) : error 021: symbol already defined: "MessageToAdmins" C:\Users\donat\Desktop\Archivos 2\BLTTDM\IRC BLTTDM 3E\IRCFS.pwn(910) : error 017: undefined symbol "ADM_CHAT_LOG" C:\Users\donat\Desktop\Archivos 2\BLTTDM\IRC BLTTDM 3E\IRCFS.pwn(913) : error 010: invalid function or declaration
Код:
//============================================================================== // Administration Chat //============================================================================== if(text[0] == '#' && AccInfo[playerid][Level] >= 1) { new string[128]; GetPlayerName(playerid,string,sizeof(string)); format(string,sizeof(string),"Admin Chat: %s: %s",string,text[1]); MessageToAdmins(green,string); GetPlayerName(playerid,string,sizeof(string)); format(string,sizeof(string),"9Admin Chat: %s: %s",string,text[1]); IRC_GroupSay(gGroupID2, IRC_ADMINCHANNEL, string); #if ADM_CHAT_LOG == true SaveIn("AdmChatLog",string); #endif return 0; }