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

Windows Mount Editing Help

juansanchez

Advanced OT User
Joined
Apr 2, 2015
Messages
223
Reaction score
160
So, hey otland people, today i need a help with mounts in my server. I want to make certain mount take no paralyze what so ever, and also give some other attributes, like defense or attack, but whenever e try to edit the mounts, even changing the speed, nothing happends. I dont know if i'm editing in the wrong place... Could someone help me?

This is where i edit it: XML - Mounts

<?xml version="1.0" encoding="UTF-8"?>
<mounts>
<mount id="1" clientId="368" name="Widow Queen" speed="20" premium="yes" />
<mount id="2" clientId="369" name="Racing Bird" speed="20" premium="yes" />
<mount id="3" clientId="370" name="War Bear" speed="20" premium="yes" />
<mount id="4" clientId="371" name="Black Sheep" speed="20" premium="yes" />
<mount id="5" clientId="372" name="Midnight Panther" speed="20" premium="yes" />
<mount id="6" clientId="373" name="Draptor" speed="20" premium="yes" />
<mount id="7" clientId="374" name="Titanica" speed="20" premium="no" />
<mount id="8" clientId="375" name="Tin Lizzard" speed="20" premium="yes" />
<mount id="9" clientId="376" name="Blazebringer" speed="20" premium="yes" />
<mount id="10" clientId="377" name="Rapid Boar" speed="20" premium="no" />
<mount id="11" clientId="378" name="Stampor" speed="20" premium="yes" />
<mount id="12" clientId="379" name="Undead Cavebear" speed="20" premium="yes" />
<mount id="13" clientId="387" name="Donkey" speed="20" premium="yes" />
<mount id="14" clientId="388" name="Tiger Slug" speed="20" premium="no" />
<mount id="15" clientId="389" name="Uniwheel" speed="20" premium="yes" />
<mount id="16" clientId="390" name="Crystal Wolf" speed="20" premium="no" />
<mount id="17" clientId="392" name="War Horse" speed="50" premium="no" />
<mount id="18" clientId="401" name="Kingly Deer" speed="20" premium="yes" />
<mount id="19" clientId="402" name="Tamed Panda" speed="40" premium="yes" />
<mount id="20" clientId="405" name="Dromedary" speed="20" premium="yes" />
<mount id="21" clientId="406" name="Sandstone Scorpion" speed="20" premium="yes" />
<mount id="22" clientId="421" name="Rented Horse" speed="20" premium="no" />
<mount id="23" clientId="426" name="Fire War Horse" speed="300" premium="yes" />
<mount id="24" clientId="427" name="Shadow Draptor" speed="60" premium="yes" />
<mount id="25" clientId="437" name="Gray Horse" speed="20" premium="no" />
<mount id="26" clientId="438" name="Brown Horse" speed="20" premium="no" />
<mount id="27" clientId="447" name="Ladybug" speed="30" premium="no" />
<mount id="28" clientId="450" name="Manta" speed="20" premium="no" />
<mount id="29" clientId="502" name="Iron Blight" speed="20" premium="yes" />
<mount id="30" clientId="503" name="Magma Crawler" speed="20" premium="yes" />
<mount id="31" clientId="506" name="Dragonling" speed="20" premium="no" />
<mount id="32" clientId="515" name="Gnarlhound" speed="20" premium="yes" />
<mount id="33" clientid="222" name="Toad" speed="30" premium="no" />
<mount id="34" clientid="219" name="Tarantula" speed="30" premium="no" />
<mount id="35" clientid="245" name="Nightmare" speed="40" premium="no" />
<mount id="36" clientid="236" name="Destroyer" speed="40" premium="no" />
<mount id="37" clientid="192" name="Carrion Worm" speed="20" premium="no" />
<mount id="38" clientid="460" name="Fast bug" speed="40" premium="no" />
<mount id="39" clientid="461" name="Green bug" speed="30" premium="no" />
</mounts>

Could someone help me?
 
Well... The speed part is editable, are you testing it with a GM or GOD (ADM) character? Because they already have max speed, so... Mounting, using haste spell and equping boots of haste will not take any effect.

Also, the speed number is halved befores adding to the player stats, for example: speed=20 adds 10 movespeed
 
Well... The speed part is editable, are you testing it with a GM or GOD (ADM) character? Because they already have max speed, so... Mounting, using haste spell and equping boots of haste will not take any effect.

Also, the speed number is halved befores adding to the player stats, for example: speed=20 adds 10 movespeed

I fixed the speed thing, but i still cant add any other things like the no paralyze... more damage.. or more defense while using the mount
 
Check your mounts.cpp for what can be added.
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>
 
Check your mounts.cpp for what can be added.
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>

I cant add tags =/ When i add a new tag, it's says Unable to Load mounts when i start up the server.
 
Back
Top