Can there be more then 4 security lvl's and how?
0 - Player
1 - Jr. Moderator
2 - Moderator
3 - GM
4 - Admin
instead of
0 - Player
1 - Moderator
2 - GM
3 - Admin
Can there be more then 4 security lvl's and how?
0 - Player
1 - Jr. Moderator
2 - Moderator
3 - GM
4 - Admin
instead of
0 - Player
1 - Moderator
2 - GM
3 - Admin
Yes. I do this for my vip system. All you have to do is update the rows in the database and change everything one level up.
They way I do it is
Then go through manually and enter the commands you want to be 1 by changing their values to 1.Code:UPDATE `command` SET `security` = "4" WHERE `security` ="3"; UPDATE `command` SET `security` = "3" WHERE `security` ="2"; UPDATE `command` SET `security` = "2" WHERE `security` ="1";
Restart, then your done.
=] That simple.