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

console error tfs 0.4 rev 3777

pepzo

Member
Joined
Jan 18, 2009
Messages
198
Reaction score
7
Hey my tfs is 0.4 rev 3777
I have some errors in console,how it fix?
>> Checking world type... Open PvP
>> Initializing game state and binding services...
[Warning - Monster::Monster] Unknown event name - inquisitionPortals
 
The eventname is not loading for creaturescripts check the event name "inquisitionPortals" that would be located in "Data/creaturescripts/creaturescripts.xml"
 
But i dont have it look my creturescript.xml:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<creaturescripts>
    <!-- Player Login -->
    <event type="login" name="PlayerLogin" event="script" value="login.lua"/>
        <event type="login" name="spamlog" event="script" value="spamlog.lua"/>
        <event type="login" name="MageBomb" event="script" value="magebomb.lua"/>
        <event type="login" name="Welcome" event="script" value="welcome.lua"/>
    <event type="login" name="HowManyLogIn" event="script" value="HowManyLogIn.lua"/>

    <!-- Ban System -->
    <event type="channelrequest" name="Ban_Type" event="script" value="ban/type.lua"/>
    <event type="channelrequest" name="Ban_Action" event="script" value="ban/action.lua"/>
    <event type="textedit" name="Ban_Finish" event="script" value="ban/finish.lua"/>

    <!-- Server Events -->
        <event type="kill" name="countKill" event="script" value="counter.lua"/>
         <event type="advance" name="Advance" event="script" value="levelup.lua"/>
         <event type="channeljoin" name="GuildEvents" event="script" value="guild.lua"/>
    <event type="receivemail" name="Mail" event="script" value="mail.lua"/>
<event type="reportbug" name="ReportBug" script="reportbug.lua"/>
    <event type="advance" name="AdvanceSave" event="script" value="advancesave.lua"/>
    <event type="think" name="Idle" event="script" value="idle.lua"/>
    <event type="think" name="SkullCheck" event="script" value="skullcheck.lua"/>
    <event type="combat" name="partyAndGuildProtection" event="script" value="partyAndGuildProtection.lua"/>
    <event type="login" name="recordIp" event="script" value="recordIp.lua"/>
    <event type="kill" name="SummonKill" event="script" value="obsidianknife.lua"/>
    <event type="login" name="obs_login" event="script" value="obsidianknife.lua"/>
    <event type="extendedopcode" name="ExtendedOpcode" event="script" value="extendedopcode.lua"/>
      
      


    <event type="advance" name="systemPolecania" event="script" value="systemPolecania.lua"/>
        <event type="direction" name="dance" event="script" value="dance.lua"/>
        <event type="advance" name="CC" event="script" value="5cc.lua"/>

</creaturescripts>
 
Back
Top