Where in the trigger shall the custom scrip be?

Solu9

You can change this now in User CP.
Reaction score
216
I have this simple spawn trigger.
What I want to know is when "For each (Integer A) from 1 to X" is used where the clean up script should be.

Example A:

Trigger:
  • Ambush 001
    • Events
      • Unit - A unit enters Spawn Ambush 001 <gen>
    • Conditions
      • (Unit-type of (Entering unit)) Equal to Paladin
    • Actions
      • For each (Integer A) from 1 to 10, do (Actions)
        • Loop - Actions
          • Set TempPoint_1 = (Center of Ambush 001 <gen>)
          • Unit - Create 1 Runner for Neutral Hostile at TempPoint_1 facing Default building facing degrees
          • Custom script: call RemoveLocation (udg_TempPoint_1)
      • Trigger - Turn off (This trigger)



Example B:

Trigger:
  • Ambush 001
    • Events
      • Unit - A unit enters Spawn Ambush 001 <gen>
    • Conditions
      • (Unit-type of (Entering unit)) Equal to Paladin
    • Actions
      • Set TempPoint_1 = (Center of Ambush 001 <gen>)
      • For each (Integer A) from 1 to 10, do (Actions)
        • Loop - Actions
          • Unit - Create 1 Runner for Neutral Hostile at TempPoint_1 facing Default building facing degrees
      • Custom script: call RemoveLocation (udg_TempPoint_1)
      • Trigger - Turn off (This trigger)


Is one of the triggers leaking or can both be used?
 

Imp Midna

Active Member
Reaction score
52
Theoretically, both are fine. Example B is way better though since you dont create the same location over and over again, which is memory and time consuming.
 

Solu9

You can change this now in User CP.
Reaction score
216
Alright thanks for the answer. I have a bonus question however.

Trigger:
  • Ambush 001
    • Events
      • Unit - A unit enters Spawn Ambush 001 <gen>
    • Conditions
      • (Unit-type of (Entering unit)) Equal to Paladin
    • Actions
      • Set TempPoint_1 = (Center of Ambush 001 <gen>)
      • For each (Integer A) from 1 to 10, do (Actions)
        • Loop - Actions
          • Unit - Create 1 Runner for Neutral Hostile at TempPoint_1 facing Default building facing degrees
      • For each (Integer A) from 1 to 10, do (Actions)
        • Loop - Actions
          • Unit - Create 1 Crazed for Neutral Hostile at TempPoint_1 facing Default building facing degrees
      • Custom script: call RemoveLocation (udg_TempPoint_1)
      • Trigger - Turn off (This trigger)


Is it the same in this example then?
 

Juggernaut

I don't know what to change it to
Reaction score
33
Unless the location changes (offset by etc.) then just removing the location in the end is good.
However if you change the location inside the loop you need to remove it inside the loop.
 

KaerfNomekop

Swim, fishies. Swim through the veil of steel.
Reaction score
613
Instead of making 2 loops, you could just bring the action in the second loop up to the first. And you could get rid of the loop altogether by using Create 10 [Units] instead of 1.
 

Solu9

You can change this now in User CP.
Reaction score
216
Alright here is the most tricky one I can come up with at the time being.

Notice that TempPoint_1 is now a random point in the region "Ambush 001"

Trigger:
  • Ambush 001
    • Events
    • Unit - A unit enters Spawn Ambush 001 <gen>
    • Conditions
    • (Unit-type of (Entering unit)) Equal to Paladin
    • Actions
    • Set TempPoint_1 = (Random point in Ambush 001 <gen>)
    • For each (Integer A) from 1 to 10, do (Actions)
    • Loop - Actions
    • Unit - Create 1 Runner for Neutral Hostile at TempPoint_1 facing Default building facing degrees
    • For each (Integer A) from 1 to 10, do (Actions)
    • Loop - Actions
    • Unit - Create 1 Crazed for Neutral Hostile at TempPoint_1 facing Default building facing degrees
    • Custom script: call RemoveLocation (udg_TempPoint_1)
    • Trigger - Turn off (This trigger)

Does it STILL not matter where the clean up script is or does it (in the case of random points) need to be inside the loop?

Edit: I just copied the trigger from above, thats why it look a bit messed up. Just treat it like the other trigger just with random point instead of center.
 

Juggernaut

I don't know what to change it to
Reaction score
33
This is still ok because TempPoint is set at begining of the spell. (Temp point gets 1 value - in the end it gets destroyed)

But if you would do it like this:

For each (Integer A) from 1 to 10, do (Actions)
Loop - Actions
Set TempPoint = (Random point in Playable Map Area)

Then you should remove it inside the loop, because Temp point changes every time.
The way you did it is ok.
 

Solu9

You can change this now in User CP.
Reaction score
216
This is still ok because TempPoint is set at begining of the spell. (Temp point gets 1 value - in the end it gets destroyed)

I understand this. But I want to make completely sure that for every integer 1-X a unit is spawned at a random point in the region. And of course I also want to make sure that each of those points are completely gone afterwards.

I think what is confusing me it that I set a temppoint, but fail to understand how that point can be a lot of random points at the same time.
If I play along and say I understand that I fail to see how just ONE point cleaner can remove all of those random points.

Sorry for keeping this alive. I like to get it explained in every detail and make sure I understand how and why :)
 

Tharius

Occasionally Around
Reaction score
39
Trigger:
  • Ambush 001
    • Events
    • Unit - A unit enters Spawn Ambush 001 <gen>
    • Conditions
    • (Unit-type of (Entering unit)) Equal to Paladin
    • Actions
    • Set TempPoint_1 = (Random point in Ambush 001 <gen>)
    • For each (Integer A) from 1 to 10, do (Actions)
    • Loop - Actions
    • Unit - Create 1 Runner for Neutral Hostile at TempPoint_1 facing Default building facing degrees
    • For each (Integer A) from 1 to 10, do (Actions)
    • Loop - Actions
    • Unit - Create 1 Crazed for Neutral Hostile at TempPoint_1 facing Default building facing degrees
    • Custom script: call RemoveLocation (udg_TempPoint_1)
    • Trigger - Turn off (This trigger)
This trigger will spawn the 20 units at the same point, which will be a single randomly selected point in the region Ambush 001. The reason the cleanup works outside of the loop is because it's only a single point and not "a lot of random points at the same time". The trigger that Juggernaut wrote has to clean up the point within the loop because it actually is picking 10 different random points, and cleaning it up outside the loop would only get the last point created, and leak the other 9.

When you run the line "Set TempPoint_1 = (Random point in Ambush 001 <gen>)", it won't give you a different point each time you look at TempPoint_1. TempPoint_1 is a point variable that only stores a single point. The part (Random point in Ambush 001 <gen>) is where the randomization is being done, and it returns a single (x,y) point that happens to be randomly chosen from within Ambush 001. TempPoint_1 is being set to that single point that the function returned, and doesn't care how the point was chosen.
 

Solu9

You can change this now in User CP.
Reaction score
216
Great! A lot of it I knew on beforehand but your reply set the all in context.

Thanks to all of you who replied :)
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • 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

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top