Hero Siege [set hero back to where he came from]

Mitsarugi

New Member
Reaction score
0
Heroes are in random and in random numbers? What does that mean?
You can use Player Number arrays if you don't want it to be too complicated, but if it needs more than just MPI, then I would suggest using hashtables.

EDIT: I can't find a way to start Timer[Key(Triggering Unit)]. Looks like more expertise is required. (I learned to use hashtables 6 days ago)

EDIT 2: Duh. Dummy expiring units. Dunno why I never thought of it before. Will start right away, get back ASAP.

Heroes are in random and in random numbers? What does that mean?
it means that a player could pick a hero and that it's never the same one (i have like 20 different heroes made), random numbers because they can have 1 or 2 heroes.
PS: thank you for your help it helps a lot
 

KaerfNomekop

Swim, fishies. Swim through the veil of steel.
Reaction score
613
So each player can have more than one Hero, and the trigger has to be MUI, right?

EDIT: I came up with this, but somehow I can't make it work. The dummy unit isn't even created.
Trigger:
  • Move Trigger
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to Divine Shield
      • (Original Position <gen> contains (Triggering unit)) Equal to True
    • Actions
      • Hashtable - Save Handle Of(Position of (Triggering unit)) as 1 of (Key (Triggering unit)) in HeroPositionHash
      • Unit - Create 1 Dummy Unit for (Owner of (Triggering unit)) at (Load 1 of (Key (Triggering unit)) in HeroPositionHash) facing Default building facing degrees
      • Hashtable - Save Handle Of(Last created unit) as 1 of (Key (Triggering unit)) in DummyHash
      • Unit - Add a 10.00 second Generic expiration timer to (Load 1 of (Key (Triggering unit)) in DummyHash)
      • Hashtable - Save Handle Of(Triggering unit) as 1 of (Key (Load 1 of (Key (Triggering unit)) in DummyHash)) in HeroHash
      • Unit - Move (Triggering unit) instantly to (Center of Someplace to go <gen>)

Trigger:
  • Return Trigger
    • Events
      • Unit - A unit Dies
    • Conditions
      • (Unit-type of (Triggering unit)) Equal to Dummy Unit
    • Actions
      • Unit - Move (Load 1 of (Key (Dying unit)) in HeroHash) instantly to (Load 1 of (Key (Load 1 of (Key (Dying unit)) in HeroHash)) in HeroPositionHash)

EDIT2: Found the problem - I forgot to create the hashtables in the first place. This works perfectly. Demo map attached.
 

Attachments

  • Hero Movement Trigger 2.w3x
    18.8 KB · Views: 179

HydraRancher

Truth begins in lies
Reaction score
197
You know, you only need 1 hashtable. Hashtables themselves can be massive, so limit yourself down to very few.
 

MetallicReap

New Member
Reaction score
0
i havent tried this, but when make a trigger where a unit owned by p1 enters region (that region being the region it starts at) then set a unit variable to the entering unit (which would be you hero), then turn off the trigger, it should look like this...

Events
-A Unit Enters Regiom
Conditions
-Owner of (Entering unit) equal to (Player 1 Red)
Actions
-Variable: Set (Entering Unit) to (Unit Variable name)
-Trigger: Turn off (this trigger)

then whenever you want to move that unit to the position, just move the variable unit you set to that position. it should work.
 

KaerfNomekop

Swim, fishies. Swim through the veil of steel.
Reaction score
613
Well, I made my first hashtable for Sprout. So I'm not exactly sure how I should've done this, only that it works.
 

KaerfNomekop

Swim, fishies. Swim through the veil of steel.
Reaction score
613
Trigger:
  • Move Trigger
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to Divine Shield
      • (Original Position <gen> contains (Triggering unit)) Equal to True
    • Actions
      • Hashtable - Save Handle Of(Position of (Triggering unit)) as 2 of (Key (Triggering unit)) in HeroMovementHashtable
      • Unit - Create 1 Dummy Unit for (Owner of (Triggering unit)) at (Load 2 of (Key (Triggering unit)) in HeroMovementHashtable) facing Default building facing degrees
      • Hashtable - Save Handle Of(Last created unit) as 3 of (Key (Triggering unit)) in HeroMovementHashtable
      • Unit - Add a 10.00 second Generic expiration timer to (Load 3 of (Key (Triggering unit)) in HeroMovementHashtable)
      • Hashtable - Save Handle Of(Triggering unit) as 1 of (Key (Load 3 of (Key (Triggering unit)) in HeroMovementHashtable)) in HeroMovementHashtable
      • -------- [1 of Key(Triggering Unit)] is the UNIT to be moved. --------
      • -------- [2 of Key(Triggering Unit)] is the ORIGINAL POSITION of the unit to be moved. --------
      • -------- [3 of Key(Triggering Unit)] is the DUMMY UNIT. The unit is returned to its original position when the dummy dies. --------
      • Unit - Move (Triggering unit) instantly to (Center of Someplace to go <gen>)

Trigger:
  • Return Trigger
    • Events
      • Unit - A unit Dies
    • Conditions
      • (Unit-type of (Triggering unit)) Equal to Dummy Unit
    • Actions
      • Unit - Move (Load 1 of (Key (Dying unit)) in HeroMovementHashtable) instantly to (Load 2 of (Key (Load 1 of (Key (Dying unit)) in HeroMovementHashtable)) in HeroMovementHashtable)


I'm starting to like these hashtable things. Still not leak-free though.

@MetallicReap: That system would work fine, but only if each player only has 1 Hero and no more. Here Mitsarugi said that each player may have two heroes.
 

Attachments

  • Hero Movement Trigger 3.w3x
    18.8 KB · Views: 163

Mitsarugi

New Member
Reaction score
0
okay, so what if i don't use spells for this?
i need it for a special event so they get teleported on there own (by a timer)
how to asign all my units player (red) to a hash table , then the same for player (blue) , etc...?
 

KaerfNomekop

Swim, fishies. Swim through the veil of steel.
Reaction score
613
Are you only moving Heroes? Or are summoned units, creeps and all other stuff belonging to every player moved over too?
 

KaerfNomekop

Swim, fishies. Swim through the veil of steel.
Reaction score
613
Trigger:
  • Timed Move Trigger
    • Events
      • Time - TempTimer expires
    • Conditions
    • Actions
      • Set TempUnitGroup = (Units in (Playable map area) matching (((Matching unit) is A Hero) Equal to True))
      • Countdown Timer - Destroy (Last created timer window)
      • Unit Group - Pick every unit in TempUnitGroup and do (Actions)
        • Loop - Actions
          • Hashtable - Save Handle Of(Position of (Picked unit)) as 2 of (Key (Picked unit)) in HeroMovementHashtable
          • Unit - Create 1 Dummy Unit for (Owner of (Picked unit)) at (Load 2 of (Key (Picked unit)) in HeroMovementHashtable) facing Default building facing degrees
          • Hashtable - Save Handle Of(Last created unit) as 3 of (Key (Picked unit)) in HeroMovementHashtable
          • Unit - Add a 10.00 second Generic expiration timer to (Load 3 of (Key (Picked unit)) in HeroMovementHashtable)
          • Hashtable - Save Handle Of(Picked unit) as 1 of (Key (Load 3 of (Key (Picked unit)) in HeroMovementHashtable)) in HeroMovementHashtable
          • Unit - Move (Picked unit) instantly to (Center of Someplace to go <gen>)
      • Custom script: call DestroyGroup(udg_TempUnitGroup)


Basically, change all the (Triggering Unit) into (Picked Unit) and add the Pick Every Unit action. I think it should work.
 
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

      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