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

Lua Preforming commands

Breakdown

Be good, or be good at it
Joined
Feb 5, 2009
Messages
334
Reaction score
9
So i just updated to TFS latest for 8.4.2, everything works fine as far as i can see.

Except ...i cant preform any commands / talkactions on my god. This is how i have it setup ::

Code:
	<talkaction log="yes" words="/addskill" access="10" event="function" value="addSkill"/>
	<talkaction log="yes" words="/attr" access="10" event="function" value="changeThingProporties"/>
	<talkaction log="yes" words="/serverdiag" access="10" event="function" value="serverDiag"/>
	<talkaction log="yes" words="/closeserver" access="9" event="script" value="closeopen.lua"/>
	<talkaction log="yes" words="/openserver" access="9" event="script" value="closeopen.lua"/>
	<talkaction log="yes" access="10" words="/shutdown" event="script" value="shutdown.lua"/>
	<talkaction log="yes" access="10" words="/mode" event="script" value="mode.lua"/>

The group access for god, is 10 but when i go ingame and for example do /i 2160 it says i cant execute the talkaction.

Any help.
 
Because you need group_access 10 to be a GOD, then use 9 in commands

No that wasnt it, but dont kill me for this but i figured out the issue.

There is a groups.xml in the XML folder, the access there wasnt configured as on the DB.
 
Back
Top