27.05.2011, 21:28
Hi all , i started to edit GodFather and put all cmd's in ZCMD
And now i got problem.
When i write command that i put in ZCMD
Server write: Server; Unkown Command , but command work.. :S
Pls help
Here is command:
And now i got problem.
When i write command that i put in ZCMD
Server write: Server; Unkown Command , but command work.. :S
Pls help
Here is command:
pawn Код:
CMD:cc(playerid, params[])
{
if(PlayerInfo[playerid][pAdmin] >= 1)
{
new cMsg[128], pName[MAX_PLAYER_NAME];
for(new c; c < 25; c++)
{
SendClientMessage(playerid, COLOR_RED, " ");
}
format(cMsg, sizeof(cMsg), "[Chat]: Admin %s je ocistio chat.", pName);
SendClientMessage(playerid, COLOR_LIGHTBLUE, cMsg);
SendClientMessage(playerid, COLOR_LIGHTBLUE, "www.sx-rp.info");
}
else SendClientMessage(playerid, COLOR_RED, "[ERROR]: Nisi Admin!");
return 1;
}