Making these 2 abilities MUI

yunusowic

New Member
Reaction score
7
I made this 2 abilities for my map. They work fine but if 2 players cast them at the same time there are some problems. They can't be done without variables i guess and i tried to use arrays but didn't work. The first skill is 'Push'. A knockback skill.
Push Cast
Events
Unit - A unit Starts the effect of an ability
Conditions
(Ability being cast) Equal to Push
Actions
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
((Target unit of ability being cast) is A Hero) Equal to True
Then - Actions
Game - Display to (All allies of (Triggering player)) for 4.00 seconds the text: |cff8080ffYou can o...
Unit - Order (Casting unit) to Stop
Else - Actions
Set Caster = (Casting unit)
Set Point = (Position of (Casting unit))
Set Move = (Position of (Target unit of ability being cast))
Set Pushed = (Target unit of ability being cast)
Set Angle = (Integer((Angle from Point to Move)))
Unit - Turn collision for Pushed Off
Unit - Pause Pushed
Trigger - Turn on Push Action <gen>
Push Action
Events
Time - Every 0.03 seconds of game time
Conditions
Actions
Set Distance = (Integer((Distance between Point and Move)))
Set Move = (Move offset by 25.00 towards (Real(Angle)) degrees)
Unit - Move Pushed instantly to Move
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Real(Distance)) Greater than or equal to 2500.00
Then - Actions
Unit - Turn collision for Pushed On
Unit - Unpause Pushed
Trigger - Turn off (This trigger)
Else - Actions

The second skill is Toss. (Tiny, DotA)
Throw Cast
Events
Unit - A unit Starts the effect of an ability
Conditions
(Ability being cast) Equal to Throw
Actions
Set Point = (Position of (Casting unit))
Set Target = (Random unit from (Units within 200.00 of (Position of (Casting unit)) matching ((((Matching unit) is alive) Equal to True) and ((Matching unit) Not equal to (Casting unit)))))
Unit - Add Crow Form to Target
Unit - Turn collision for Target Off
Set Move = (Position of Target)
Set Distance = (Integer((Distance between Point and (Target point of ability being cast))))
Set Angle = (Integer((Angle from Point to (Target point of ability being cast))))
Trigger - Turn on Throw Fly <gen>
Throw Fly
Events
Time - Every 0.03 seconds of game time
Conditions
Actions
Set Move = (Move offset by 40.00 towards (Real(Angle)) degrees)
Animation - Change Target flying height to ((Current flying height of Target) + 25.00) at 0.00
Unit - Move Target instantly to Move
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Distance between Move and Point) Greater than or equal to ((Real(Distance)) / 2.00)
Then - Actions
Trigger - Turn on Throw Land <gen>
Trigger - Turn off (This trigger)
Else - Actions
Throw Land
Events
Time - Every 0.03 seconds of game time
Conditions
Actions
Set Move = (Move offset by 40.00 towards (Real(Angle)) degrees)
Animation - Change Target flying height to ((Current flying height of Target) - 25.00) at 0.00
Unit - Move Target instantly to Move
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Distance between Move and Point) Greater than or equal to (Real(Distance))
Then - Actions
Unit - Remove Crow Form from Target
Unit - Turn collision for Target On
Animation - Change Target flying height to 0.00 at 0.00
Unit - Cause Target to damage circular area after 0.00 seconds of radius 400.00 at Move, dealing 10.00 damage of attack type Spells and damage type Normal
Special Effect - Create a special effect at Move using Abilities\Spells\Human\ThunderClap\ThunderClapCaster.mdl
Trigger - Turn off (This trigger)
Else - Actions

I want these 2 skills to be castable for every player in the map.
 

darkbeer

Beer is Good!
Reaction score
84
you can also use gui:

make all variables that are passed in an array, store the maximum number of instances in an integer, set all array variables to the current integer instances.
Then in your slide trigger: loop through all instances, do your actions and after that receycle your variables.

AND please, use real variables for distances / angles!

e.g. !This is just to give you the idea, you leak a lot of points here which i didnt yet remove, because im short on time!

Code:
Push Cast
Events
Unit - A unit Starts the effect of an ability
Conditions
(Ability being cast) Equal to Push
Actions
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
((Target unit of ability being cast) is A Hero) Equal to True
Then - Actions
Game - Display to (All allies of (Triggering player)) for 4.00 seconds the text: |cff8080ffYou can o...
Unit - Order (Casting unit) to Stop
Else - Actions
set PushInstances = PushInstances + 1
Set Caster[PushInstances] = (Casting unit)
Set Point[PushInstances] = (Position of (Casting unit))
Set Move[PushInstances] = (Position of (Target unit of ability being cast))
Set Pushed[PushInstances] = (Target unit of ability being cast)
Set Angle[PushInstances] = Angle from Point to Move // make this a real instead of integer
Unit - Turn collision for Pushed Off
Unit - Pause Pushed
Trigger - Turn on Push Action <gen>

Code:
Push Action
Events
Time - Every 0.03 seconds of game time
Conditions
Actions
For each integerA from 1 to PushInstances do actions
    Actions //everything is inside here
        
Set Distance[integerA] = Distance between Point and Move
Set Move[integerA] = (Move[integerA] offset by 25.00 towards Angle[integerA]) degrees)
Unit - Move Pushed[integerA] instantly to Move
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
Distance[integerA] Greater than or equal to 2500.00
Then - Actions
set Pushed[integerA] = Pushed[PushInstances]
set Angle[integerA] = Angle[PushInstances]
set Distance[integerA] =  Distance[PushInstances]
set Move[integerA] = Move[PushInstances]
set PushInstances = PushInstances - 1
for each integerA from integerA - 1 to integerA - 1 do Actions
    Actions //nothing here 
Unit - Turn collision for Pushed On
Unit - Unpause Pushed
if PushInstances = 0 then
    Trigger - Turn off (This trigger)
endif
Else - Actions
 
F

Foley

Guest
You could convert the trigger to JASS and make them all locals.
 

Flare

Stops copies me!
Reaction score
662
You could convert the trigger to JASS and make them all locals.

... why do people have this idea that "make everything local" works wonders? There are multiple triggers used, and locals can be used outside of the function they were declared in. You would need some way of attaching the data to the unit (custom value) or something else
 

yunusowic

New Member
Reaction score
7
i made 12 triggers for each player and made the variables array. Different triggers start for different players. But it didn't work. The skills only work when Player 1 casts them.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • 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
  • Ghan Ghan:
    Heard Houston got hit pretty bad by storms last night. Hope all is well with TH.
  • The Helper The Helper:
    Power back on finally - all is good here no damage
    +2
  • V-SNES V-SNES:
    Happy Friday!
    +1
  • The Helper The Helper:
    New recipe is another summer dessert Berry and Peach Cheesecake - https://www.thehelper.net/threads/recipe-berry-and-peach-cheesecake.194169/

      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