[Help] Trigger actions don't all act

Angrypuffin

New Member
Reaction score
2
I'm making a very simple map to test a concept, and I'm getting hung up at a spot that I thought was easy.

I'm guiding the player through several stages of a selection process. They start the game owning an obelisk where they make their choices by "casting" various "spells" that correspond to their choice for that stage. Once they've made their choice for that stage, all of that stage's choice-abilities are removed, and the obelisk is given the next set of choice-abilities.

At least, that's how it should work. Unfortunately, I can't get it to remove all of the choice-abilities once one is picked. And it won't properly add the next stage of choice-abilities. It always removes /some/ of the choice-abilities, though, which is the confusing part. It looks like it's selectively processing the actions.

I've attached the map file (35kB).

And here's a copy of the trigger:

Trigger:
  • Pick Progression
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Unit-type of (Casting unit)) Equal to Obelisk of Hero Choosing
      • Progression[(Player number of (Owner of (Casting unit)))] Equal to 0
    • Actions
      • -------- Pure Intelligence --------
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Ability being cast) Equal to Pure Intelligence Progression
        • Then - Actions
          • Game - Display to (Player group((Owner of (Casting unit)))) the text: Intelligence progre...
          • Set Progression[(Player number of (Owner of (Casting unit)))] = 1
        • Else - Actions
      • -------- Pure Strength --------
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Ability being cast) Equal to Pure Strength Progression
        • Then - Actions
          • Game - Display to (Player group((Owner of (Casting unit)))) the text: Strength progressio...
          • Set Progression[(Player number of (Owner of (Casting unit)))] = 100
        • Else - Actions
      • -------- Pure Agility --------
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Ability being cast) Equal to Pure Agility Progression
        • Then - Actions
          • Game - Display to (Player group((Owner of (Casting unit)))) the text: Agility progression...
          • Set Progression[(Player number of (Owner of (Casting unit)))] = 10
        • Else - Actions
      • -------- Balanced --------
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Ability being cast) Equal to Balanced Progression
        • Then - Actions
          • Game - Display to (Player group((Owner of (Casting unit)))) the text: Balanced progressio...
          • Set Progression[(Player number of (Owner of (Casting unit)))] = 111
        • Else - Actions
      • -------- Agility-Intelligence --------
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Ability being cast) Equal to Agility-Intelligence Progression
        • Then - Actions
          • Game - Display to (Player group((Owner of (Casting unit)))) the text: Agility-Intelligenc...
          • Set Progression[(Player number of (Owner of (Casting unit)))] = 11
        • Else - Actions
      • -------- Strength-Agility --------
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Ability being cast) Equal to Strength-Agility Progression
        • Then - Actions
          • Game - Display to (Player group((Owner of (Casting unit)))) the text: Strength-Agility pr...
          • Set Progression[(Player number of (Owner of (Casting unit)))] = 110
        • Else - Actions
      • -------- Strength-Intelligence --------
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Ability being cast) Equal to Strength-Intelligence Progression
        • Then - Actions
          • Game - Display to (Player group((Owner of (Casting unit)))) the text: Strength-Intelligen...
          • Set Progression[(Player number of (Owner of (Casting unit)))] = 101
        • Else - Actions
      • -------- Random --------
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Ability being cast) Equal to Random Progression
        • Then - Actions
          • Game - Display to (Player group((Owner of (Casting unit)))) the text: Random progression ...
          • Set Progression[(Player number of (Owner of (Casting unit)))] = (((Random integer number between 0 and 1) x 100) + (((Random integer number between 0 and 1) x 10) + (Random integer number between 0 and 1)))
        • Else - Actions
      • Game - Display to (Player group((Owner of (Casting unit)))) the text: (String(Progression[(Player number of (Owner of (Casting unit)))]))
      • -------- Remove Progression Ablities --------
      • Unit - Remove Agility-Intelligence Progression from (Casting unit)
      • Unit - Remove Balanced Progression from (Casting unit)
      • Unit - Remove Pure Agility Progression from (Casting unit)
      • Unit - Remove Pure Intelligence Progression from (Casting unit)
      • Unit - Remove Pure Strength Progression from (Casting unit)
      • Unit - Remove Random Progression from (Casting unit)
      • Unit - Remove Strength-Agility Progression from (Casting unit)
      • Unit - Remove Strength-Intelligence Progression from (Casting unit)
      • -------- Add Hero Choices --------
      • Unit - Add Archmage Model to (Casting unit)
 

Attachments

  • (1) Trigger Test 0.0.1.w3x
    35.1 KB · Views: 81

Angrypuffin

New Member
Reaction score
2
Also: I've tried adding in a wait before removing the abilities, and it doesn't seem to work.

Some more details about what happens when you're picking "progression" choices:

-If you pick Pure Strength , you're left with Strength-Agility [SA], Strength-Intelligence [SI], and Random [R].
-If you pick Strength-Agility [SA], you're left with Strength-Intelligence [SI].
-If you pick A, you're left with S, SA, SI, I, and R.
-If you pick SI, you're left with nothing- but it still doesn't correctly give the choices for the next stage.
-If you pick Balanced [SAI], you're left with S, SA, A, SI, I, and R.
-If you pick I, you're left with S, SA, SI, and R.
-If you pick AI, you're left with S, SA, A, SI, SAI, I, R.
-If you pick R, you're left with SA and SI.

Any thoughts?
 

Angrypuffin

New Member
Reaction score
2
Sorry about that. Thanks for the pointer.

Has anyone else had problems like this, where the trigger is clearly executing, but some of the actions don't seem to be happening?
 

HydraRancher

Truth begins in lies
Reaction score
197
Try pausing the unit before removing and adding the abilities. Not sure if it will work, but give it a try.
 

Angrypuffin

New Member
Reaction score
2
Ah, okay. I figured it out.

The game freaks out if you try to remove the ability that is the ability being casted in the "unit begins the effect of an ability" event. The rest of the trigger actions won't execute. If I just disable the line that tells it to remove that particular spell, it works fine.

Guess I'll have to abandon my clever idea of using the same building to do all stages of hero building by totally giving it different sets of abilities each time the user makes a choice.

However, removing the casting unit, replacing it with another unit that has the next set of abilities, and selecting that new unit for the user works fine. Example:

Trigger:
  • Pick Progression
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Unit-type of (Casting unit)) Equal to Step 1 - Choose Progression
    • Actions
      • -------- Switch to next Obelisk --------
      • Unit - Remove (Casting unit) from the game
      • Unit - Create 1 Step 2 - Choose Model for (Owner of (Casting unit)) at ((Owner of (Casting unit)) start location) facing Default building facing degrees
      • Unit - Make (Last created unit) Invulnerable
      • Selection - Select (Last created unit) for (Owner of (Last created unit))


Working example attached!
 

Attachments

  • (1) Trigger Test 0.0.2.w3x
    35.7 KB · Views: 81

Rushhour

New Member
Reaction score
46
And another thing: Dont use "casting unit" but "trigger unit", it returns the same unit, but 'casting unit' won't work after you add a wait, I once got mad till I found out :D
 

Angrypuffin

New Member
Reaction score
2
Dont use "casting unit" but "trigger unit", it returns the same unit, but 'casting unit' won't work after you add a wait, I once got mad till I found out

Oh, wow, haha. That's amazingly useful.

When I went back to the old version of the map, instituted a .01 second wait, and then changed everything from "casting unit" to "triggering unit", it worked the original way I'd intended.

Now I've got to decide which way I want to do it!
 
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