Duel System Rewrite Problem

Denegoth

New Member
Reaction score
18
Trigger:
  • Duel Death
    • Events
      • Unit - A unit Dies
    • Conditions
      • (Region 007 <gen> contains (Dying unit)) Equal to True
    • Actions
      • For each (Integer A) from 1 to 5, do (Actions)
        • Loop - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • (Number of units in (Units in Region 007 <gen> owned by (Player((Integer A))))) Equal to 0
            • Then - Actions
              • Trigger - Run DarkWin <gen> (ignoring conditions)
            • Else - Actions
              • Do nothing
      • For each (Integer B) from 6 to 10, do (Actions)
        • Loop - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • (Number of units in (Units in Region 007 <gen> owned by (Player((Integer B))))) Equal to 0
            • Then - Actions
              • Trigger - Run LightWin <gen> (ignoring conditions)
            • Else - Actions
              • Do nothing


As soon as someone dies in the duel, both players win. What's causing this?
 

Denegoth

New Member
Reaction score
18
Well, from what I can see, I have no idea what DarkWin and LightWin do.

The problem is that it is running them as soon as a unit dies rather than when a whole team dies. The Darkwin and Lightwin triggers do not have Events so they are unrelated to the problem.
 

Sevion

The DIY Ninja
Reaction score
413
Well, your if/then/else is wrong. You're checking if there's 0 units of ANY player.

So, if each player has only 1 unit in Region 007, then:

Code:
-----------------
| 1  2  3  4  5 |
|               |
| 6  7  8  9  10|
-----------------

When 1 dies, then it will register that a unit died and the if then else for the first loop will evaluate true for Player 1, as Player 1's 1 died inside of Region 007 AND Player 1 has no more units in Regin 001.

What you SHOULD do is check if Force 1 has no more units in Region 007 then run DarkWin

Then, Force 2 has no more units in Region 007 then run LightWin.
 

Jesus4Lyf

Good Idea™
Reaction score
397
>both players win. What's causing this?
Your win clause is that their (most likely) non-existant allies have no units in the region.

Of course, we have no idea whether or not those non-existant allies actually have units there or not. There appears to be a logic fault in the trigger, but we can't decide that without more info.
 

DonRoman

New Member
Reaction score
5
Your trigger will count dead units as well add a condition:

Trigger:
  • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
    • If - Conditions
      • (Number of units in (Units in (Playable map area) matching (((Owner of (Matching unit)) Equal to (Player((Integer A)))) and (((Matching unit) is alive) Equal to True)))) Equal to 0
    • Then - Actions
    • Else - Actions


as if it is now even corpses will considered as units i think.
 

Sevion

The DIY Ninja
Reaction score
413
If the duel win conditions is like one team kills all of the units of the other team, then the logic in the if/then/else fails. ^_^ Just read what I said. Plus, you should add in what Don said. Though, I might double check as I'm not 100% if corpses are detected right now in your if/then/else or not.

Jesus, the win clause is not that his allies have no units, it's just that the if/then/else will return true if any player commands 0 units in there. That means, if all of Player 1's units in there dies but Player 2 (ally of Player 1) still has units, it will still return true.

So, in conclusion, the only thing you have to fix, is the condition in the if/then/elses. ^_^
 

Denegoth

New Member
Reaction score
18
Trigger:
  • Duel Death
    • Events
      • Unit - A unit Dies
    • Conditions
      • (Region 007 <gen> contains (Dying unit)) Equal to True
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • And - All (Conditions) are true
            • Conditions
              • (Number of units in (Units in Region 007 <gen> owned by Player 1 (Red))) Equal to 0
              • (Number of units in (Units in Region 007 <gen> owned by Player 2 (Blue))) Equal to 0
              • (Number of units in (Units in Region 007 <gen> owned by Player 3 (Teal))) Equal to 0
              • (Number of units in (Units in Region 007 <gen> owned by Player 4 (Purple))) Equal to 0
              • (Number of units in (Units in Region 007 <gen> owned by Player 5 (Yellow))) Equal to 0
        • Then - Actions
          • Trigger - Run DarkWin <gen> (ignoring conditions)
        • Else - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • And - All (Conditions) are true
                • Conditions
                  • (Number of units in (Units in Region 007 <gen> owned by Player 6 (Orange))) Equal to 0
                  • (Number of units in (Units in Region 007 <gen> owned by Player 7 (Green))) Equal to 0
                  • (Number of units in (Units in Region 007 <gen> owned by Player 8 (Pink))) Equal to 0
                  • (Number of units in (Units in Region 007 <gen> owned by Player 9 (Gray))) Equal to 0
                  • (Number of units in (Units in Region 007 <gen> owned by Player 10 (Light Blue))) Equal to 0
            • Then - Actions
              • Trigger - Run LightWin <gen> (ignoring conditions)
            • Else - Actions
              • Do nothing


I was sure this one would work, but this time nothing happens at all.
 

Sevion

The DIY Ninja
Reaction score
413
Um. A simple addition of the And line to your original loop would have been sufficient...

Post DarkWin and LightWin.
 

Denegoth

New Member
Reaction score
18
Um. A simple addition of the And line to your original loop would have been sufficient...

Post DarkWin and LightWin.



Trigger:
  • LightWin
    • Events
    • Conditions
    • Actions
      • Trigger - Turn off Duel Death <gen>
      • Trigger - Turn on RegionKill <gen>
      • For each (Integer B) from 1 to 10, do (Actions)
        • Loop - Actions
          • Camera - Pan camera for (Owner of Hero[(Integer B)]) to ((Owner of Hero[(Integer B)]) start location) over 0.00 seconds
          • Selection - Select Hero[(Integer B)] for (Owner of Hero[(Integer B)])
          • Hero - Instantly revive Hero[(Integer B)] at ((Owner of Hero[(Integer B)]) start location), Hide revival graphics
          • Unit - Move Hero[(Integer B)] instantly to ((Owner of Hero[(Integer B)]) start location)
      • Game - Display to (All players) the text: |cff80FF00The Light...
      • Countdown Timer - Start DuelTimer as a One-shot timer that will expire in 600.00 seconds
      • For each (Integer A) from 1 to 5, do (Actions)
        • Loop - Actions
          • Player - Add (DuelNum x 250) to (Owner of Hero[(Integer A)]) Current gold


DarkWin is the same just for players on team 2 and a different message.

Regionkill is just a code that kills someone if they're in the arena outside of a duel.
 

deebee

New Member
Reaction score
15
Problem is the Hero's corpse is still there, you have to use another condition to check to see if there are any "Alive" units.
 

Denegoth

New Member
Reaction score
18
Problem is the Hero's corpse is still there, you have to use another condition to check to see if there are any "Alive" units.

I've rewritten the trigger to check every 2 seconds. I'm going to test it in a moment.
 

Denegoth

New Member
Reaction score
18
It worked. After many many rewrites and such, it's finally working. Thanks for the help everyone!
 
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