![]() |
Black Hole spell help - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: Script Help (/Forum-Script-Help) +--- Thread: Black Hole spell help (/Thread-Black-Hole-spell-help) |
Black Hole spell help - falsemirage - 01-22-2016 04:13 PM Hello guys So I'm trying to script a black hole spell but I got stuck ![]() how can I check the chars around caster's target ? This is how I want it to work. You select the spell, target comes up and you target ground or char (doesn't matter). Spell checks around the targeted area and brings every char right on top of casters target. is it possible ? Code: [spell 102] this is what I got but this just checks around the caster and if there's anything it brings them to targeted area with the caster. RE: Black Hole spell help - darksun84 - 01-22-2016 07:14 PM try this and use @effect PHP Code: on=@success RE: Black Hole spell help - rastrero - 01-23-2016 05:11 AM I think its better using an item. on=@start serv.newitem=i_black_hole new.timer=1 new.p=targp [itemdef i_black_hole] on=@timer forchars 4 p <src.targp> update RE: Black Hole spell help - falsemirage - 01-23-2016 09:22 AM Thank for the replies! (01-22-2016 07:14 PM)darksun84 Wrote: try this and use @effect Ok this kinda works I had to change p = <src.p> to p = <src.targp> now I have 1 more problem when I cast it it brings caster to that position as well can I prevent that ? RE: Black Hole spell help - azmanomer - 01-23-2016 10:45 AM on=@Effect //with SPELLFLAG_TARG_OBJ also item will be affected by the spell. if !(<uid>==<src>) p = <src.p> endif update RE: Black Hole spell help - falsemirage - 01-23-2016 11:47 AM @azmanomer Thanks! also thanks to everyone ! |