Extra RCON admin 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Extra RCON admin commands? (
/showthread.php?tid=277747)
Extra RCON admin commands? -
davelord - 19.08.2011
Morning. Is there a way to inplent any new RCON admin commands? Those that we currently have are: '/kick and /ban'. I'd like to inplent a extra command, /rconhelp and /ajail.
Re: Extra RCON admin commands? -
Lorenc_ - 19.08.2011
pawn Код:
public OnRconCommand(cmd[])
{
if(strcmp(cmd, "lol", true)) {
//Do Code
}
return 1;
}
Use that callback
Re: Extra RCON admin commands? -
davelord - 19.08.2011
Thanks alot, buddy.