Beo
Three Magic
- Joined
- Aug 25, 2009
- Messages
- 9,075
- Solutions
- 1
- Reaction score
- 857
In items.xml;
Find Backpack of Holding..
.. This will increase your base speed by 10 when wearing this backpack.
Find Demon Backpack..
Gives 10 health and 10 mana over 6000 ticks.
Find Orange Backpack..
Gives axe fighting +20.
Find Blue Backpack..
Gives 10% more mana..
In movements.xml add:
Making more on request.
Find Backpack of Holding..
Code:
<item id="2365" name="backpack of holding" article="a">
<attribute key="weight" value="1500" />
<attribute key="containerSize" value="24" />
<attribute key="slotType" value="backpack" />
<attribute key="speed" value="10" />
</item>
Find Demon Backpack..
Code:
<item id="10518" name="demon backpack" article="a">
<attribute key="weight" value="1800" />
<attribute key="containerSize" value="20" />
<attribute key="slotType" value="backpack" />
<attribute key="healthGain" value="10" />
<attribute key="healthTicks" value="6000" />
<attribute key="manaGain" value="10" />
<attribute key="manaTicks" value="6000" />
</item>
Find Orange Backpack..
Code:
<item id="10519" name="orange backpack" article="an">
<attribute key="weight" value="1800" />
<attribute key="containerSize" value="20" />
<attribute key="slotType" value="backpack" />
<attribute key="axe" value="20" />
</item>
Find Blue Backpack..
Code:
<item id="2002" name="blue backpack" article="a">
<attribute key="weight" value="1800" />
<attribute key="containerSize" value="20" />
<attribute key="slotType" value="backpack" />
<attribute key="maxManaPercentage" value="110" />
</item>
In movements.xml add:
Code:
<movevent type="Equip" itemid="2365" slot="bag" event="function" value="onEquipItem"/>
<movevent type="Equip" itemid="10518" slot="bag" event="function" value="onEquipItem"/>
<movevent type="Equip" itemid="10519" slot="bag" event="function" value="onEquipItem"/>
<movevent type="Equip" itemid="2002" slot="bag" event="function" value="onEquipItem"/>
Making more on request.