• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[MySQL] How to set a God Account.

lokolokio

Well-Known Member
Joined
Jan 7, 2009
Messages
201
Solutions
13
Reaction score
78
Location
Mexico
I hope this tutorial help many people like me.

The only things you need to change is on MySql, go and check on your ServerDataBase and in section 'accounts' find your account and change acctype from 1 to 5.

or execute this query:
Code:
UPDATE `accounts` SET `type` = '5' WHERE `accounts`.`id` = X;
Where X is your account ID.

2.- On 'players' table edit group id to 3, or execute this sql query, where X is the character ID, check your characters ID.


Code:
UPDATE `players` SET `group_id` = '3' WHERE `players`.`id` = X;

13319995_273824966338519_810249723198700082_n.jpg


Hope this would be useful.
 
I don't know about why needs to be exactly 5... I think this maybe for positions of the players like in the other servers:
AccType 0 = Player.
AccType 1 = Tutor.
AccType 2 = Senior Tutor.
AccType 3 = Gamemaster.
AccType 4 = Community Manager.
AccType 5 = God.
 
Well, when I set mine to 5 I cant do god commands but when I do 6 I can.
 
Back
Top