A Little help. - 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: A Little help. (
/showthread.php?tid=639465)
A Little help. -
Tibbzz - 18.08.2017
Can anyone make a Clientmessage when a player isn't an admin and typed /ban It will say Your not an admin Do not Try Again or else You've get Kicked/Banned.
Re: A Little help. -
Ghazal - 18.08.2017
pawn Код:
YCMD:ban(playerid, params[], help)
{
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, -1, "You are not an administrator. Do not try this again otherwise you'll be kicked/banned.");
//your code
return 1
}
Re: A Little help. -
Tibbzz - 18.08.2017
Thank you sooo much Ghazal