Memories/Timers/Dialog Checkboxes/ What am I doing wrong? - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: Script Help (/Forum-Script-Help) +--- Thread: Memories/Timers/Dialog Checkboxes/ What am I doing wrong? (/Thread-Memories-Timers-Dialog-Checkboxes-What-am-I-doing-wrong) |
Memories/Timers/Dialog Checkboxes/ What am I doing wrong? - Reflex - 04-26-2012 06:03 PM //Trying to create a stuck menu option via dialog and checkbox and button and have it send u to certain locations depending if your blue or red. Having problems having my stuck memory tell the characters where to go. //Please anyone who responds please explain yourself so I can learn. //Errors cant resolve <src.kills> //Errors undefinded symbol'' //errors undefined keyboard go Code: [PLEVEL 1] RE: Memories/Timers/Dialog Checkboxes/ What am I doing wrong? - darksun84 - 04-26-2012 08:49 PM As written in the wiki , There is no SRC in an @Timer event. , instead you have to use link. So you put link = <src> in the @equip trigger ,and in the @timer trigger, you put link.kills etc . Like this Code: ON=@Equip RE: Memories/Timers/Dialog Checkboxes/ What am I doing wrong? - RanXerox - 04-26-2012 10:33 PM You can also use "CONT" in @Timer or perhaps "TOPOBJ" as long as the memory item is equipped on the character. RE: Memories/Timers/Dialog Checkboxes/ What am I doing wrong? - Khaos - 04-29-2012 01:33 PM Cont and TopObj do work as RanXerox says. Don't forget you can ref<value> something RE: Memories/Timers/Dialog Checkboxes/ What am I doing wrong? - Reflex - 04-29-2012 02:51 PM I always forget about ref! Learning 51a was the death of me ;p Thanks guys. RE: Memories/Timers/Dialog Checkboxes/ What am I doing wrong? - Khaos - 04-29-2012 03:50 PM You are very welcome Reflex. |