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

Creaturescripts

kamilcioo

Veteran OT User
Joined
Jul 25, 2008
Messages
979
Solutions
1
Reaction score
291
I have one problem in console

[18/08/2010 18:53:10] [Warning - BaseEvents::loadFromXml] Cannot open creaturescripts.xml file.
[18/08/2010 18:53:10] Line: 23, Info: Premature end of data in tag creaturescripts line 2


[18/08/2010 18:53:10] > ERROR: Unable to load CreatureEvents!

Here is my creaturescripts.xml

Code:
<?xml version="1.0" encoding="UTF-8"?>
<creaturescripts>
	<event type="login" name="PlayerLogin" event="script" value="login.lua"/>
	<event type="joinchannel" name="GuildMotd" event="script" value="guildmotd.lua"/>
	<event type="receivemail" name="Mail" event="script" value="mail.lua"/>
	<event type="reportbug" name="SaveReportBug" script="reportbug.lua"/>
	<event type="advance" name="AdvanceSave" event="script" value="advancesave.lua"/>
	<event type="think" name="SkullCheck" event="script" value="skullcheck.lua"/>
	<event type="death" name="inquisitionPortals" script="inquisitionPortals.lua"/>
	<event type="attack" name="WarAttack" event="script" value="war_attack.lua"/>
	<event type="kill" name="WarKill" event="script" value="war_kill.lua"/>
        <event type="kill" name="TopFrags" event="script" value="topfrags.lua"/>
        <event type="advance" name="advanced" script="advanced.lua"/>  
        <event type="kill" name="Grizzly_Adams" event="script" value="Grizzly_Adams.lua"/>
        <event type="kill" name="Bossy" event="script" value="bossy_killing.lua"/>
        <event type="kill" name="KilledMonstersCounter" event="script" value="monster_counter.lua"/>
	<event type="login" name="VipCheck" event="script" value="vipcheck.lua"/>
	<event type="logout" name="demonOakLogout" event="script" value="demonOakLogout.lua"/>
	<event type="death" name="demonOakDeath" event="script" value="demonOakDeath.lua"/>
	<event type="preparedeath" name="percent" event="script" value="percent.lua">
	<event type="login" name="percentlogin" event="script" value="percent.lua">
</creaturescripts>
 
LUA:
<?xml version="1.0" encoding="UTF-8"?>
<creaturescripts>
	<event type="login" name="PlayerLogin" event="script" value="login.lua"/>
	<event type="joinchannel" name="GuildMotd" event="script" value="guildmotd.lua"/>
	<event type="receivemail" name="Mail" event="script" value="mail.lua"/>
	<event type="reportbug" name="SaveReportBug" script="reportbug.lua"/>
	<event type="advance" name="AdvanceSave" event="script" value="advancesave.lua"/>
	<event type="think" name="SkullCheck" event="script" value="skullcheck.lua"/>
	<event type="death" name="inquisitionPortals" script="inquisitionPortals.lua"/>
	<event type="attack" name="WarAttack" event="script" value="war_attack.lua"/>
	<event type="kill" name="WarKill" event="script" value="war_kill.lua"/>
        <event type="kill" name="TopFrags" event="script" value="topfrags.lua"/>
        <event type="advance" name="advanced" script="advanced.lua"/>  
        <event type="kill" name="Grizzly_Adams" event="script" value="Grizzly_Adams.lua"/>
        <event type="kill" name="Bossy" event="script" value="bossy_killing.lua"/>
        <event type="kill" name="KilledMonstersCounter" event="script" value="monster_counter.lua"/>
	<event type="login" name="VipCheck" event="script" value="vipcheck.lua"/>
	<event type="logout" name="demonOakLogout" event="script" value="demonOakLogout.lua"/>
	<event type="death" name="demonOakDeath" event="script" value="demonOakDeath.lua"/>
	<event type="preparedeath" name="percent" event="script" value="percent.lua"/>
	<event type="login" name="percentlogin" event="script" value="percent.lua"/>
</creaturescripts>
 
Back
Top