• 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!

Windows Cant Make Gm Char

Teddy

SweStream.se
Joined
Oct 2, 2008
Messages
3,797
Reaction score
10
Location
Sweden 172
I now its easy to fix but i dont remeber how to fix :S
i have reinstall my database and now i cant make gm char i can only make group id 1 , 2 and 3

1 = Normal Player
2 = Senior Tutor
3 = Tutor

Acc Group Id are the same .. 1 , 2 and 3 all is same
 
Last edited:
First of all empty your groups table then put in this query:
PHP:
INSERT INTO `groups` VALUES (1, 'Player', 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `groups` VALUES (2, 'Tutor', 16809984, 524291, 1, 0, 0, 0, 0);
INSERT INTO `groups` VALUES (3, 'Senior Tutor', 68736352256, 524303, 2, 1, 0, 0, 0);
INSERT INTO `groups` VALUES (4, 'Gamemaster', 510024081247, 4189375, 3, 2, 4000, 200, 75);
INSERT INTO `groups` VALUES (5, 'Community Manager', 542239465466, 4189695, 4, 3, 6000, 300, 266);
INSERT INTO `groups` VALUES (6, 'God', 546534563834, 4194303, 5, 3, 8000, 400, 302);
 
Back
Top