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

Bugs

Bequ

New Member
Joined
Jun 21, 2009
Messages
11
Reaction score
0
What are the bugs?

[24/05/2010 14:56:59] [Error - Spell Interface]
[24/05/2010 14:56:59] data/spells/scripts/custom/polymorph.lua
[24/05/2010 14:56:59] Description:
[24/05/2010 14:56:59] attempt to index a number value
[24/05/2010 14:56:59] [Warning - Event::loadScript] Cannot load script (data/spells/scripts/custom/polymorph.lua)

[24/05/2010 14:56:59] [Warning - InstantSpell::loadFunction] Function "editHouseGuest" does not exist.
[24/05/2010 14:56:59] [Warning - InstantSpell::loadFunction] Function "editHouseSubOwner" does not exist.
[24/05/2010 14:56:59] [Warning - InstantSpell::loadFunction] Function "editHouseDoor" does not exist.
[24/05/2010 14:56:59] [Warning - InstantSpell::loadFunction] Function "houseKick" does not exist.
[24/05/2010 14:57:01] [Warning - MoveEvents::addEvent] Duplicate move event found: 20000
[24/05/2010 14:57:01] [Warning - MoveEvents::addEvent] Duplicate move event found: 20001
[24/05/2010 14:57:01] [Warning - MoveEvents::addEvent] Duplicate move event found: 20002
[24/05/2010 14:57:01] [Warning - MoveEvents::addEvent] Duplicate move event found: 20003
 
this is an house error and it says that you are missing some house files
Code:
[24/05/2010 14:56:59] [Warning - InstantSpell::loadFunction] Function "editHouseGuest" does not exist.
[24/05/2010 14:56:59] [Warning - InstantSpell::loadFunction] Function "editHouseSubOwner" does not exist.
[24/05/2010 14:56:59] [Warning - InstantSpell::loadFunction] Function "editHouseDoor" does not exist.
[24/05/2010 14:56:59] [Warning - InstantSpell::loadFunction] Function "houseKick" does not exist.
to fix it

replace the old house part in talkaction.xml with this
Lua:
	<!-- Houses -->
	<talkaction words="alana res" filter="word-spaced" event="function" value="houseBuy"/>
	<talkaction words="alana grav" filter="word-spaced" event="function" value="houseSell"/>
	<talkaction words="alana sio" filter="word-spaced" event="function" value="houseKick"/>
	<talkaction words="aleta grav" filter="word-spaced" event="function" value="houseDoorList"/>
	<talkaction words="aleta sio" filter="word-spaced" event="function" value="houseGuestList"/>
	<talkaction words="aleta som" filter="word-spaced" event="function" value="houseSubOwnerList"/>
	<talkaction words="alana som" filter="word-spaced" event="script" value="leavehouse.lua"/>

and now you should not have any problem anymore with the house error
-------------------------------------------------------------------------------------------------------------
Code:
[24/05/2010 14:57:01] [Warning - MoveEvents::addEvent] Duplicate move event found: 20000
[24/05/2010 14:57:01] [Warning - MoveEvents::addEvent] Duplicate move event found: 20001
[24/05/2010 14:57:01] [Warning - MoveEvents::addEvent] Duplicate move event found: 20002
[24/05/2010 14:57:01] [Warning - MoveEvents::addEvent] Duplicate move event found: 20003

to fix this error you need to look in your movement.xml and look for 20000-20003 and remove one of them because you have those 2x
 
It is already in the file. I do not know what is happening.

And what about that other message needs to be done?
 
replace this:
Lua:
        <!-- Houses -->
        <talkaction words="alana res" filter="word-spaced" event="function" value="houseBuy"/>
        <talkaction words="alana grav" filter="word-spaced" event="function" value="houseSell"/>
        <talkaction words="alana sio" filter="word-spaced" event="function" value="houseKick"/>
        <talkaction words="aleta grav" filter="word-spaced" event="function" value="houseDoorList"/>
        <talkaction words="aleta sio" filter="word-spaced" event="function" value="houseGuestList"/>
        <talkaction words="aleta som" filter="word-spaced" event="function" value="houseSubOwnerList"/>
        <talkaction words="alana som" filter="word-spaced" event="script" value="leavehouse.lua"/>
 
Back
Top