what did I do wrong converting my triggers to mui

madd_999

New Member
Reaction score
14
my old jump spell works good.. the jump start at and finishes at the correct point.. the arc the unit moves is also good..
the only problem with this version is that its not usable by more then 1 unit at a time...

so I tried to convert it to MUI using a hahstable.
the only problem now is that if i cast my jump far away.. my unit ends up jumping half the distance, amd if i cast it closeby it jumps almost twice the distance...

and i cant figure out why. hopefully someone can see what i can see not..


Old jump spell
Jump init
Trigger:
  • init jump
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
    • Actions
      • Set Total_Distance = (Distance between (Position of (Casting unit)) and (Target point of ability being cast))
      • Set Max_Height = (Total_Distance / 2.00)
      • Set Current_distance = Total_Distance
      • Set Jump_Speed = 10.00
      • Unit Group - Add (Casting unit) to Jump_group
      • Unit - Add Crow Form to (Casting unit)
      • Unit - Remove Crow Form from (Casting unit)

the jump itself
Trigger:
  • jump
    • Events
      • Time - Every 0.01 seconds of game time
    • Conditions
    • Actions
      • Unit Group - Pick every unit in Jump_group and do (Actions)
        • Loop - Actions
          • Set Height = (((4.00 x (500.00 / Total_Distance)) x (Total_Distance - Current_distance)) x (Current_distance / Total_Distance))
          • Set Current_distance = (Current_distance - Jump_Speed)
          • Animation - Change (Picked unit) flying height to Height at 0.00
          • Unit - Move (Picked unit) instantly to ((Position of (Picked unit)) offset by Jump_Speed towards (Facing of (Picked unit)) degrees)
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • Current_distance Less than or equal to 0.00
            • Then - Actions
              • Animation - Change (Picked unit) flying height to (Default flying height of (Picked unit)) at 0.00
              • Unit Group - Remove (Picked unit) from Jump_group
            • Else - Actions


hopefully my new mui jump spell
map init
Trigger:
  • map int
    • Events
      • Map initialization
    • Conditions
    • Actions
      • Set Jump_Speed = 10.00
      • Hashtable - Create a hashtable
      • Set JumpHastable = (Last created hashtable)

init jump
Trigger:
  • init jump
    • Events
      • Unit - A unit Finishes casting an ability
    • Conditions
    • Actions
      • Set Jump_Total_Distance = (Distance between (Position of (Casting unit)) and (Target point of ability being cast))
      • Set Jump_Max_Height = 500.00
      • Set Jump_Current_distance = Jump_Total_Distance
      • Unit Group - Add (Casting unit) to Jump_group
      • Hashtable - Save Handle Of(Casting unit) as 0 of (Player number of (Owner of (Casting unit))) in JumpHastable
      • Hashtable - Save Jump_Max_Height as 1 of (Player number of (Owner of (Casting unit))) in JumpHastable
      • Hashtable - Save Jump_Total_Distance as 2 of (Player number of (Owner of (Casting unit))) in JumpHastable
      • Hashtable - Save Jump_Current_distance as 3 of (Player number of (Owner of (Casting unit))) in JumpHastable

Jump
Trigger:
  • jump
    • Events
      • Time - Every 0.01 seconds of game time
    • Conditions
    • Actions
      • For each (Integer A) from 1 to (Number of players), do (Actions)
        • Loop - Actions
          • Set Jump_Caster = (Load 0 of (Player number of (Player((Integer A)))) in JumpHastable)
          • Set Jump_Max_Height = (Load 1 of (Player number of (Player((Integer A)))) from (Last created hashtable))
          • Set Jump_Total_Distance = (Load 2 of (Player number of (Player((Integer A)))) from (Last created hashtable))
          • Set Jump_Current_distance = (Load 3 of (Player number of (Player((Integer A)))) from (Last created hashtable))
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • Jump_Current_distance Less than or equal to 0.00
            • Then - Actions
              • Animation - Change (Picked unit) flying height to (Default flying height of (Picked unit)) at 0.00
              • Hashtable - Save Handle OfNo unit as 0 of (Player number of (Owner of (Casting unit))) in JumpHastable
            • Else - Actions
              • Unit - Add Crow Form to Jump_Caster
              • Unit - Remove Crow Form from Jump_Caster
              • Set Jump_Height = (((4.00 x (Jump_Max_Height / Jump_Total_Distance)) x (Jump_Total_Distance - Jump_Current_distance)) x (Jump_Current_distance / Jump_Total_Distance))
              • Animation - Change Jump_Caster flying height to Jump_Height at 0.00
              • Set Jump_Current_distance = (Jump_Current_distance - Jump_Speed)
              • Set Jump_Next_point = ((Position of Jump_Caster) offset by Jump_Speed towards (Facing of Jump_Caster) degrees)
              • Unit - Move Jump_Caster instantly to Jump_Next_point
              • Custom script: call RemoveLocation (udg_Jump_Next_point)
              • Hashtable - Save Jump_Current_distance as 3 of (Player number of (Owner of (Casting unit))) in JumpHastable

--
edit: i know this is not leakles, I still need to remove them but first i want to have the triggers work properly
 

madd_999

New Member
Reaction score
14
there it is.. but if you can tell me what I did wrong i can possibly solve it myself
 

Attachments

  • jump 2.w3x
    18.1 KB · Views: 187

nnieheayp

Member
Reaction score
2
I am too bad in english. So, i only fixed for you. Sorry for that

Trigger:
  • init jump
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to Flame Strike
    • Actions
      • Set Jump_Total_Distance = (Distance between (Position of (Casting unit)) and (Target point of ability being cast))
      • Set Jump_Max_Height = 500.00
      • Set Jump_Current_distance = Jump_Total_Distance
      • Hashtable - Save Jump_Max_Height as (Key maxheight) of (Key (Casting unit)) in JumpHastable
      • Hashtable - Save Jump_Current_distance as (Key current) of (Key (Casting unit)) in JumpHastable
      • Hashtable - Save Jump_Total_Distance as (Key total) of (Key (Casting unit)) in JumpHastable
      • Unit Group - Add (Casting unit) to Jump_group


Trigger:
  • jump
    • Events
      • Time - Every 0.01 seconds of game time
    • Conditions
      • (Number of units in Jump_group) Greater than 0
    • Actions
      • Unit Group - Pick every unit in Jump_group and do (Actions)
        • Loop - Actions
          • Set Jump_Current_distance = (Load (Key current) of (Key (Picked unit)) from JumpHastable)
          • Set Jump_Max_Height = (Load (Key maxheight) of (Key (Picked unit)) from JumpHastable)
          • Set Jump_Total_Distance = (Load (Key total) of (Key (Picked unit)) from JumpHastable)
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • Jump_Current_distance Less than or equal to 0.00
            • Then - Actions
              • Animation - Change (Picked unit) flying height to (Default flying height of (Picked unit)) at 0.00
              • Hashtable - Clear all child hashtables of child (Key (Picked unit)) in JumpHastable
              • Unit Group - Remove (Picked unit) from Jump_group
            • Else - Actions
              • Unit - Add Crow Form to (Picked unit)
              • Unit - Remove Crow Form from (Picked unit)
              • Set Jump_Height = (((4.00 x (Jump_Max_Height / Jump_Total_Distance)) x (Jump_Total_Distance - Jump_Current_distance)) x (Jump_Current_distance / Jump_Total_Distance))
              • Animation - Change (Picked unit) flying height to Jump_Height at 0.00
              • Set Jump_Current_distance = (Jump_Current_distance - Jump_Speed)
              • Set Jump_Next_point = ((Position of (Picked unit)) offset by Jump_Speed towards (Facing of (Picked unit)) degrees)
              • Unit - Move (Picked unit) instantly to Jump_Next_point
              • Custom script: call RemoveLocation (udg_Jump_Next_point)
              • Hashtable - Save Jump_Current_distance as (Key current) of (Key (Picked unit)) in JumpHastable
 

Attachments

  • jump 2(fix).w3x
    19.1 KB · Views: 197

Nenad

~Choco Coronet~ Omnomnom
Reaction score
137
Set Height = (((4.00 x (500.00 / Total_Distance)) x (Total_Distance - Current_distance)) x (Current_distance / Total_Distance))

Set Jump_Height = (((4.00 x (Jump_Max_Height / Jump_Total_Distance)) x (Jump_Total_Distance - Jump_Current_distance)) x (Jump_Current_distance / Jump_Total_Distance))

Bold Is the Mismatch in the two triggers, try remaking that into just total distance ^^
 

madd_999

New Member
Reaction score
14
General chit-chat
Help Users
  • No one is chatting at the moment.
  • 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
  • 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 Discord

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top