Jump Smash

ImmortaL_GoD

New Member
Reaction score
4
This is just an ability where the unit jumps, freezes in the air for a sec, and then smashes the ground doing AoE damage. I was wondering what would be an efficient way to slow the units' (in a 275 AoE radius) movespeed as well? And I also am having some weird issue where ever I click to target the jump, it jumps in a completely different direction o_O. Ability is based off of channel (with point target). Is there any way I could modify the range at where I can jump as well (wouldn't be cast range on ability)? Ok, I have:
Trigger:
  • Jump
    • Events
      • Unit - A unit Begins casting an ability
    • Conditions
      • (Ability being cast) Equal to Jumping Ground Smash
    • Actions
      • Set Smash = (Casting unit)
      • Set temp_point = (Target point of ability being cast)
      • Unit - Pause Smash
      • Unit - Make Smash face (Target point of ability being cast) over 0.01 seconds
      • Wait 0.01 seconds
      • Unit - Add Crow Form to Smash
      • Unit - Turn collision for Smash Off
      • Animation - Change Smash flying height to 300.00 at 900.00
      • Trigger - Turn on Jump Movement <gen>
      • Wait 0.35 seconds
      • Trigger - Turn off Jump Movement <gen>
      • Animation - Change Smash's animation speed to 10.00% of its original speed
      • Special Effect - Create a special effect attached to the chest of Smash using Abilities\Spells\Demon\DarkPortal\DarkPortalTarget.mdl
      • Special Effect - Destroy (Last created special effect)
      • Unit - Make Smash face (Target point of ability being cast) over 0.01 seconds
      • Wait 0.50 seconds
      • Animation - Change Smash flying height to 0.00 at 1500.00
      • Trigger - Turn on Jump Movement <gen>
      • Wait 0.10 seconds
      • Trigger - Turn off Jump Movement <gen>
      • Special Effect - Create a special effect at (Position of Smash) using Abilities\Spells\Human\ThunderClap\ThunderClapCaster.mdl
      • Special Effect - Destroy (Last created special effect)
      • Animation - Change Smash's animation speed to 100.00% of its original speed
      • Unit - Cause Smash to damage circular area after 0.05 seconds of radius 300.00 at temp_point, dealing 50.00 damage of attack type Spells and damage type Force
      • Wait 0.10 seconds
      • Unit - Remove Crow Form from Smash
      • Unit - Turn collision for Smash On
      • Unit - Unpause Smash
      • Custom script: call RemoveLocation (udg_temp_point)


Trigger:
  • Jump Movement
    • Events
      • Time - Every 0.01 seconds of game time
    • Conditions
    • Actions
      • Unit - Move Smash instantly to ((Position of Smash) offset by 3.00 towards (Facing of Smash) degrees), facing (Facing of Smash) degrees
      • Unit - Make Smash face (Target point of ability being cast) over 0.01 seconds


Thanks.
 

simonake

New Member
Reaction score
72
Nm
I find what was wrong. It the movement trigger. IT's facing of smash. Well , if you click and change to path of the cast it will change all the count. When ability is cast, make a variable of type Real and set it to (facing of smash) then, while in the air, use this variable instead of caster's facing.
 

ImmortaL_GoD

New Member
Reaction score
4
Ty, I'll try that. As for the movement thing, I was wondering how I'd specify the unit I'm slowing though? Like I dunno if "Attacked unit" worked/works. And any idea how I'd change the distance?

EDIT: Nvm, I think I got the slow part:
Code:
Unit - Cause Eowyn to damage circular area after 0.05 seconds of radius 300.00 at temp_point, dealing 50.00 damage of attack type Spells and damage type Force
Set temp_group = (Units within 300.00 of temp_point)
Unit Group - Pick every unit in temp_group and do (Animation - Change (Picked unit)'s animation speed to 75.00% of its original speed)
Wait 3.00 seconds
Animation - Change (Picked unit)'s animation speed to 100.00% of its original speed

EDIT: Didn't work.
 

bOb666777

Stand against the ugly world domination face!
Reaction score
117
Ty, I'll try that. As for the movement thing, I was wondering how I'd specify the unit I'm slowing though? Like I dunno if "Attacked unit" worked/works. And any idea how I'd change the distance?

EDIT: Nvm, I think I got the slow part:
Code:
Unit - Cause Eowyn to damage circular area after 0.05 seconds of radius 300.00 at temp_point, dealing 50.00 damage of attack type Spells and damage type Force
Set temp_group = (Units within 300.00 of temp_point)
Unit Group - Pick every unit in temp_group and do (Animation - Change (Picked unit)'s animation speed to 75.00% of its original speed)
Wait 3.00 seconds
Animation - Change (Picked unit)'s animation speed to 100.00% of its original speed

EDIT: Didn't work.

You could just spawn a dummy that casts thunder strike so it slows units
but if you really want a trigger:

Trigger:
  • Actions
    • Set temp_group = (Units within 300.00 of temp_point)
    • Unit Group - Pick every unit in temp_group and do
      • Unit - Set (Picked) movement speed to (Default movement speed of (Picked Unit) - 100)
    • Wait 3.00 Seconds
    • Unit Group - Pick every unit in temp_group and do
      • Unit - Set (Picked) movement speed to (Default movement speed of (Picked Unit))
 

ImmortaL_GoD

New Member
Reaction score
4
Hm, so animation isn't the same thing? I thought that's what the previous guy was implying. I had current movespeed / 4, for 25% at first, but dunno, it seemed to fuck up. So, I'll try that again.

Any idea on how to increase the distance the caster jumps?

EDIT: Ok, did this
Code:
Unit Group - Pick every unit in temp_group and do (Unit - Set (Picked unit) movement speed to ((Current movement speed of (Picked unit)) / 4.00))

Didn't work.
 

Jesus4Lyf

Good Idea™
Reaction score
397
Excuse the possible irrelevancy of this, but I just had to show you this...

I wrote this years ago for a spell contest on maps.worldofwar.net, and thought that even though it probably won't help, it'll amuse you a little...

Maybe it'll help. Never know. It's pretty close to what you want, I think.

On a more helpful note

To slow units in an AoE, spawn a dummy caster and have it use thunderclap (or is it warstomp?). Triggering using set movement speed is a BAD idea, because it won't work right with things like windwalk, and end up possibly creating permenant, random, bugged modifications to movement speed.

Edit: Had to remove the map, ran out of space on the forum. Sorry. Glad you got a kick out of it.
 

ImmortaL_GoD

New Member
Reaction score
4
Sigh.. I did this and it still didn't work:
Code:
Actions
    Set Eowyn = (Casting unit)
    Set temp_point = (Target point of ability being cast)
    Set EowynJump = (Facing of Eowyn)
    Unit - Pause Eowyn
    Unit - Make Eowyn face EowynJump over 0.01 seconds
    Wait 0.01 seconds
    Unit - Add Crow Form to Eowyn
    Unit - Turn collision for Eowyn Off
    Animation - Change Eowyn flying height to 300.00 at 900.00
    Trigger - Turn on Jump Movement <gen>
    Wait 0.35 seconds
    Trigger - Turn off Jump Movement <gen>
    Animation - Change Eowyn's animation speed to 10.00% of its original speed
    Special Effect - Create a special effect attached to the chest of Eowyn using Abilities\Spells\Demon\DarkPortal\DarkPortalTarget.mdl
    Special Effect - Destroy (Last created special effect)
    Unit - Make Eowyn face EowynJump over 0.01 seconds
    Wait 0.50 seconds
    Animation - Change Eowyn flying height to 0.00 at 1500.00
    Trigger - Turn on Jump Movement <gen>
    Wait 0.10 seconds
    Trigger - Turn off Jump Movement <gen>
    Special Effect - Create a special effect at (Position of Eowyn) using Abilities\Spells\Human\ThunderClap\ThunderClapCaster.mdl
    Special Effect - Destroy (Last created special effect)
    Animation - Change Eowyn's animation speed to 100.00% of its original speed
    Unit - Cause Eowyn to damage circular area after 0.05 seconds of radius 300.00 at temp_point, dealing 50.00 damage of attack type Spells and damage type Force
    [B]Unit - Create 1 Dummy Jumping Ground Smash for Player 2 (Blue) at temp_point facing Default building facing (270.0) degrees
    Set Smash = (Last created unit)
    Unit - Order Smash to Human Mountain King - Thunder Clap
    Unit - Add a 1.00 second Generic expiration timer to Smash
    Wait 0.10 seconds[/B]    Unit - Remove Crow Form from Eowyn
    Unit - Turn collision for Eowyn On
    Unit - Unpause Eowyn
    Wait 3.00 seconds
    Custom script: call DestroyGroup (udg_temp_group)
    Custom script: call RemoveLocation (udg_temp_point)

No one has any ideas on the distance?

Also, that was lol Jesus4lyf. =p
 

bOb666777

Stand against the ugly world domination face!
Reaction score
117
Uhhh maybe 1.00 second expiration timer isnt enought?
Maybe your dummy thunder clap costs mana and your dummycaster doesnt have enought?
Maybe your dummy caster doesnt have the right spell? Don't confuse thunder clap with warstomp, they dont have the same orderId
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • 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 The Helper:
    Happy Thursday!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top