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

mounts free 9.60

Yes is possible only go to
data/XML open mounts.xml
and use this
Code:
<?xml version="1.0" encoding="UTF-8"?>
<mounts>
	<mount id="1" clientId="368" name="Widow Queen" speed="20"[COLOR="#FF0000"] premium="no"[/COLOR] />
	<mount id="2" clientId="369" name="Racing Bird" speed="20" premium="no" />
	<mount id="3" clientId="370" name="War Bear" speed="20" premium="no" />
	<mount id="4" clientId="371" name="Black Sheep" speed="20" premium="no" />
	<mount id="5" clientId="372" name="Midnight Panther" speed="20" premium="no" />
	<mount id="6" clientId="373" name="Draptor" speed="20" premium="no" />
	<mount id="7" clientId="374" name="Titanica" speed="20" premium="no" />
	<mount id="8" clientId="375" name="Tin Lizzard" speed="20" premium="no" />
	<mount id="9" clientId="376" name="Blazebringer" speed="20" premium="no" />
	<mount id="10" clientId="377" name="Rapid Boar" speed="20" premium="no" />
	<mount id="11" clientId="378" name="Stampor" speed="20" premium="no" />
	<mount id="12" clientId="379" name="Undead Cavebear" speed="20" premium="no" />
	<mount id="13" clientId="387" name="Donkey" speed="20" premium="no" />
	<mount id="14" clientId="388" name="Tiger Slug" speed="20" premium="no" />
	<mount id="15" clientId="389" name="Uniwheel" speed="20" premium="no" />
	<mount id="16" clientId="390" name="Crystal Wolf" speed="20" premium="no" />
	<mount id="17" clientId="392" name="War Horse" speed="20" premium="no" />
	<mount id="18" clientId="401" name="Kingly Deer" speed="20" premium="no" />
	<mount id="19" clientId="402" name="Tamed Panda" speed="20" premium="no" />
	<mount id="20" clientId="405" name="Dromedary" speed="20" premium="no" />
	<mount id="21" clientId="406" name="King Scorpion" speed="20" premium="no" />
	<mount id="22" clientId="421" name="Rented Horse" speed="20" premium="no" />
	<mount id="23" clientId="426" name="Fire War Horse" speed="20" premium="no" />
	<mount id="24" clientId="427" name="Shadow Draptor" speed="20" premium="no" />
	<mount id="25" clientId="437" name="Rented Horse" speed="20" premium="no" />
	<mount id="26" clientId="438" name="Rented Horse" speed="20" premium="no" />
	<mount id="27" clientId="447" name="Ladybug" speed="20" premium="no" />
	<mount id="28" clientId="450" name="Manta" speed="20" premium="no" />
	<mount id="29" clientId="502" name="Ironblight" speed="20" premium="no" />
	<mount id="30" clientId="503" name="Magma Crawler" speed="20" premium="no" />
	<mount id="31" clientId="506" name="Dragonling" speed="20" premium="no" />
	<mount id="32" clientId="515" name="Gnarlhound" speed="20" premium="no" />
</mounts>
 
I think he meant that they have them when the character is made, so that they don't have to go out and tame the creatue, not that free accs can get mounts.
 
Well, just make a npc that sells mounts?
And place it somewhere were alot of people goes to?
I don't think its possible to get all mounts when ur character is made.
 
Ofc you can do this. Just add all mounts in the FirstItems Script, when he first logs in.
Like this:
Lua:
for i = 1, 32 do --32 is the number of mounts in 9.6
   doPlayerAddMount(cid, [i])
end
 
Back
Top