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

AAC Help with Gods command...

Simonalina

Member
Joined
May 10, 2008
Messages
180
Solutions
1
Reaction score
15
Location
Sweden
Im using Znoteaac. i go to "Admin Panel" Then i take my character "Set position GOD"
Logging in to server: You see yourself. You are senior tutor.

Im getting Account type : 6
And Group ID: 3

So my question is.. Why am i getting position 3 on GOD.. God is supposed to be 6... :/


in my server Groups i got:

Code:
<?xml version="1.0" encoding="UTF-8"?>
<groups>
  <group id="1" name="player" flags="0" access="0" maxdepotitems="0" maxvipentries="0" />
  <group id="2" name="tutor" flags="137455730688" access="1" maxdepotitems="0" maxvipentries="200" />
  <group id="3" name="senior tutor" flags="137455730688" access="1" maxdepotitems="0" maxvipentries="200" />
  <group id="4" name="gamemaster" flags="13403503257359" access="1" maxdepotitems="0" maxvipentries="0" />
  <group id="5" name="community manager" flags="13403507451663" access="1" maxdepotitems="0" maxvipentries="200" />
  <group id="6" name="god" flags="272730398714" access="1" maxdepotitems="0" maxvipentries="200" />
</groups>

And i in my Htdocs Config.lua i got:

Code:
    $config['ingame_positions'] = array(
        1 => 'Player',
        2 => 'Tutor',
        3 => 'Senior Tutor',
        4 => 'Gamemaster',
        5 => 'Community Manager',
        6 => 'God',
 
switch group 3 with 6 xD, if you wanna do it the right way, probably it's a query

Code:
<?xml version="1.0" encoding="UTF-8"?>
<groups>
  <group id="1" name="player" flags="0" access="0" maxdepotitems="0" maxvipentries="0" />
  <group id="2" name="tutor" flags="137455730688" access="1" maxdepotitems="0" maxvipentries="200" />
  <group id="6" name="senior tutor" flags="137455730688" access="1" maxdepotitems="0" maxvipentries="200" />
  <group id="4" name="gamemaster" flags="13403503257359" access="1" maxdepotitems="0" maxvipentries="0" />
  <group id="5" name="community manager" flags="13403507451663" access="1" maxdepotitems="0" maxvipentries="200" />
  <group id="3" name="god" flags="272730398714" access="1" maxdepotitems="0" maxvipentries="200" />
</groups>
 
switch group 3 with 6 xD, if you wanna do it the right way, probably it's a query

Code:
<?xml version="1.0" encoding="UTF-8"?>
<groups>
  <group id="1" name="player" flags="0" access="0" maxdepotitems="0" maxvipentries="0" />
  <group id="2" name="tutor" flags="137455730688" access="1" maxdepotitems="0" maxvipentries="200" />
  <group id="6" name="senior tutor" flags="137455730688" access="1" maxdepotitems="0" maxvipentries="200" />
  <group id="4" name="gamemaster" flags="13403503257359" access="1" maxdepotitems="0" maxvipentries="0" />
  <group id="5" name="community manager" flags="13403507451663" access="1" maxdepotitems="0" maxvipentries="200" />
  <group id="3" name="god" flags="272730398714" access="1" maxdepotitems="0" maxvipentries="200" />
</groups>
yes i wanna do it the right way haha! now im just changing in phpadmin. so thats no idea either xD
 
the words are swapped, it says Group ID 3 beacuse your account type is 3 and it says account type 6 because your group id is 6
swap the words
 
Back
Top