Admin system
#1

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.
Reply
#2

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

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

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.
Reply
#5

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

/ban , /kick , /warn , /car , /givegun , and like that...
Reply
#7

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!
Reply
#8

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

Help
Reply
#10

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.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)