Posts: 441
Threads: 19
Joined: Sep 2011
Reputation:
0
Example: A player types "/aasfjjhgas" and the server Sends a Client message "Invalid Command etc."
Max_Coldheart
Unregistered
If you're using ZCMD:
pawn Код:
OnPlayerCommandPerformed(playerid, cmdtext[], success)
{
if(!success) return SendClientMessage(playerid, -1, "Invalid command, use /cmds to view the general commands");
}
Posts: 441
Threads: 19
Joined: Sep 2011
Reputation:
0
24.11.2011, 12:16
(
Последний раз редактировалось Thresholdold; 24.11.2011 в 12:51.
)
Is there a way I can do this without ZCMD ?? I'm finding ZCMD too difficult...