![]() |
Newbie mount's - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: Script Help (/Forum-Script-Help) +--- Thread: Newbie mount's (/Thread-Newbie-mount-s) |
Newbie mount's - an0n!m0use - 12-23-2019 08:06 AM Hi everyone ![]() I really need your help ![]() I have use this script for the newbie mounts: PHP Code: [FUNCTION bodyhex] This one is example of mount: PHP Code: [ITEMDEF i_newbie_mustang] And i have issue in the game when i save the world ![]() How to fix that ? PHP Code: ERROR:GC: 4 unplaced object deleted RE: Newbie mount's - Coruja - 12-23-2019 09:49 AM After create an item/char it must be always placed somewhere The "SERV.NEWITEM i_memory" is getting equipped on char using "NEW.CONT=<REF1>", but "SERV.NEWNPC <LOCAL.id>" is not getting placed anywhere, so you must place it on world using something like "NEW.P=<SRC.P>" RE: Newbie mount's - an0n!m0use - 12-24-2019 03:49 AM (12-23-2019 09:49 AM)Coruja Wrote: After create an item/char it must be always placed somewhereCheers, bud ![]() |