SA-MP Forums Archive
Admin system - 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: Admin system (/showthread.php?tid=457153)



Admin system - JusstinRoller - 09.08.2013

I'm starting to make admin system but can anyone give me an idea about command for level 1-5?

Thank you for read this.


Re: Admin system - Konstantinos - 09.08.2013

You can take a look at other admin systems too and see what are the most common commands for these levels.


Re: Admin system - FarCry - 09.08.2013

What is Your Server Mode ? so we can help u to make cmds for admins


Re: Admin system - EvanA - 09.08.2013

This isn't an idea/suggestion section. This is for scripting help. Wrong section. Do what they said ^^ or post it in the proper section.


Re: Admin system - JusstinRoller - 09.08.2013

I just want to make admin filterscript. Is the see the command of other admin systems is copy ?


Re: Admin system - BodyBoardVEVO - 09.08.2013

/ban , /kick , /warn , /car , /givegun , and like that...


Re: Admin system - Napster101 - 09.08.2013

man u can use the luxadmin tutorial :
Add "<ladmin> in top of your script
Then, add line to your command:
Quote:

if (IsPlayerLuxAdm(playerid))

Quote:

if(strcmp(cmd, "/godon", true) == 0)
{
if(IsPlayerLuxAdmin(playerid,1))
{
//Function Here
}
else SendClientMessage(playerid, COLOR_WHITE, "ERROR: You are not Adminstrator level 1");
SetPlayerHealth(playerid, 9999999999);
return 1;
}

that will be enouth for /godon
now /godoff
Quote:

if(strcmp(cmd, "/godoff", true) == 0)
{
if(IsPlayerLuxAdmin(playerid,1))
{
//Function Here
}
else SendClientMessage(playerid, COLOR_WHITE, "ERROR: You are not Adminstrator level 1");
SetPlayerHealth(playerid, 100);
return 1;
}

done!


Re: Admin system - JusstinRoller - 09.08.2013

No. U guys don't understand me. VEVO is right but i need is a list command.


Re: Admin system - JusstinRoller - 11.08.2013

Help


Re: Admin system - Dopefull - 11.08.2013

Find a admin system then look at the commands, it's not harder than that. I just found a list of admin commands in less than a few seconds, so start searching.