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

Speed Points In Dragon Scale Legs or winged HElmet

ayla

New Member
Joined
Jul 8, 2009
Messages
71
Reaction score
0
as me tittle Says i was modify some items from my XML
i add the attribute whit speed "40" but doesn't works
don't run more faster than those items
so, my question is
where i should modify this item??
could somebody help me? :)
pleaseeeeeeeeeeeeeeeeeee
 
onEquipItem and onDeEquipItem need adding to movements.xml

Code:
<movevent type="Equip" itemid="HELMETID" slot="head" event="function" value="onEquipItem"/>
<movevent type="DeEquip" itemid="HELMETID" slot="head" event="function" value="onDeEquipItem"/>

(then the same with dragon legs, but change head to legs in slot= ;))
 
@Tosuxo; thnx Alot It works :)!

then if i should add as....
Mana,Speed,Skills,Pro a Pshicial,or Type Elements,
Should Add Too at Movements.xml?
 
For Example This Mines....

<item id="2474" article="a" name="winged helmet">
<attribute key="description" value="It is the Helmet of Hermes." />
<attribute key="weight" value="1200" />
<attribute key="armor" value="10" />
<attribute key="speed" value="40" />
<attribute key="showattributes" value="1" />
<attribute key="slotType" value="head" />
But....

<attribute key="speed" value="40" />

03:18 You see a winged helmet (Arm:10, speed +20).
It weighs 12.00 oz.
It is the Helmet of Hermes

<movevent type="Equip" itemid="2474" slot="head" event="function" value="onEquipItem"/>
<movevent type="DeEquip" itemid="2474" slot="head" event="function" value="onDeEquipItem"/>

Why Is Saying Speed+20? :/?
 
Back
Top