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

TFS 10.10 GOD CHARACTER DOESNT WORK

Klank

Althea ¤ A New World Developer
Joined
Feb 21, 2008
Messages
1,093
Reaction score
657
Location
Norway
Iv'e changed group ID to 4 and nothing works.. I also tried change it to 5 and 6.

Anyone got the same problem?
 
I have TFS 3.0. But what you mean type? I only got option like ID and GROUP ID in account setting

This is my group file in tfs :


<?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"/>
<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>
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
<?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>

<?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>
This only gives you "You see yourself. You are a god." No commands. In your case it would be group_id 6.
HC4QKPl.png

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.
Kkqf4Vb.png


I just recommend that you get some unedited gropus.xml and commands.xml.
 
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.
HC4QKPl.png

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.
Kkqf4Vb.png


I just recommend that you get some unedited gropus.xml and commands.xml.

The group.xml are only edited from 4- 6 on god section.
talkactions/sripts/Commands.xml does not have any gm commands :eek:
But i still have comunity manager commands like /t, /goto, /a

I got nothing saying 'type' in acc section
sdaffafsfsfdsa.png
 

Attachments

  • upload_2013-11-19_12-15-20.png
    upload_2013-11-19_12-15-20.png
    51.3 KB · Views: 3 · VirusTotal
Type is for TFS 0.2 (and TFS 1.0 which is based on TFS 0.2)
For TFS 0.3 you have to change group_id from you god character in table players.
 
Back
Top