SphereCommunity
Mounted Summoned Horse - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: Script Help (/Forum-Script-Help)
+--- Thread: Mounted Summoned Horse (/Thread-Mounted-Summoned-Horse)



Mounted Summoned Horse - Lazarus - 11-14-2012 04:36 AM

It's there a way to unsummon horses when you are ON them?

Because when you cast a horse and you ride it, and you get LOGOUT, when you log in again in some time, the horse get's off and you are riding NOTHING and running at speedmode 1...

Any way? Shock


RE: Mounted Summoned Horse - Mordaunt - 11-14-2012 07:52 AM

That is weird I might suggest something like:

Code:
ON=@LOGIN
  timerf 3, f_speedcheck

[FUNCTION f_speedcheck]
if (<plevel> < 4)
    if (<speedmode> >0)
        if (<flags>&statf_onhorse)
            return 0
           else
                speedmode = 0
        endif
    endif
endif