Jump to content
  • 0

[Help] AccessLevel Question


Question

Posted

Hello,

I am thinking of running an Interlude GM Server, but I have an issue regarding the accesslevel. I want every character that is being created to have accesslevel 75. I dont wanna use the "EverybodyHasAdminRights = true" because this option gives everyone Admin rights and messes up with the server. Is there any way that I set at the character's table in Navicat a default number of accesslevel so that every character created has this accesslevel?

 

Thanks

5 answers to this question

Recommended Posts

  • 0
Posted

I don't get your problem, if you put EverybodyHasAdminRights = false, it gives rights only for >0 access (aka gm/admin).

 

You don't need anything more.

 

If you want absolutely your chars got access lvl 75 you have to edit java file around the part the character is created and stored in database.

 

But it's totally useless, considering banned got negative number, players got 0, GMs got a number between 1 and 99 and admin got lvl 100.

 

Why reinventing the system ?

  • 0
Posted

This is the problem:

 

If I set EverybodyHasAdminRights =True everybody gets 200 accesslevel and then everyone has Admin rights, which means he can restart the server, ban other players,etc.

 

Now, if i set EverybodyHasAdminRights =False, then every character is a normal player and I have to change their accesslevel manually in order to make them GMs with limited privilleges.

 

I do not wanna edit the java file. I wanna know if there is an option in navicat to change the default accesslevel number.

  • 0
Posted

Sry to say that, but

 

Now, if i set EverybodyHasAdminRights =False, then every character is a normal player and I have to change their accesslevel manually in order to make them GMs with limited privilleges.

 

Is the normal way.

 

Except if you have a population of 5000 players with 1000 GMs, I don't see the problem.

 

In the normal way, you edit accesslevel of only GMs. So 1 number for admin, 1 other for each GM. What's wrong ?

 

----

 

Btw, I just saw that : I am thinking of running an Interlude GM Server

 

What's supposed to be an "Interlude GM Server"...? If it's supposed to be players got some GM powers, refers to myself :

 

If you want absolutely your chars got access lvl 75 you have to edit java file around the part the character is created and stored in database.

 

And instead a 0 in accesslevel, put a 75.

 

----

 

as DarkKnightCZ said, you got too normally sql about accesslevel. If not, it's java part. You will have to change accesses too to differenciate admins, gms, and semi-gms (players).

  • 0
Posted

Hello,

I am thinking of running an Interlude GM Server, but I have an issue regarding the accesslevel. I want every character that is being created to have accesslevel 75. I dont wanna use the "EverybodyHasAdminRights = true" because this option gives everyone Admin rights and messes up with the server. Is there any way that I set at the character's table in Navicat a default number of accesslevel so that every character created has this accesslevel?

 

Thanks

 

You could try editing the default setting in character.sql;

 

`accesslevel` decimal(4,0) default NULL,

 

Change to:

 

`accesslevel` decimal(4,0) default '75',

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...