wrong commands - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: wrong commands (
/showthread.php?tid=570875)
wrong commands -
iBots - 14.04.2015
well,in my script i got zcmd and strcmp ,both used,how can i detect if he wrote a command that doesnt exist in strcmp and ZCMD and send him error message?
Re: wrong commands -
Sithis - 14.04.2015
Just convert the strcmp into zcmd, it will save you a major headache.
Re : wrong commands -
Dutheil - 14.04.2015
You can't use OnPlayerCommandText if you included ZCMD.
If I understand what you want to do, you want to send an error message if the command doesn't exist with ZCMD.
You must use OnPlayerCommandPerformed, like that
PHP код:
public OnPlayerCommandPerformed(playerid, cmdtext[], success)
return (!success ? SendClientMessage(playerid, -1, "Unknown command, use /help.") : 1);
Re: wrong commands -
iBots - 14.04.2015
Well,i got strcmp and zcmd in my gamemode,both working but i want a way to detect if the command doesnt exist in strcmp and zcmd not only zcmd
Re : wrong commands -
Dutheil - 14.04.2015
Did you read ?
Quote:
You can't use OnPlayerCommandText if you included ZCMD
|
Re : wrong commands -
AlexBlack - 14.04.2015
The simple way is the "OnPlayerCommandPerformed(playerid, cmdtext[], success)" convert all your strcmp commands to ZCMD and use this callback like dutheil said you.
Re: wrong commands -
J4Rr3x - 14.04.2015
You may find this helpful:
https://sampforum.blast.hk/showthread.php?tid=276063
Re: Re : wrong commands -
fuckingcruse - 14.04.2015
Quote:
Originally Posted by Dutheil
You can't use OnPlayerCommandText if you included ZCMD.
If I understand what you want to do, you want to send an error message if the command doesn't exist with ZCMD.
You must use OnPlayerCommandPerformed, like that
PHP код:
public OnPlayerCommandPerformed(playerid, cmdtext[], success)
return (!success ? SendClientMessage(playerid, -1, "Unknown command, use /help.") : 1);
|
Who said we can't use? I used it and it worked too..