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

TalkAction Mounts

hmmmm.... can you post you config. want to see it and were you get you tfs version from, the donaters place?



im not the best help but im trying :/
 
Last edited:
Or make more simple for free mounts in Login

Lua:
function onLogin(cid)
for q = 1, 12 do
if getPlayerStorageValue(cid,24980) == -1 then
   doPlayerAddMount(cid,q)
   setPlayerStorageValue(cid,24980)
return TRUE
end

@up in the Public Subversion is available Mystic Spirit 0.2.9 8.7 and these Disto have Mounts and Cooldowns
 
cant add mount in 8.6 ?
in theory you could, with some pretty major source edits, but the client won't support it because it's a part of the outfit window to select a mount, and part of the general interface to mount/unmount so you'd have to use a script to mount and unmount and the client probably won't handle the fact that you're mounted because it isn't designed to, so it'd have to have a custom sprite of each individual outfit, walk animation and direction on each mount plus no addon, first addon, second addon and both addon each individually. the client treats the mount and the outfit as separate objects, whereas you would have to treat them as one. the client appears to handle a lot of the work, so no amount of scripts or source edits will make it work properly.
 
Back
Top