25.03.2014, 13:54
Here is the error
Here is the code
Код:
C:\Users\Mckarlis\Desktop\TDM\gamemodes\TDM.pwn(594) : warning 217: loose indentation C:\Users\Mckarlis\Desktop\TDM\gamemodes\TDM.pwn(1599) : error 017: undefined symbol "GetName" C:\Users\Mckarlis\Desktop\TDM\gamemodes\TDM.pwn(3730) : warning 203: symbol is never used: "Forums" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error.
Код:
CMD:pm(playerid, params[]) { new id, message[256]; if(sscanf(params, "us[256]", id, message ) ) return SendClientMessage(playerid, -1, "Syntax: /pm [id] [message]"); if(!IsPlayerConnected(id) ) return SendClientMessage(playerid, -1, "Player is not connected"); new astring[256]; format(astring, sizeof(astring), "PM From %s: %s" , GetName(playerid), message); SendClientMessage(id, COLOR_YELLOW, astring); SendClientMessage(id, -1, "Message sent."); return 1; }