Need help with Spell

0rcL0rd

New Member
Reaction score
1
EDIT: SOLVED


i want to make a spell for a TD.
like you have with Hero Line Wars there is a tower with spells.
im trying to make a stun spell, wich stuns all units in a area.
al already got this:

Code:
Stun Player 1
	[COLOR="Red"]Events[/COLOR]
	 Unit-A unit Begins casting an ability
	[COLOR="Lime"]Conditions[/COLOR]
	 (Ability being cast) Equal to Stun
	 (Unit-type of(Casting unit)) Equal to Scout Tower
	 (Owner of (Casting unit) Equal to Player 1 (Red)
	[COLOR="Blue"]Actions[/COLOR]
	 Unit Group - Pick every unit in (Units in RedArea <gen>) and do (Actions)
	   Loop-Actions
	     Special Effects - Create a special effect at (Position of (Picked unit)) using Abilities\Spells\Human\ThunderClap\ThunderClapCaster.mdl

i do this for every player
i hope someone can help me
tnx
 

Dinowc

don't expect anything, prepare for everything
Reaction score
223
uhm that will only create special effects on each unit...

create a dummy in the center of the region and order him to cast war stomp (set the AOE of the war stomp to the size of the region and add a special effect on dummy's position)
 

Gtam

Lerning how to write and read!! Yeah.
Reaction score
164
Change Events to unit start the efect of an ability and all casting unit to trigering unit
 

0rcL0rd

New Member
Reaction score
1
ok i changed the casting units to triggering units and starts the effect of an ability.
and offcourse spell is based on Warstomp.
how come it doesnt work.

btw..i do need the units to stun for a few seconds:p
 

Ayanami

칼리
Reaction score
288
Trigger:
  • Stun Player 1
    • Events
      • Unit - Starts the effect on an ability
    • Conditions
      • And
        • (Ability being cast) Equal to Stun
        • (Unit-type of(Triggering)) Equal to Scout Tower
        • (Owner of (Triggering) Equal to Player 1 (Red)
    • Actions
      • Unit Group - Pick every unit in (Units in RedArea &lt;gen&gt;) and do (Actions)
        • Loop-Actions
          • Set TempPoint = (Position of (Picked unit))
            • Special Effects - Create a special effect at TempPoint using Abilities\Spells\Human\ThunderClap\ThunderClapCaster.mdl
            • Custom Script: call RemoveLocation(udg_TempPoint)


Of course this is hand written. Try add the "And" conidtion? By the way, what doesn't work? The stun?

Your "Position of picked unit" leaks. Therefore use a variable and then remove it.
 

Ayanami

칼리
Reaction score
288
doesnt work:S
the effect works only the units dont stun:S

Wait hold on. Can you tell us what that doesn't work? God I asked 3 times. What is it that doesn't work? Does the effect screw up? Does the stun not work?
 

the_ideal

user title
Reaction score
61
Or just create a dummy and cast a 0 damage War Stomp.

Or pick every unit and cast a 0 damage instant Storm Bolt.
 

0rcL0rd

New Member
Reaction score
1
im sorry...i mean the stun doesnt work...the keep walking..you see the effect but no stunning
 

Gtam

Lerning how to write and read!! Yeah.
Reaction score
164
Pick every unit in <ur region> and do multiple actions. Create dumy at position of picked unit. Add storm bolt to last created unit. Order last created unit to mountain king storm bolt picked unit
 

0rcL0rd

New Member
Reaction score
1
this is what i got so far:

Trigger:
  • Stun Player 1
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • And - All (Conditions)are true
        • (Ability being cast) Equal to Stun
        • (Unit-type of (Triggering unit)) Equal to Scout Tower
        • (Owner of (Triggering unit)) Equal to Player 1 (Red)
    • Actions
      • Unit Group - Pick every unit in (Units in RedArea &lt;gen&gt;) and do (Actions)
        • Loop - Actions
          • Set TempPoint = (Position of (Picked unit))
          • Unit - Pause (Picked unit)
          • Special Effect - Create a special effect at TempPoint using Abilities\Spells\Human\ThunderClap\ThunderClapCaster.mdl
          • Custom script: call RemoveLocation(udg_TempPoint)
          • Wait 3.00 seconds
          • Unit - Unpause (Picked unit)
 

polo2005

Wana start playing LoL? http://tinyurl.com/369as27
Reaction score
97
this is what i got so far:

Trigger:
  • Stun Player 1
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • And - All (Conditions)are true
        • (Ability being cast) Equal to Stun
        • (Unit-type of (Triggering unit)) Equal to Scout Tower
        • (Owner of (Triggering unit)) Equal to Player 1 (Red)
    • Actions
      • Unit Group - Pick every unit in (Units in RedArea &lt;gen&gt;) and do (Actions)
        • Loop - Actions
          • Set TempPoint = (Position of (Picked unit))
          • Unit - Pause (Picked unit)
          • Special Effect - Create a special effect at TempPoint using Abilities\Spells\Human\ThunderClap\ThunderClapCaster.mdl
          • Custom script: call RemoveLocation(udg_TempPoint)
          • Wait 3.00 seconds
          • Unit - Unpause (Picked unit)

remove the wait inside the loop and loop it again after 3 seconds to unpasue picked unit

Trigger:
  • Stun Player 1
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • And - All (Conditions)are true
        • (Ability being cast) Equal to Stun
        • (Unit-type of (Triggering unit)) Equal to Scout Tower
        • (Owner of (Triggering unit)) Equal to Player 1 (Red)
    • Actions
      • Custom script: set bj_wantDestroyGroup=true
      • Unit Group - Pick every unit in (Units in RedArea &lt;gen&gt;) and do (Actions)
        • Loop - Actions
          • Set TempPoint = (Position of (Picked unit))
          • Unit - Pause (Picked unit)
          • Special Effect - Create a special effect at TempPoint using Abilities\Spells\Human\ThunderClap\ThunderClapCaster.mdl
          • Custom script: call RemoveLocation(udg_TempPoint)
      • Wait 3.00 seconds
      • Custom script: set bj_wantDestroyGroup=true
      • Unit Group - Pick every unit in (Units in RedArea &lt;gen&gt;) and do (Actions)
        • Loop - Actions
          • Unit - Unpause (Picked unit)


btw your pick units leaks add the custom script befor there i have made them in the edited trigger code
 

polo2005

Wana start playing LoL? http://tinyurl.com/369as27
Reaction score
97
YEEEESS thank you very much:D:D it works
RESPECT

i got one question, how does the custom script work?

its a way in gui to use jass coding.
+rep would be appreciated :p since i missing one for 100 :)
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • WildTurkey WildTurkey:
    is there a stephen green in the house?
    +1
  • The Helper The Helper:
    What is up WildTurkey?
  • The Helper The Helper:
    Looks like Google fixed whatever mistake that made the recipes on the site go crazy and we are no longer trending towards a recipe site lol - I don't care though because it motivated me to spend alot of time on the site improving it and at least now the content people are looking at is not stupid and embarrassing like it was when I first got back into this like 5 years ago.
  • The Helper The Helper:
    Plus - I have a pretty bad ass recipe collection now! That section of the site is 10 thousand times better than it was before
  • The Helper The Helper:
    We now have a web designer at my job. A legit talented professional! I am going to get him to redesign the site theme. It is time.
  • Varine Varine:
    I got one more day of community service and then I'm free from this nonsense! I polished a cop car today for a funeral or something I guess
  • Varine Varine:
    They also were digging threw old shit at the sheriff's office and I tried to get them to give me the old electronic stuff, but they said no. They can't give it to people because they might use it to impersonate a cop or break into their network or some shit? idk but it was a shame to see them take a whole bunch of radios and shit to get shredded and landfilled
  • The Helper The Helper:
    whatever at least you are free
  • Monovertex Monovertex:
    How are you all? :D
    +1
  • Ghan Ghan:
    Howdy
  • Ghan Ghan:
    Still lurking
    +3
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?

      The Helper Discord

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top