on=@death can't get tiggers - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: Script Help (/Forum-Script-Help) +--- Thread: on=@death can't get tiggers (/Thread-on-death-can-t-get-tiggers) |
on=@death can't get tiggers - godofwar - 04-07-2014 11:31 PM The game inside on=@death. I am doing some query for Who die or kill from tigger , but that queny dont work. Code: Ref1=<act.uid> // Killer 1-) When A player cut B player , A player putting a magic to B player with poisoning magic. Who killed it with poisoning magic then All my queny getting loose. So How can I Block that? 2-) When A player and B player has a VS then B player has hits between 5-10 then B player Could die with Reactive Armor Magic. So How can I Block that? RE: on=@death can't get tiggers - UltimaAku - 04-13-2014 09:35 PM wait wait wait, what are you trying to do. On=@death triggers when the character with the event has their hits reach 0. are you trying to prevent death or have something happen when you die? RE: on=@death can't get tiggers - Mordaunt - 04-14-2014 02:29 AM The wonderful thing about tiggers Is tiggers are wonderful things! Their tops are made out of rubber Their bottoms are made out of springs! They're bouncy, trouncy, flouncy, pouncy Fun, fun, fun, fun, fun! In other news... use @kill instead RE: on=@death can't get tiggers - godofwar - 04-16-2014 04:09 AM (04-13-2014 09:35 PM)UltimaAku Wrote: wait wait wait, what are you trying to do. On=@death triggers when the character with the event has their hits reach 0. are you trying to prevent death or have something happen when you die? İm gonna do something about death and killer on=@death RE: on=@death can't get tiggers - UltimaAku - 04-24-2014 07:12 PM there's a problem there. ON=@death only applies an event to the person who dies, not the killer. here's a way around it. If it's a death announcer your after, here's an easy example: [EVENTS e_death_announce] ON=@GETHIT TAG.ATTACKER=<SRC.NAME> //this records the name of the attacker ON=@DEATH serv.allclients SYSMESSAGE @26 <SRC.NAME> Was killed by <TAG.ATTACKER> //Announces that the player was killed by the attacker or if it's when something kills another creature, you can try ON=@KILL [EVENTS e_soul_reap] ON=@KILL SRC.HITS=<SRC.MAXHITS> SRC.EMOTE drain <ARGO.NAME>'s Soul If none of this helps, i'm gonna need to know specifically what you want to do, otherwise I can't help you. RE: on=@death can't get tiggers - Mordaunt - 04-24-2014 07:53 PM Curious why you felt the need to edit your posts to bold all your text... RE: on=@death can't get tiggers - UltimaAku - 04-24-2014 09:11 PM (04-24-2014 07:53 PM)Mordaunt Wrote: Curious why you felt the need to edit your posts to bold all your text... lol, now now, no need to criticize 'tis a tad strange but personally they can have it in italics for all I care, if the raw info is there and presented It shouldn't make a difference RE: on=@death can't get tiggers - Avatar - 04-25-2014 12:05 PM Death trigger does apply event to killer as well. You can directly refer as <act>. The problem is caused by not the killer but spell like poison. There is weird situation. Even if you know that killer casted that spell ,<act> does not refer to player but poison itself. I know there is a problem on that issue. I did realize it months ago. If I have time, I'll look that issue. I took a note. RE: on=@death can't get tiggers - UltimaAku - 04-26-2014 01:26 AM Noted. thanks Avatar |