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

Lua Invisible movements on Rainbow Shield

Yamo

New Member
Joined
Jun 8, 2008
Messages
77
Reaction score
2
Hello.

I wanted to manipulate the Icy Rainbow Shield (8907).
Currently, the shield is for knights and paladins I believe.
I want to change this.
I went to data/movements/movements.xml, but there was nothing from ID 8907 in my movements.xml script.
I can't add my icy rainbow shield at movements, because it will make an error on startup.
Do someone know where the 'movements settings' from the Rainbow shields are set?
 
Are you sure it's not added in movements.xml?
It's added by default like this.
Code:
  <movevent type="Equip" fromid="8905" toid="8909" slot="shield" level="100" event="function" value="onEquipItem">
     <vocation id="4"/>
     <vocation id="8" showInDescription="0"/>
  </movevent>
  <movevent type="DeEquip" fromid="8905" toid="8909" slot="shield" event="function" value="onDeEquipItem"/>

Code:
fromid="8905" toid="8909"
 
Back
Top