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

3 bugs

EvoSoft

Is Da Mapper
Joined
Mar 10, 2010
Messages
693
Reaction score
5
Location
Northen part of Sweden
Hello once again!
I have a few bugs today..

1. Amulet of loss won't prevent your items from dropping when you die.
LUA:
	<item id="2173" article="an" name="amulet of loss">
		<attribute key="weight" value="420"/>
		<attribute key="slotType" value="necklace"/>
		<attribute key="preventItemloss" value="1"/>
		<attribute key="charges" value="1"/>
	</item>

2. When you buy items in stacks (eg. SD's and pots etc.) it will only appear as 1, but it is multiple.

3. Gate of Expertise doesn't work :(

Thanks for all help!
 
Last edited:
1. pharaps missing in movements?
Code:
	<movevent type="Equip" itemid="2173" slot="necklace" event="function" value="onEquipItem"/>
	<movevent type="DeEquip" itemid="2173" slot="necklace" event="function" value="onDeEquipItem"/>

2, i guess sources..

3, post your script to the level doors.
 
1. pharaps missing in movements?
Code:
	<movevent type="Equip" itemid="2173" slot="necklace" event="function" value="onEquipItem"/>
	<movevent type="DeEquip" itemid="2173" slot="necklace" event="function" value="onDeEquipItem"/>

2, i guess sources..

3, post your script to the level doors.

1. Nope, not missing in movements :/

2. :(

3. it's just regular expertise doors with action id 1XXX (xxx = level)
 
about the infinty runes problem
remove the charges line from all the runes in your items.xml file
like this line
<attribute key="charges" value="1"/>

and the other problem
you have to add action id to the gate of experience
ex : if you want gate of experience for level 50 you will add 1050 as action id of the gate of experience
if you want level 200 you add actionid 1200 to the gate of experience etc.
 
about the infinty runes problem
remove the charges line from all the runes in your items.xml file
like this line
<attribute key="charges" value="1"/>

and the other problem
you have to add action id to the gate of experience
ex : if you want gate of experience for level 50 you will add 1050 as action id of the gate of experience
if you want level 200 you add actionid 1200 to the gate of experience etc.

Thanks for the rune problem, I will try it.

I have those action ids on my expertise doors.. still don't work :/
 
so go in item.xml
and search for gate of expertise

check if this part is missing
<attribute key="levelDoor" value="1000"/>

only for closed doors and should be gate of expertise
 
Back
Top