Question
#1

On my server when i enter an invalid command it says SERVER: Unknown Command, how do i change it to say in red ERROR: Wrong Command (/cmds)
Reply
#2

At the end of OnPlayerCommandText, change

return 1;

to:

pawn Код:
return SendClientMessage(playerid, COLOR, "ERROR: Wrong Command (/cmds)");
Reply
#3

Open your GameMode, and change the return 0; to:

return SendClientMessage(playerid, COLOR_RED, "ERROR: Wrong Command (/cmds)");


EDIT: ExeC: It is the return 0; not return 1;
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)