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

Gamemaster access talkactions?

bybbzan

mapper
Joined
Aug 4, 2012
Messages
809
Solutions
2
Reaction score
136
Location
Sweden
Hello!

When i made a GM on phpmyadmin i could just choose between group_id 1,2 or 3. Instead of 6 that i want.
like this
3c45411c7b948b69f56f74b53665cc5b.png

I tried to change the talkaction commands to access 3 aswell. But still
i get this message ingame when i try to do for example /a or, /goto
"You can not execute this command".

Whats the problem? :blink:

Please help me.
 
Well, phpmyadmin sucks like that. (Some versions)
Just run this query:
Code:
update players set group_id = 6 where name = "yourcharname";
 
Well, phpmyadmin sucks like that. (Some versions)
Just run this query:
Code:
update players set group_id = 6 where name = "yourcharname";

I tried to add it but this error appear.
Code:
#1452 - Cannot add or update a child row: a foreign key constraint fails (`theforgottenserver`.`players`, CONSTRAINT `players_ibfk_2` FOREIGN KEY (`group_id`) REFERENCES `groups` (`id`))
 
Back
Top