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

Problem with acces tfs 0.2.8 Mysitc Spirit

Johanz

New Member
Joined
Dec 31, 2008
Messages
188
Reaction score
1
Hello, recently started using tfs 0.2.8. Have been using a other server before (not tfs) and i saw that there have been a few changes. Now the "groups" are in the mysql database and not as an xml. And only "player, gm, god". Changed my char to a god but ingame it says i dont have the acces to make an item for example /i. How to solve this? Totally new for me :p
 
Well, what if it's the commands.xml and not in talkactions?

talkactions.xml
Lua:
<?xml version="1.0" encoding="UTF-8"?>
<talkactions>
	<!-- player talkactions -->
	<talkaction words="!buypremium" script="buyprem.lua"/>
	<talkaction words="!leavehouse" script="leavehouse.lua"/>
	<talkaction words="!save" script="save.lua"/>
	<talkaction words="!changesex" script="changesex.lua"/>
	<talkaction words="!uptime" script="uptime.lua"/>
	<talkaction words="!deathlist" script="deathlist.lua"/>
	
	<!-- test talkactions -->
	<talkaction words="!z" script="magiceffect.lua"/>
	<talkaction words="!x" script="animationeffect.lua"/>
</talkactions>


Commands.xml
Lua:
 <?xml version="1.0" encoding="UTF-8"?>
<commands>
	<command cmd="/b" group="2" acctype="5"/>
	<command cmd="/i" group="2" acctype="5"/>
	<command cmd="/n" group="2" acctype="5"/>
	<command cmd="/reload" group="1" acctype="5"/>
	<command cmd="/s" group="2" acctype="5"/>
	<command cmd="/openserver" group="1" acctype="5"/>
	<command cmd="/closeserver" group="1" acctype="5"/>
	<command cmd="/ghost" group="2" acctype="5"/>
	<command cmd="/owner" group="2" acctype="5"/>
	<command cmd="/goto" group="2" acctype="4"/>
	<command cmd="/a" group="2" acctype="5"/>
	<command cmd="/c" group="2" acctype="4"/>
	<command cmd="/m" group="2" acctype="5"/>
	<command cmd="/summon" group="2" acctype="5"/>
	<command cmd="/kick" group="1" acctype="4"/>
	<command cmd="/B" group="1" acctype="4"/>
	<command cmd="/q" group="2" acctype="4"/>
	<command cmd="/info" group="1" acctype="4"/>
	<command cmd="/gethouse" group="2" acctype="4"/>
	<command cmd="/t" group="2" acctype="4"/>
	<command cmd="/up" group="2" acctype="5"/>
	<command cmd="/down" group="2" acctype="5"/>
	<command cmd="/newtype" group="2" acctype="5"/>
	<command cmd="/pos" group="1" acctype="2"/>
	<command cmd="/r" group="2" acctype="5"/>
	<command cmd="/town" group="2" acctype="4"/>
	<command cmd="/raid" group="2" acctype="4"/>
	<command cmd="/addskill" group="2" acctype="5"/>
	<command cmd="/ban" group="1" acctype="3"/>
	<command cmd="/unban" group="1" acctype="4"/>
	<command cmd="/clean" group="2" acctype="5"/>
	<command cmd="/mccheck" group="2" acctype="5"/>

	<command cmd="!online" group="1" acctype="1"/>
	<command cmd="!buyhouse" group="1" acctype="1"/>
	<command cmd="!sellhouse" group="1" acctype="1"/>
	<command cmd="!serverinfo" group="1" acctype="1"/>
	<command cmd="!kills" group="1" acctype="1"/>
	<command cmd="!createguild" group="1" acctype="1"/>
	<command cmd="!joinguild" group="1" acctype="1"/>
</commands>


what does the group and acctype stand for? :/
 
Back
Top