• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

[XML] "Missing log tag for.."

programjer

Active Member
Joined
Sep 4, 2014
Messages
248
Reaction score
35
Location
Poland
I have kinda weird problem because when I launch server it shows
Code:
Missing log tag for /i
Missing log fat for /n
and all other commands. I tried to fix it by adding into commands log="yes" but it doesnt fix problem. In game all the commands works but this spam in terminal is kinda annoying.

commands.xml
Code:
<?xml version="1.0"?>

<commands>

-- Gods
<command cmd="/i"            access="3" />        -- Create a item by ID
<command cmd="/n"            access="3" />        -- Create a item by name
<command cmd="/reload"       access="3" />        -- Reload configurations
<command cmd="/s"            access="3" />        -- Summon a NPC
<command cmd="/openserver"   access="3" />              -- Open the server
<command cmd="/closeserver"  access="3" />            -- Close the server
<command cmd="/owner"        access="3" />        -- Set a player to house owner
<command cmd="/goto"         access="3" />        -- Teleport to players, creatures or NPCs
<command cmd="/a"            access="3" />        -- Teleport by SQMs
<command cmd="/raid"         access="3" />        -- Start raid
<command cmd="/up"           access="3" />        -- teleport on higher floor
<command cmd="/down"         access="3" />        -- teleport on lower floor
<command cmd="/invisible"    access="3" />        -- invisible


-- Gamemasters
<command cmd="/c"            access="2" />        -- Teleport a player to you
<command cmd="/m"            access="2" />        -- Summon a "wild" monster
<command cmd="/summon"       access="2" />        -- Summon a monster
<command cmd="/kick"         access="2" />        -- Kick a player
<command cmd="/save"         access="2" />        -- Save server
<command cmd="/refreshmap"   access="2" />        -- Clean map
<command cmd="!changesex"   access="2" />        -- Teleport a player to you
<command cmd="/bc"           access="2" />        -- Summon a "wild" monster
<command cmd="/clean"        access="2" />        -- Summon a monster
<command cmd="/gmoutfit"     access="2" />        -- Kick a player
<command cmd="/gmspeed"      access="2" />        -- Save server
<command cmd="/leavehouse"   access="2" />
<command cmd="/newtype"      access="2" />
<command cmd="/r"            access="2" />
<command cmd="/trace"        access="2" />

-- Tutors
<command cmd="/B"            access="1" />        -- Red broadcast message
<command cmd="/q"            access="1" />        -- Check your money
<command cmd="/z"            access="1" />        -- Check effects (0-26)
<command cmd="/info"         access="1" />        -- Info about a player
<command cmd="/getonline"    access="1" />        -- Info about how many players are online
<command cmd="/gethouse"     access="1" />        -- Info about house of a player
<command cmd="/serverinfo"   access="1" />              -- Info about the server
<command cmd="/t"            access="1" />        -- Go to your temple
<command cmd="/town"         access="1" />        -- Go to your town

-- Players
<command cmd="/sellhouse"    access="0" />        -- Sell your house to a player
<command cmd="/buyhouse"     access="0" />        -- Buy house
<command cmd="!online"       access="0" />        -- List of players online
<command cmd="!frags"        access="0" />        -- Frags

</commands>

talkactions.xml
Code:
<?xml version="1.0" encoding="UTF-8"?>
<talkactions>
    <!-- Gods -->
    <talkaction filter="word" log="yes" access="5" words="/shutdown" script="shutdown.lua"/>
    <talkaction filter="word" log="yes" access="5" words="/pvp" script="pvp.lua"/>

    <!-- Community Managers -->
    <talkaction filter="word" access="4" words="!z" script="magiceffect.lua"/>
    <talkaction filter="word" access="4" words="!x" script="animationeffect.lua"/>
    <talkaction filter="word" access="4" words="!y" script="animatedtext.lua"/>
    <talkaction filter="word" log="yes" access="4" words="/bc" script="broadcastclass.lua"/>

    <!-- Game Masters -->
    <talkaction filter="word" log="yes" access="3" words="/save" script="save.lua"/>
    <talkaction filter="word" log="yes" access="3" words="/clean" script="clean.lua"/>
    <talkaction filter="word" log="yes" access="3" words="/reports" script="reports.lua"/>

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

    <!-- Tutors -->
    <talkaction log="yes" access="1" words="!pos" script="position.lua"/>

    <!-- Players -->
    <talkaction words="!buypremium" script="buyprem.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="!mode" script="mode.lua"/>
    <talkaction words="!q" script="money.lua"/>
    <talkaction words="!serverinfo" script="serverinfo.lua"/>
    <talkaction words="!rank" script="highscore.lua"/>
</talkactions>

I'm using tfs 0.3
 
Back
Top