SphereCommunity
i_mt_horse_gray remove in worldsaves - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: i_mt_horse_gray remove in worldsaves (/Thread-i-mt-horse-gray-remove-in-worldsaves)



i_mt_horse_gray remove in worldsaves - Criminal - 09-14-2015 06:14 AM

Is there any way to fix the horses from (i_mt_horse_gray) remove in saves?


RE: i_mt_horse_gray remove in worldsaves - Shamino - 09-14-2015 06:58 AM

http://tracker.sphere.torfo.org/bugs/view.php?id=2542


RE: i_mt_horse_gray remove in worldsaves - pointhz - 09-14-2015 07:15 AM

Maybe you could try to "override" the memory item.

Add this trigger under your main players event. Then just add a c_llama, mount it, and save. Never happened to me, so I'm just guessing. Can't be much more since it works fine with taming.

ON=@MOUNT

IF (<ARGO.ID>==c_llama)

IF (<ARGO.FINDID.I_MEMORY.UID>)
WHILE (<ARGO.FINDID.I_MEMORY.UID>)
ARGO.FINDID.i_memory.remove
ENDWHILE
ENDIF

SERV.NEWITEM = i_memory
NEW.NAME = <SRC.NAME>
NEW.COLOR = memory_ipet
NEW.TIMER = -1
NEW.AMOUNT = 1
NEW.TYPE = t_eq_memory_obj
NEW.MORE2 = <SERV.TIME>
NEW.ATTR = 04
NEW.MOREP = <SRC.P>
NEW.LINK = <SRC.UID>
ARGO.EQUIP <NEW.UID>

SRC.SYSMESSAGE Success.

ENDIF


RE: i_mt_horse_gray remove in worldsaves - Criminal - 09-14-2015 11:27 PM

it is not same bug ,it is only when I add horses with its itemdef, like i_mt_llama, i_mt_horse_gray..

I can't get working @mount..


RE: i_mt_horse_gray remove in worldsaves - pointhz - 09-15-2015 12:13 AM

Try @dclick maybe. Anyway, I dont think I haver used those IDs i_mt


RE: i_mt_horse_gray remove in worldsaves - XuN - 09-15-2015 06:19 PM

When forcing mount you must set MORE2 to the mount's UID, in this case there's no mount so you can workaround it by using the rider's UID.


RE: i_mt_horse_gray remove in worldsaves - Criminal - 09-15-2015 10:54 PM

Thanks for your replys.

I use it for ethereals rides, I fix it setting more2 to uid of who ride it, then it dont disspear


RE: i_mt_horse_gray remove in worldsaves - Criminal - 09-16-2015 11:22 PM

After use the fix, you cant use any skill or spell ,anyone know the prob with it?