30.10.2013, 14:20
I never had a problem with this using zcmd seems wierd, at least try this
pawn Код:
public OnPlayerCommandPerformed(playerid, cmdtext[], success)
{
new string[60]; //Name + the Message
if(!success) return format(string, sizeof(string), "(%s) Invalid Server Command", cmdtext), SendClientMessage(playerid, -1, string);
if(!LoggedIn[playerid]) return SendClientMessage(playerid, -1,"You need to login to use this command");
return 1;
}