• 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 Logging commands

raf

Active Member
Joined
Jan 10, 2011
Messages
261
Reaction score
38
Location
Warsaw, PL
Hey there, i'm trying to log every command that my staff uses (or atleast choose which ones i want to log). I know there's a commands.xml file (i'm using TFS 1.2), and it does log commands, but when i try to add there a custom command - it does not log them.
 
In 0.3.6 the command logs from gods are automaticly stored in data/logs/talkactions but don't know if thats also in Tfs 1.2
 
post commands.xml

PHP:
<?xml version="1.0" encoding="UTF-8"?>
<commands>
    <command cmd="/reload" group="4" acctype="5" log="yes"/>
    <command cmd="/serverdiag" group="5" acctype="5" log="yes"/>
    <command cmd="/raid" group="4" acctype="4" log="yes"/>
    <command cmd="/addskill" group="4" acctype="5" log="yes"/>
    <command cmd="!sellhouse" group="1" acctype="1" log="no"/>
    <command cmd="/bc" group="3" acctype="4" log="yes"/>
  <command cmd="/i" log="yes"/>
</commands>
 
Back
Top