Im not sure how TFS 0.3 works but i don't think there is such thing as access="2" or access="3". 0 is for no commands access, 1 is for access on. Which commands can be used by players/tutours/gms/gods is determined in commands.xml<?xml version="1.0" encoding="UTF-8"?>
<groups>
<group id="1" name="Player"/>
<group id="2" access="1" name="Tutor" flags="137455730688" customFlags="2"/>
<group id="3" access="2" name="Senior Tutor" flags="137455730688" customFlags="2"/>
<group id="6" access="3" name="God" flags="39304319442938" customFlags="67108863"/>
</groups>
<?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="a gamemaster" flags="4294967295" access="1" maxdepotitems="0" maxvipentries="0" />
<group id="3" name="a god" flags="1644142584" access="1" maxdepotitems="0" maxvipentries="0" />
</groups>
This only gives you "You see yourself. You are a god." No commands. In your case it would be group_id 6.<?xml version="1.0" encoding="UTF-8"?>
<commands>
<command cmd="/i" group="2" acctype="5" log="yes"/>
<command cmd="/n" group="2" acctype="5" log="yes"/>
<command cmd="/reload" group="1" acctype="5" log="yes"/>
<command cmd="/s" group="2" acctype="5" log="yes"/>
<command cmd="/openserver" group="1" acctype="5" log="yes"/>
<command cmd="/closeserver" group="1" acctype="5" log="yes"/>
<command cmd="/ghost" group="2" acctype="5" log="yes"/>
<command cmd="/owner" group="2" acctype="5" log="yes"/>
<command cmd="/goto" group="2" acctype="4" log="yes"/>
<command cmd="/a" group="2" acctype="5" log="yes"/>
<command cmd="/c" group="2" acctype="4" log="yes"/>
<command cmd="/m" group="2" acctype="5" log="yes"/>
<command cmd="/summon" group="2" acctype="5" log="yes"/>
<command cmd="/kick" group="1" acctype="4" log="yes"/>
<command cmd="/B" group="1" acctype="4" log="yes"/>
<command cmd="/info" group="1" acctype="4" log="yes"/>
<command cmd="/newtype" group="2" acctype="5" log="yes"/>
<command cmd="/pos" group="1" acctype="2" log="yes"/>
<command cmd="/r" group="2" acctype="5" log="yes"/>
<command cmd="/town" group="2" acctype="4" log="yes"/>
<command cmd="/raid" group="2" acctype="4" log="yes"/>
<command cmd="/addskill" group="2" acctype="5" log="yes"/>
<command cmd="/clean" group="2" acctype="5" log="yes"/>
<command cmd="/mccheck" group="2" acctype="5" log="yes"/>
<command cmd="/serverdiag" group="2" acctype="5" log="yes"/>
<command cmd="/addtutor" group="2" acctype="5" log="yes"/>
<command cmd="/removetutor" group="2" acctype="5" log="yes"/>
<command cmd="/hide" group="2" acctype="5" log="yes"/>
<command cmd="/newitem" group="2" acctype="5" log="yes"/>
<command cmd="!online" group="1" acctype="1" log="no"/>
<command cmd="!buyhouse" group="1" acctype="1" log="no"/>
<command cmd="!sellhouse" group="1" acctype="1" log="no"/>
<command cmd="!serverinfo" group="1" acctype="1" log="no"/>
</commands>
Im not sure how TFS 0.3 works but i don't think there is such thing as access="2" or access="3". 0 is for no commands access, 1 is for access on. Which commands can be used by players/tutours/gms/gods is determined in commands.xml
This is how it looks like in TFS 1.0.0
This only gives you "You see yourself. You are a god." No commands. In your case it would be group_id 6.
![]()
Now you look in commands.xml and search for biggest acctype. In 1.0.0 it's acctype="5" and set it in mysql database. Gratz, now you are god.
![]()
I just recommend that you get some unedited gropus.xml and commands.xml.