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

Improved equipment script

Bluewolf

New Member
Joined
Mar 5, 2014
Messages
12
Reaction score
0
Hello all!
I'm looking for a script, which prevents players equip helmets, armors, legs and boots on ammo's, shield's and weapon's spots.

My problem is players can stack resistances. For example demonlegs which gives 10% protection of fire and players are able to equip 4 of them. By doing this they can gain 40% protection of fire.

So I would like to get a script which allows equip only one demonlegs on the legs spot or they dosent gives any resistances on other spots and also same with helmets, armors and boots.

Regards Bluewolf
 
Add to movements:
Code:
    <movevent type="Equip" itemid="ID OF DEMON LEGS" slot="legs" event="function" value="onEquipItem"/>
    <movevent type="DeEquip" itemid="ID OF DEMON LEGS" slot="legs" event="function" value="onDeEquipItem"/>

Setup:

slot="legs"
and
itemid="ID OF DEMON LEGS"
 
Back
Top Bottom