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

Lua Bonus to Mounts?

Carlitos Flow

Developer (lvl*1)
Joined
Mar 2, 2011
Messages
156
Solutions
4
Reaction score
10
Is possible add Bonus to the mounts? example, who are mounting a Lion get 10% more of life?

EDIT: If some player are mounting a Red Manta will add 10% more of life, or skill as attributes for outfits: Example:

<?xml version="1.0" encoding="UTF-8"?>
<mounts>
<mount id="1" clientId="368" skills dist="3" name="Widow Queen" speed="20" premium="no" />
 
Last edited:
Like so...
only certain things can go in the main line...
Code:
<mount id="1" clientId="368" name="Widow Queen" speed="100" attackSpeed="-100" healthGain="5" manaGain="5" healthTicks="1" manaTicks="1" premium="no" >
        <skills weapon="5"/>
        <skills shielding="5"/>
        <stats magLevel="5"/>
        <absorb PercentAll="5"/>  <!-- can be reflect PercentAll or PercentEarth or PercentHoly ect... -->
    </mount>
 
Like so...
only certain things can go in the main line...
Code:
<mount id="1" clientId="368" name="Widow Queen" speed="100" attackSpeed="-100" healthGain="5" manaGain="5" healthTicks="1" manaTicks="1" premium="no" >
        <skills weapon="5"/>
        <skills shielding="5"/>
        <stats magLevel="5"/>
        <absorb PercentAll="5"/>  <!-- can be reflect PercentAll or PercentEarth or PercentHoly ect... -->
    </mount>
Not working u.u
 

Similar threads

Back
Top