09.10.2011, 21:34
i tryed i did:
and then the command:
i get this error for some reason tho :
pawn Код:
#include <zcmd>
#include <sscanf2>
pawn Код:
CMD:pm(playerid, params[])
{
new id, message;
if(sscanf(params,"us[128]", id, Message))
{
new string[128];
format(string, sizeof(string),"PM From %s[ID: %d]: %s", GetName(id), id, Message);
SendClientMessage(playerid, -1, string);
format(string, sizeof(string),"PM To %s[ID: %d]: %s", GetName(playerid), id, Message);
SendClientMessage(id, -1, string);
}
else SendClientMessage(playerid, -1,"Usage: /pm [id][message]");
return 1;
}
pawn Код:
C:\Users\Unlimited DMers\Desktop\Fas FreeRoam\gamemodes\saving2.pwn(196) : error 029: invalid expression, assumed zero
C:\Users\Unlimited DMers\Desktop\Fas FreeRoam\gamemodes\saving2.pwn(196) : error 017: undefined symbol "cmd_pm"
C:\Users\Unlimited DMers\Desktop\Fas FreeRoam\gamemodes\saving2.pwn(196) : error 029: invalid expression, assumed zero
C:\Users\Unlimited DMers\Desktop\Fas FreeRoam\gamemodes\saving2.pwn(196) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
4 Errors.