SA-MP Forums Archive
Help me admin cmd doubt - 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: Help me admin cmd doubt (/showthread.php?tid=618194)



Help me admin cmd doubt - KaisAggarwal - 02.10.2016

I have a admin system in my script LSP-RP

But where do i find them? or modify the commands to lower level admins etc.. Please help


Re: Help me admin cmd doubt - Gotham - 02.10.2016

Do you mean to make commands for lower level admins and higher level admins at once(Only a command not repeating it twice.).


Re: Help me admin cmd doubt - SyS - 02.10.2016

there is only one solution learn scripting http://www.compuphase.com/pawn/Pawn_...nter_Guide.pdf


Re: Help me admin cmd doubt - KaisAggarwal - 02.10.2016

I mean how to configure the admin commmands for example /goto is there on my game mode for junior admin
but its only authorized for head admins++ so how am i supposed to configure it to junior admin?


Re: Help me admin cmd doubt - Eoussama - 03.10.2016

Quote:
Originally Posted by KaisAggarwal
Посмотреть сообщение
I mean how to configure the admin commmands for example /goto is there on my game mode for junior admin
but its only authorized for head admins++ so how am i supposed to configure it to junior admin?
it depends of how your admin script is written


Re: Help me admin cmd doubt - GoldenLion - 03.10.2016

Just go to the command and check for a lower admin level.
Like this:
Код:
if (Admin[playerid] < 5) return 1;
Change to:
Код:
if (Admin[playerid] < 1) return 1;
Something like this, I hope you got the idea.