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

Lua TFS 1.3 when you are fishing you can tame a mount

Icaraii

Well-Known Member
Joined
Jan 5, 2020
Messages
469
Solutions
1
Reaction score
58
Hello guys,

I would like a simple edition on this script, I would like for the player to have a small chance to tame this mounts while fishing:
1% plumfish;
3% coralripper;
5% sea devil;

LUA:
-- Script 100% by Mukah --
local useWorms = FALSE
local waterIds = {493, 4822, 4610, 4611, 4612, 4613, 4614, 4615, 4616, 4617, 4618, 4619, 4620, 4664, 4621, 4622, 4623, 4624, 4625, 7236, 10499, 15401, 15402, 4632, 4633, 4634, 4635, 4636, 4637, 4638, 4639, 4640, 4641, 4642, 4643, 4644, 4645, 4646, 4647, 4648, 4649, 4650, 4651, 4652, 4653, 4654, 4655, 4656, 4657, 4658, 4659, 4660, 4661, 4662, 4663, 4664, 4665, 4666, 4820, 4821, 4822, 4823, 4824, 4825, 4828, 4829, 4830, 4831, 6627, 6628, 6629, 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644, 6645, 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653, 6654, 6655, 6656, 6657, 6658, 6659, 6660, 6661, 6662, 6663, 6664, 6665, 6666, 6667, 6668, 6669, 6670, 6671, 6672, 6673, 6674, 6675, 6676, 6677, 6678, 6679, 6680, 6681, 6682, 6687, 6688, 6689, 6690, 6691, 6692, 6693, 6694, 7943, 7944, 7945, 7946, 7947, 7948, 7949, 7950, 7951, 7952, 7953, 7954, 8863}

function onUse(cid, item, fromPosition, itemEx, toPosition)


fskill = getPlayerSkill(cid,6)
count = math.random(3,7)

if isInArray(waterIds, itemEx.itemid) == TRUE then
if itemEx.itemid ~= 493 then
if useWorms == FALSE or useWorms == useWorms then

fish = math.random(1,8)

if (fish == 1 or fish == 2 or fish == 3) then
doPlayerAddItem(cid, 2670, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 4 or fish == 5) then
doPlayerAddItem(cid, 27905, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 6) then
doPlayerAddItem(cid, 27903, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)


else

end
end
end
doSendMagicEffect(toPosition, 79)
return TRUE
end
return FALSE
end
-- Script 100% by Mukah --
 
Solution
X
inside of your function just add it like you said.

LUA:
if math.random(100) <= 1 then -- 1%
    player:addMount(mountId)
end

if math.random(100) <= 3 then -- 3%
    player:addMount(mountId)
end

if math.random(100) <= 5 then -- 5%
    player:addMount(mountId)
end

check mounts.xml for the mountId's
inside of your function just add it like you said.

LUA:
if math.random(100) <= 1 then -- 1%
    player:addMount(mountId)
end

if math.random(100) <= 3 then -- 3%
    player:addMount(mountId)
end

if math.random(100) <= 5 then -- 5%
    player:addMount(mountId)
end

check mounts.xml for the mountId's
 
Solution
inside of your function just add it like you said.

LUA:
if math.random(100) <= 1 then -- 1%
    player:addMount(mountId)
end

if math.random(100) <= 3 then -- 3%
    player:addMount(mountId)
end

if math.random(100) <= 5 then -- 5%
    player:addMount(mountId)
end

check mounts.xml for the mountId's
It isn't working.
I put like yours, but it wasn't recognizing "player" so I change for cid, and the script work without error, but it doesn't give the mount.

LUA:
-- Script 100% by Mukah --
local useWorms = FALSE
local waterIds = {493, 4822, 4610, 4611, 4612, 4613, 4614, 4615, 4616, 4617, 4618, 4619, 4620, 4664, 4621, 4622, 4623, 4624, 4625, 7236, 10499, 15401, 15402, 4632, 4633, 4634, 4635, 4636, 4637, 4638, 4639, 4640, 4641, 4642, 4643, 4644, 4645, 4646, 4647, 4648, 4649, 4650, 4651, 4652, 4653, 4654, 4655, 4656, 4657, 4658, 4659, 4660, 4661, 4662, 4663, 4664, 4665, 4666, 4820, 4821, 4822, 4823, 4824, 4825, 4828, 4829, 4830, 4831, 6627, 6628, 6629, 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644, 6645, 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653, 6654, 6655, 6656, 6657, 6658, 6659, 6660, 6661, 6662, 6663, 6664, 6665, 6666, 6667, 6668, 6669, 6670, 6671, 6672, 6673, 6674, 6675, 6676, 6677, 6678, 6679, 6680, 6681, 6682, 6687, 6688, 6689, 6690, 6691, 6692, 6693, 6694, 7943, 7944, 7945, 7946, 7947, 7948, 7949, 7950, 7951, 7952, 7953, 7954, 8863}

function onUse(cid, item, fromPosition, itemEx, toPosition)



fskill = getPlayerSkill(cid,6)
count = math.random(3,7)

if isInArray(waterIds, itemEx.itemid) == TRUE then
if itemEx.itemid ~= 493 then
if useWorms == FALSE or useWorms == useWorms then

fish = math.random(1,115)

if math.random(100) <= 99 then -- 1%
    cid:addMount(734)
end

if math.random(100) <= 99 then -- 3%
    cid:addMount(735)
end

if math.random(100) <= 99 then -- 5%
    cid:addMount(736)
end

if (fish == 1 or fish == 2 or fish == 3 or fish == 4 or fish == 5) then
doPlayerAddItem(cid, 2670, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 6 or fish == 7 or fish == 8 or fish == 9 or fish == 10) then
doPlayerAddItem(cid, 27905, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 11 or fish == 12 or fish == 13 or fish == 14 or fish == 15) then
doPlayerAddItem(cid, 27903, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 16 or fish == 17 or fish == 18 or fish == 19 or fish == 20) then
doPlayerAddItem(cid, 7159, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 21 or fish == 22 or fish == 23 or fish == 24 or fish == 25) then
doPlayerAddItem(cid, 27904, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 26 or fish == 27 or fish == 28 or fish == 29 or fish == 30) then
doPlayerAddItem(cid, 7158, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 31 or fish == 32 or fish == 33 or fish == 34 or fish == 35) then
doPlayerAddItem(cid, 7963, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 36 or fish == 37 or fish == 38 or fish == 39 or fish == 40) then
doPlayerAddItem(cid, 27897, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 41 or fish == 42 or fish == 43 or fish == 44 or fish == 45) then
doPlayerAddItem(cid, 27892, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 46 or fish == 47 or fish == 48 or fish == 49 or fish == 50) then
doPlayerAddItem(cid, 27891, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 51 or fish == 52 or fish == 53 or fish == 54 or fish == 55) then
doPlayerAddItem(cid, 27902, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 56 or fish == 57 or fish == 58 or fish == 59 or fish == 60) then
doPlayerAddItem(cid, 27890, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 61 or fish == 62 or fish == 63 or fish == 64) then
doPlayerAddItem(cid, 27889, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 65 or fish == 66 or fish == 67 or fish == 68) then
doPlayerAddItem(cid, 27888, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 69 or fish == 70 or fish == 71 or fish == 72) then
doPlayerAddItem(cid, 27887, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 73 or fish == 74 or fish == 75 or fish == 76) then
doPlayerAddItem(cid, 27901, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 77 or fish == 78 or fish == 79 or fish == 80) then
doPlayerAddItem(cid, 27900, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 81 or fish == 82 or fish == 83 or fish == 84) then
doPlayerAddItem(cid, 27899, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 85 or fish == 86 or fish == 87 or fish == 88) then
doPlayerAddItem(cid, 27898, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 89 or fish == 90 or fish == 91) then
doPlayerAddItem(cid, 27893, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 92 or fish == 93 or fish == 94) then
doPlayerAddItem(cid, 27894, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 95 or fish == 96 or fish == 97) then
doPlayerAddItem(cid, 27895, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 98 or fish == 99 or fish == 100) then
doPlayerAddItem(cid, 27896, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)



else

end
end
end
doSendMagicEffect(toPosition, 79)
return TRUE
end
return FALSE
end
-- Script 100% by Mukah --
 
It isn't working.
I put like yours, but it wasn't recognizing "player" so I change for cid, and the script work without error, but it doesn't give the mount.

LUA:
-- Script 100% by Mukah --
local useWorms = FALSE
local waterIds = {493, 4822, 4610, 4611, 4612, 4613, 4614, 4615, 4616, 4617, 4618, 4619, 4620, 4664, 4621, 4622, 4623, 4624, 4625, 7236, 10499, 15401, 15402, 4632, 4633, 4634, 4635, 4636, 4637, 4638, 4639, 4640, 4641, 4642, 4643, 4644, 4645, 4646, 4647, 4648, 4649, 4650, 4651, 4652, 4653, 4654, 4655, 4656, 4657, 4658, 4659, 4660, 4661, 4662, 4663, 4664, 4665, 4666, 4820, 4821, 4822, 4823, 4824, 4825, 4828, 4829, 4830, 4831, 6627, 6628, 6629, 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644, 6645, 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653, 6654, 6655, 6656, 6657, 6658, 6659, 6660, 6661, 6662, 6663, 6664, 6665, 6666, 6667, 6668, 6669, 6670, 6671, 6672, 6673, 6674, 6675, 6676, 6677, 6678, 6679, 6680, 6681, 6682, 6687, 6688, 6689, 6690, 6691, 6692, 6693, 6694, 7943, 7944, 7945, 7946, 7947, 7948, 7949, 7950, 7951, 7952, 7953, 7954, 8863}

function onUse(cid, item, fromPosition, itemEx, toPosition)



fskill = getPlayerSkill(cid,6)
count = math.random(3,7)

if isInArray(waterIds, itemEx.itemid) == TRUE then
if itemEx.itemid ~= 493 then
if useWorms == FALSE or useWorms == useWorms then

fish = math.random(1,115)

if math.random(100) <= 99 then -- 1%
    cid:addMount(734)
end

if math.random(100) <= 99 then -- 3%
    cid:addMount(735)
end

if math.random(100) <= 99 then -- 5%
    cid:addMount(736)
end

if (fish == 1 or fish == 2 or fish == 3 or fish == 4 or fish == 5) then
doPlayerAddItem(cid, 2670, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 6 or fish == 7 or fish == 8 or fish == 9 or fish == 10) then
doPlayerAddItem(cid, 27905, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 11 or fish == 12 or fish == 13 or fish == 14 or fish == 15) then
doPlayerAddItem(cid, 27903, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 16 or fish == 17 or fish == 18 or fish == 19 or fish == 20) then
doPlayerAddItem(cid, 7159, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 21 or fish == 22 or fish == 23 or fish == 24 or fish == 25) then
doPlayerAddItem(cid, 27904, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 26 or fish == 27 or fish == 28 or fish == 29 or fish == 30) then
doPlayerAddItem(cid, 7158, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 31 or fish == 32 or fish == 33 or fish == 34 or fish == 35) then
doPlayerAddItem(cid, 7963, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 36 or fish == 37 or fish == 38 or fish == 39 or fish == 40) then
doPlayerAddItem(cid, 27897, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 41 or fish == 42 or fish == 43 or fish == 44 or fish == 45) then
doPlayerAddItem(cid, 27892, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 46 or fish == 47 or fish == 48 or fish == 49 or fish == 50) then
doPlayerAddItem(cid, 27891, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 51 or fish == 52 or fish == 53 or fish == 54 or fish == 55) then
doPlayerAddItem(cid, 27902, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 56 or fish == 57 or fish == 58 or fish == 59 or fish == 60) then
doPlayerAddItem(cid, 27890, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 61 or fish == 62 or fish == 63 or fish == 64) then
doPlayerAddItem(cid, 27889, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 65 or fish == 66 or fish == 67 or fish == 68) then
doPlayerAddItem(cid, 27888, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 69 or fish == 70 or fish == 71 or fish == 72) then
doPlayerAddItem(cid, 27887, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 73 or fish == 74 or fish == 75 or fish == 76) then
doPlayerAddItem(cid, 27901, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 77 or fish == 78 or fish == 79 or fish == 80) then
doPlayerAddItem(cid, 27900, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 81 or fish == 82 or fish == 83 or fish == 84) then
doPlayerAddItem(cid, 27899, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 85 or fish == 86 or fish == 87 or fish == 88) then
doPlayerAddItem(cid, 27898, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 89 or fish == 90 or fish == 91) then
doPlayerAddItem(cid, 27893, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 92 or fish == 93 or fish == 94) then
doPlayerAddItem(cid, 27894, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 95 or fish == 96 or fish == 97) then
doPlayerAddItem(cid, 27895, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)

elseif (fish == 98 or fish == 99 or fish == 100) then
doPlayerAddItem(cid, 27896, 1)
doPlayerRemoveItem(cid, 3976, 1)
doSendMagicEffect(toPosition, 79)



else

end
end
end
doSendMagicEffect(toPosition, 79)
return TRUE
end
return FALSE
end
-- Script 100% by Mukah --
I highly doubt that mountId's go that high.

check your data/xml/mounts.xml file for the correct id's.
 
I highly doubt that mountId's go that high.

check your data/xml/mounts.xml file for the correct id's.
XML:
<?xml version="1.0" encoding="UTF-8"?>
<mounts>
    <mount id="1" clientid="368" name="Widow Queen" speed="20" premium="yes" />                    feed
    <mount id="2" clientid="369" name="Racing Bird" speed="20" premium="yes" />                    feed
    <mount id="3" clientid="370" name="War Bear" speed="20" premium="yes" />                    feed
    <mount id="4" clientid="371" name="Black Sheep" speed="20" premium="yes" />                    feed
    <mount id="5" clientid="372" name="Midnight Panther" speed="20" premium="yes" />            feed
    <mount id="6" clientid="373" name="Draptor" speed="20" premium="yes" />                        feed
    <mount id="7" clientid="374" name="Titanica" speed="20" premium="yes" />                    feed
    <mount id="8" clientid="375" name="Tin Lizzard" speed="20" premium="yes" />                    craft
    <mount id="9" clientid="376" name="Blazebringer" speed="20" premium="yes" />                armored npc
    <mount id="10" clientid="377" name="Rapid Boar" speed="20" premium="yes" />                    feed
    <mount id="11" clientid="378" name="Stampor" speed="20" premium="yes" />                    feed
    <mount id="12" clientid="379" name="Undead Cavebear" speed="20" premium="yes" />            ritual (craft)
    <mount id="13" clientid="387" name="Donkey" speed="20" premium="yes" />                        feed
    <mount id="14" clientid="388" name="Tiger Slug" speed="20" premium="yes" />                    feed
    <mount id="15" clientid="389" name="Uniwheel" speed="20" premium="yes" />                    craft
    <mount id="16" clientid="390" name="Crystal Wolf" speed="20" premium="yes" />             
    <mount id="17" clientid="392" name="War Horse" speed="20" premium="yes" />
    <mount id="18" clientid="401" name="Kingly Deer" speed="20" premium="yes" />
    <mount id="19" clientid="402" name="Tamed Panda" speed="20" premium="yes" />
    <mount id="20" clientid="405" name="Dromedary" speed="20" premium="yes" />
    <mount id="21" clientid="406" name="Scorpion King" speed="20" premium="yes" />
    <mount id="22" clientid="421" name="Rented Horse" speed="20" premium="no" />
    <mount id="23" clientid="426" name="Armoured War Horse" speed="20" premium="yes" />
    <mount id="24" clientid="427" name="Shadow Draptor" speed="20" premium="yes" />
    <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="Lady Bug" speed="20" premium="yes" />
    <mount id="28" clientid="450" name="Manta Ray" speed="20" premium="yes" />
    <mount id="29" clientid="502" name="Ironblight" 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="yes" />
    <mount id="32" clientid="515" name="Gnarlhound" speed="20" premium="yes" />
    <mount id="33" clientid="521" name="Crimson Ray" speed="20" premium="yes" />
    <mount id="34" clientid="522" name="Steelbeak" speed="20" premium="yes" />
    <mount id="35" clientid="526" name="Water Buffalo" speed="20" premium="yes" />
    <mount id="36" clientid="546" name="Tombstinger" speed="20" premium="yes" />
    <mount id="37" clientid="547" name="Platesaurian" speed="20" premium="yes" />
    <mount id="38" clientid="548" name="Ursagrodon" speed="20" premium="yes" />
    <mount id="39" clientid="559" name="The Hellgrip" speed="20" premium="yes" />
    <mount id="40" clientid="571" name="Noble Lion" speed="20" premium="yes" />
    <mount id="41" clientid="572" name="Desert King" speed="20" premium="yes" />
    <mount id="42" clientid="580" name="Shock Head" speed="20" premium="yes" />
    <mount id="43" clientid="606" name="Walker" speed="20" premium="yes" />
    <mount id="44" clientid="621" name="Azudocus" speed="20" premium="yes" />
    <mount id="45" clientid="622" name="Carpacosaurus" speed="20" premium="yes" />
    <mount id="46" clientid="624" name="Death Crawler" speed="20" premium="yes" />
    <mount id="47" clientid="626" name="Flamesteed" speed="20" premium="yes" />
    <mount id="48" clientid="627" name="Jade Lion" speed="20" premium="yes" />
    <mount id="49" clientid="628" name="Jade Pincer" speed="20" premium="yes" />
    <mount id="50" clientid="629" name="Nethersteed" speed="20" premium="yes" />
    <mount id="51" clientid="630" name="Tempest" speed="20" premium="yes" />
    <mount id="52" clientid="631" name="Winter King" speed="20" premium="yes" />
    <mount id="53" clientid="644" name="Doombringer" speed="20" premium="yes" />
    <mount id="54" clientid="647" name="Woodland Prince" speed="20" premium="yes" />
    <mount id="55" clientid="648" name="Hailstorm Fury" speed="20" premium="yes" />
    <mount id="56" clientid="649" name="Siegebreaker" speed="20" premium="yes" />
    <mount id="57" clientid="650" name="Poisonbane" speed="20" premium="yes" />
    <mount id="58" clientid="651" name="Blackpelt" speed="20" premium="yes" />
    <mount id="59" clientid="669" name="Golden Dragonfly" speed="20" premium="yes" />
    <mount id="60" clientid="670" name="Steel Bee" speed="20" premium="yes" />
    <mount id="61" clientid="671" name="Copper Fly" speed="20" premium="yes" />
    <mount id="62" clientid="672" name="Tundra Rambler" speed="20" premium="yes" />
    <mount id="63" clientid="673" name="Highland Yak" speed="20" premium="yes" />
    <mount id="64" clientid="674" name="Glacier Vagabond" speed="20" premium="yes" />
    <mount id="65" clientid="688" name="Flying Divan" speed="20" premium="yes" />
    <mount id="66" clientid="689" name="Magic Carpet" speed="20" premium="yes" />
    <mount id="67" clientid="690" name="Floating Kashmir" speed="20" premium="yes" />
    <mount id="68" clientid="691" name="Ringtail Waccoon" speed="20" premium="yes" />
    <mount id="69" clientid="692" name="Night Waccoon" speed="20" premium="yes" />
    <mount id="70" clientid="693" name="Emerald Waccoon" speed="20" premium="yes" />
    <mount id="71" clientid="682" name="Glooth Glider" speed="20" premium="yes" />
    <mount id="72" clientid="685" name="Shadow Hart" speed="20" premium="yes" />
    <mount id="73" clientid="686" name="Black Stag" speed="20" premium="yes" />
    <mount id="74" clientid="687" name="Emperor Deer" speed="20" premium="yes" />
    <mount id="75" clientid="726" name="Flitterkatzen" speed="20" premium="yes" />
    <mount id="76" clientid="727" name="Venompaw" speed="20" premium="yes" />
    <mount id="77" clientid="728" name="Batcat" speed="20" premium="yes" />
    <mount id="78" clientid="734" name="Sea Devil" speed="20" premium="yes" />
    <mount id="79" clientid="735" name="Coralripper" speed="20" premium="yes" />
    <mount id="80" clientid="736" name="Plumfish" speed="20" premium="yes" />
    <mount id="81" clientid="738" name="Gorongra" speed="20" premium="yes" />
    <mount id="82" clientid="739" name="Noctungra" speed="20" premium="yes" />
    <mount id="83" clientid="740" name="Silverneck" speed="20" premium="yes" />
    <mount id="84" clientid="761" name="Slagsnare" speed="20" premium="yes" />
    <mount id="85" clientid="762" name="Nightstinger" speed="20" premium="yes" />
    <mount id="86" clientid="763" name="Razorcreep" speed="20" premium="yes" />
    <mount id="87" clientid="848" name="Rift Runner" speed="20" premium="yes" />
    <mount id="88" clientid="849" name="Nightdweller" speed="20" premium="yes" />
    <mount id="89" clientid="850" name="Frostflare" speed="20" premium="yes" />
    <mount id="90" clientid="851" name="Cinderhoof" speed="20" premium="yes" />
    <mount id="91" clientid="864" name="Mouldpincer" speed="20" premium="yes" />
    <mount id="92" clientid="865" name="Bloodcurl" speed="20" premium="yes" />
    <mount id="93" clientid="866" name="Leafscuttler" speed="20" premium="yes" />
    <mount id="94" clientid="876" name="Sparkion" speed="20" premium="yes" />
    <mount id="95" clientid="879" name="Swamp Snapper" speed="20" premium="yes" />
    <mount id="96" clientid="880" name="Mould Shell" speed="20" premium="yes" />
    <mount id="97" clientid="881" name="Reed Lurker" speed="20" premium="yes" />
    <mount id="98" clientid="882" name="Neon Sparkid" speed="20" premium="yes" />
    <mount id="99" clientid="883" name="Vortexion" speed="20" premium="yes" />
    <mount id="100" clientid="886" name="Ivory Fang" speed="20" premium="yes" />
    <mount id="101" clientid="887" name="Shadow Claw" speed="20" premium="yes" />
    <mount id="102" clientid="888" name="Snow Pelt" speed="20" premium="yes" />
    <mount id="103" clientid="889" name="Jackalope" speed="20" premium="yes" />
    <mount id="104" clientid="891" name="Dreadhare" speed="20" premium="yes" />
    <mount id="105" clientid="890" name="Wolpertinger" speed="20" premium="yes" />
    <mount id="106" clientid="905" name="Stone Rhino" speed="20" premium="yes" />
    <mount id="107" clientid="913" name="Gold Sphinx" speed="20" premium="yes" />
    <mount id="108" clientid="914" name="Emerald Sphinx" speed="20" premium="yes" />
    <mount id="109" clientid="915" name="Shadow Sphinx" speed="20" premium="yes" />
    <mount id="110" clientid="920" name="Jungle Saurian" speed="20" premium="yes" />
    <mount id="111" clientid="921" name="Ember Saurian" speed="20" premium="yes" />
    <mount id="112" clientid="922" name="Lagoon Saurian" speed="20" premium="yes" />
    <mount id="113" clientid="941" name="Blazing Unicorn" speed="20" premium="yes" />
    <mount id="114" clientid="942" name="Arctic Unicorn" speed="20" premium="yes" />
    <mount id="115" clientid="943" name="Prismatic unicorn" speed="20" premium="yes" />
    <mount id="116" clientid="948" name="Cranium Spider" speed="20" premium="yes" />
    <mount id="117" clientid="949" name="Cave Tarantula" speed="20" premium="yes" />
    <mount id="118" clientid="950" name="Gloom Widow" speed="20" premium="yes" />
    <mount id="119" clientid="971" name="Mole" speed="20" premium="yes" />
    <mount id="120" clientid="974" name="Marsh Toad" speed="20" premium="yes" />
    <mount id="121" clientid="975" name="Sanguine Frog" speed="20" premium="yes" />
    <mount id="122" clientid="976" name="Toxic Toad" speed="20" premium="yes" />
    <mount id="123" clientid="998" name="Ebony Tiger" speed="20" premium="yes" />
    <mount id="124" clientid="999" name="Feral Tiger" speed="20" premium="yes" />
    <mount id="125" clientid="1000" name="Jungle Tiger" speed="20" premium="yes" />
    <mount id="126" clientid="1003" name="Fleeting Knowledge" speed="20" premium="yes" />
    <mount id="127" clientid="1006" name="Tawny Owl" speed="20" premium="yes" />
    <mount id="128" clientid="1007" name="Snowy Owl" speed="20" premium="yes" />
    <mount id="129" clientid="1008" name="Boreal Owl" speed="20" premium="yes" />
    <mount id="130" clientid="1026" name="Lacewing Moth" speed="20" premium="yes" />
    <mount id="131" clientid="1027" name="Hibernal Moth" speed="20" premium="yes" />
    <mount id="132" clientid="1032" name="Cold Percht Sleigh" speed="20" premium="yes" />
    <mount id="133" clientid="1033" name="Bright Percht Sleigh" speed="20" premium="yes" />
    <mount id="134" clientid="1034" name="Dark Percht Sleigh" speed="20" premium="yes" />
    <mount id="135" clientid="1036" name="Festive Snowman" speed="20" premium="yes" />
    <mount id="136" clientid="1037" name="Muffled Snowman" speed="20" premium="yes" />
    <mount id="137" clientid="1038" name="Caped Snowman" speed="20" premium="yes" />
    <mount id="138" clientid="1041" name="Rabbit Rickshaw" speed="20" premium="yes" />
    <mount id="139" clientid="1042" name="Bunny Dray" speed="20" premium="yes" />
    <mount id="140" clientid="1043" name="Cony Cart" speed="20" premium="yes" />
    <mount id="141" clientid="1044" name="River Crocovile" speed="20" premium="yes" />
    <mount id="142" clientid="1045" name="Swamp Crocovile" speed="20" premium="yes" />
    <mount id="143" clientid="1046" name="Nightmarish Crocovile" speed="20" premium="yes" />
     <mount id="144" clientid="1055" name="Jousting Eagle" speed="20" premium="yes" />
    <mount id="145" clientid="1056" name="Cerberus Champion" speed="20" premium="yes" />
    <!--fim-->
    <mount id="152" clientid="1095" name="Batle Badger" speed="20" premium="yes" />
    <mount id="153" clientid="1096" name="Ether Badger" speed="20" premium="yes" />
    <mount id="154" clientid="1097" name="Zaoan Badger" speed="20" premium="yes" />

    <mount id="158" clientid="1106" name="Floating Sage" speed="20" premium="yes" />
    <mount id="159" clientid="1107" name="Floating Scholar" speed="20" premium="yes" />
    <mount id="160" clientid="1108" name="Floating Augur" speed="20" premium="yes" />
    <mount id="161" clientid="1110" name="Haze" speed="20" premium="yes" />
    <mount id="162" clientid="1120" name="Antelope" speed="20" premium="yes" />
  
    <mount id="163" clientid="1169" name="Snow Strider" speed="20" premium="yes" />
    <mount id="164" clientid="1170" name="Dusk Pryer" speed="20" premium="yes" />
    <mount id="165" clientid="1171" name="Dawn Strayer" speed="20" premium="yes" />
    <mount id="166" clientid="1192" name="Savanna Ostrich" speed="20" premium="yes" />
    <mount id="167" clientid="1193" name="Coral Rhea" speed="20" premium="yes" />
    <mount id="168" clientid="1194" name="Eventide Nandu" speed="20" premium="yes" />
    <mount id="169" clientid="1201" name="Phantasmal Jade" speed="20" premium="yes" />
    <mount id="170" clientid="1209" name="Voracious Hyaena" speed="20" premium="yes" />
    <mount id="171" clientid="1210" name="Cunning Hyaena" speed="20" premium="yes" />
    <mount id="172" clientid="1211" name="Scruffy Hyaena" speed="20" premium="yes" />
    <mount id="173" clientid="1212" name="White Lion" speed="20" premium="yes" />
    <mount id="174" clientid="1218" name="Krakoloss" speed="20" premium="yes" />
    <mount id="175" clientid="1228" name="Merry Mammoth" speed="20" premium="yes" />
    <mount id="176" clientid="1229" name="Holiday Mammoth" speed="20" premium="yes" />
    <mount id="177" clientid="1230" name="Festive Mammoth" speed="20" premium="yes" />
    <mount id="155" clientid="1103" name="Blue Rolling Barrel" speed="20" premium="yes" />
    <mount id="156" clientid="1104" name="Red Rolling Barrel" speed="20" premium="yes" />
    <mount id="157" clientid="1105" name="Green Rolling Barrel" speed="20" premium="yes" />
  
    <!-- não está funcionando daqui pra baixo -->
    <mount id="178" clientid="41" name="Void Watcher" speed="20" premium="yes" />
    <mount id="179" clientid="52" name="Rune Watcher" speed="20" premium="yes" />
    <mount id="180" clientid="53" name="Rift Watcher" speed="20" premium="yes" />
    <mount id="181" clientid="164" name="Shellodon" speed="20" premium="yes" />
    <mount id="182" clientid="165" name="Singeing Steed" speed="20" premium="yes" />
    <mount id="183" clientid="168" name="Hyacinth" speed="20" premium="yes" />
    <mount id="184" clientid="169" name="Peony" speed="20" premium="yes" />
    <mount id="185" clientid="170" name="Dandelion" speed="20" premium="yes" />
    <mount id="186" clientid="173" name="Rustwurm" speed="20" premium="yes" />
    <mount id="187" clientid="174" name="Bogwurm" speed="20" premium="yes" />
    <mount id="188" clientid="175" name="Gloomwurm" speed="20" premium="yes" />
    <mount id="189" clientid="180" name="Emerald Raven" speed="20" premium="yes" />
    <mount id="190" clientid="181" name="Mystic Raven" speed="20" premium="yes" />
    <mount id="191" clientid="182" name="Radiant Raven" speed="20" premium="yes" />
    <mount id="192" clientid="183" name="Gloothomotive" speed="20" premium="yes" />
</mounts>

My bad, I was putting client id, so sorry.

I fixed the id number and it work perfectly
 

Similar threads

Back
Top