SphereCommunity
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 Tongue

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]
DEFNAME=s_blackhole
NAME=Black Hole
SOUND=snd_SPELL_CLUMSY
RUNES=
CAST_TIME=2.0
RESOURCES=
RUNE_ITEM=i_rune_CLUMSY
//SCROLL_ITEM=i_scroll_CLUMSY
FLAGS=SPELLFLAG_SCRIPTED | SPELLFLAG_TARG_OBJ | spellflag_area
//EFFECT_ID=i_fx_curse
EFFECT=3,15
//DURATION=2*60.0,3*60.0
MANAUSE=4
SKILLREQ=MAGERY 10.0
INTERRUPT=100.0,100.0

on=@select
return 6

on=@start
src.say Black Hole
endif

on=@success
forchars 4
p <src.targp>
update

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
local
.areaRadius//for spell area effect the default radius value is 4

on=@Effect  //with SPELLFLAG_TARG_OBJ also item will be affected by the spell.
= <src.p>
update 



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

PHP Code:
on=@success
local
.areaRadius//for spell area effect the default radius value is 4

on=@Effect  //with SPELLFLAG_TARG_OBJ also item will be affected by the spell.
= <src.p>
update 

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 !