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

God commands! (Oh my god not again, yes i know sorry lol)

Faint

New Member
Joined
Aug 11, 2008
Messages
22
Reaction score
0
I have this problem again with making a GOD/GM character. My tables dont have an account_type and maybe thats the problem.
In game it says that im a God, and im wearing the outfit of a god. Just the commands dont work.
I tried almost every combination of group_id's. E.g. (account)group_id -6 and (player)group_id -6.
Im using TFS 0.3 (ates realmap) with Gesior shop and XAMPP

My account table of the character i want to be a god.


My player table of the character i want to be a god.


My groups table in the database.


And finally. My talkactions.xml

Code:
<?xml version="1.0" encoding="UTF-8"?>
<talkactions>
	<!-- Gods -->
	<talkaction log="yes" words="/closeserver" access="6" function="closeServer"/>
	<talkaction log="yes" words="/openserver" access="6" function="openServer"/>
	<talkaction filter="word" log="yes" words="/addskill" access="6" function="addSkill"/>
	<talkaction filter="word" log="yes" words="/attr" access="6" function="changeThingProporties"/>
	<talkaction log="yes" words="/serverdiag" access="6" function="serverDiag"/>
	<talkaction filter="word" log="yes" access="6" words="/shutdown" script="shutdown.lua"/>
	<talkaction filter="word" log="yes" access="6" words="/mode" script="mode.lua"/>

	<!-- Community Managers -->
	<talkaction filter="word" log="yes" words="/n" access="5" function="placeNpc"/>
	<talkaction filter="word" log="yes" words="/m" access="5" function="placeMonster"/>
	<talkaction filter="word" log="yes" words="/reload" access="5" function="reloadInfo"/>
	<talkaction filter="word" log="yes" words="/raid" access="5" script="raid.lua"/>
	<talkaction filter="word" log="yes" words="/newtype" access="5" script="newtype.lua"/>
	<talkaction filter="word" log="yes" words="/r" access="5" script="remove.lua"/>
	<talkaction filter="word" log="yes" words="/owner" access="5" script="owner.lua"/>
	<talkaction filter="word" log="yes" words="/s" access="5" function="placeSummon"/>
	<talkaction filter="word" log="yes" words="/i" access="5" script="createitem.lua"/>
	<talkaction filter="word" access="5" words="!z" script="magiceffect.lua"/>
	<talkaction filter="word" access="5" words="!x" script="animationeffect.lua"/>
	<talkaction filter="word" access="5" words="!y" script="animatedtext.lua"/>
	<talkaction filter="word" log="yes" access="5" words="/bc" script="broadcastclass.lua"/>

	<!-- Gamemasters -->
	<talkaction filter="word" log="yes" words="/t" access="4" script="teleportmaster.lua"/>
	<talkaction filter="word" log="yes" words="/c" access="4" script="teleporthere.lua"/>
	<talkaction filter="word" log="yes" words="/goto" access="4" script="teleportto.lua"/>
	<talkaction filter="word" log="yes" words="/a" access="4" script="teleporttiles.lua"/>
	<talkaction filter="word" log="yes" words="/kick" access="4" script="kick.lua"/>
	<talkaction filter="word" log="yes" words="/send" access="4" script="teleportsend.lua"/>
	<talkaction filter="word" log="yes" words="/unban" access="4" script="unban.lua"/>
	<talkaction log="yes" words="/ghost" access="4" function="ghost"/>
	<talkaction log="yes" words="/squelch" access="4" function="squelch"/>
	<talkaction log="yes" words="/maport" access="4" function="mapTeleport"/>
	<talkaction filter="word" log="yes" words="/town" access="4" script="teleporttown.lua"/>
	<talkaction filter="word" log="yes" words="/up" access="4" script="teleportfloor.lua"/>
	<talkaction filter="word" log="yes" words="/down" access="4" script="teleportfloor.lua"/>
	<talkaction filter="word" log="yes" access="4" words="/save" script="save.lua"/>
	<talkaction filter="word" log="yes" access="4" words="/clean" script="clean.lua"/>
	<talkaction filter="word" log="yes" access="4" words="/reports" script="reports.lua"/>
	<talkaction log="yes" access="4" words="/mc" script="multicheck.lua"/>

	<!-- Senior Tutors -->
	<talkaction filter="word" log="yes" words="/info" access="3" script="playerinfo.lua"/>
	<talkaction filter="word" log="yes" words="/gethouse" access="3" script="gethouse.lua"/>
	<talkaction filter="word" log="yes" access="3" words="/b" script="broadcast.lua"/>

	<!-- Tutors -->
	<talkaction filter="word" log="yes" words="/baninfo" access="2" function="showBanishmentInfo"/>
	<talkaction log="yes" access="2" words="!pos" script="position.lua"/>

	<!-- Players -->
	<talkaction words="!frags" script="frags.lua"/>
	<talkaction words="!buyhouse" function="buyHouse"/>
	<talkaction filter="word" words="!sellhouse" function="sellHouse"/>
	<talkaction filter="word" words="!createguild" function="createGuild"/>
	<talkaction filter="word" words="!joinguild" function="joinGuild"/>
	<talkaction words="!buypremium" script="buypremium.lua"/>
	<talkaction words="!leavehouse" script="leavehouse.lua"/>
	<talkaction words="/online" script="online.lua"/>
	<talkaction words="!changender" script="changender.lua"/>
	<talkaction words="/uptime" script="uptime.lua"/>
	<talkaction filter="word" words="/deathlist" script="deathlist.lua"/>
	<talkaction words="/pvp" script="pvp.lua"/>
	<talkaction words="!q" script="money.lua"/>
	<talkaction words="/serverinfo" script="serverinfo.lua"/>
</talkactions>

I hope you can help me (and others that have the same problem)
 
Back
Top