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

TFS 1.X+ exp using mount

Solution
E
something like this on the Player:eek:nGainExperience function

Lua:
    if player:getOutfit().lookMount == 36 then
        exp = exp * 1.5 -- 50% bonus exp
    end
something like this on the Player:eek:nGainExperience function

Lua:
    if player:getOutfit().lookMount == 36 then
        exp = exp * 1.5 -- 50% bonus exp
    end
I don't fully enjoy this answer, because the player only has to equip the mount to get the experience boost.

There is no way to check if the player is currently 'mounted' though.. so it's the best answer currently.
 
It is not necessary, when you use mount always lookMount has ben updated
as far as I understand there is no way that lookMount has a value other than 0 and is not mounted on an xd mount
 
Back
Top