A unit attacks question

tbjl2006

New Member
Reaction score
5
If i had a trigger like:

Untitled Trigger 002
Code:
Events
Unit - A unit Is attacked
   
Conditions
    
Actions
Set Attack_Percent = (Random integer number between 1 and 5)
        
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                My_Variable Equal to 1
            Then - Actions
                Unit - Cause (Attacking unit) to damage (Attacked unit), dealing 0.00 damage of attack type Normal and damage type Normal
            Else - Actions
        
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                My_Variable Equal to 2
            Then - Actions
                Unit - Order (Attacking unit) to Attack (Attacked unit)
            Else - Actions
        
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                My_Variable Equal to 3
            Then - Actions
                Unit - Cause (Attacking unit) to damage (Attacked unit), dealing 50.00 damage of attack type Normal and damage type Normal
            Else - Actions
        
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                My_Variable Equal to 4
            Then - Actions
                Unit - Cause (Attacking unit) to damage (Attacked unit), dealing 10.00 damage of attack type Normal and damage type Normal
            Else - Actions
        
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                My_Variable Equal to 5
            Then - Actions
                Unit - Order (Attacked unit) to Human Mountain King - Storm Bolt (Attacking unit)
            Else - Actions

I want to know a few things. First is: will it work? Second is: is there any way to take a units attack damage, store it in a variable/add it to a trigger then add 20 damage to it (for a critical hit) Third is:will this affect every unit and if it does what would happen if, say 50 units attacked at once. Last question, how do you edit a units health, because editing the base health doesn't seem to do anything.

If you have a better trigger please post. Thanks in advance, tbjl2006
 
Z

Zell

Guest
Please, please, please! Use CODE tags, QUOTE tags are horrendous for code. To add damage, you don't need to store it (only if you wanted to add a percent of the damage a unit deals). Just use "Unit - Damage Target". And No, the trigger will only work for 3 and 4. "Is attacked" happens after the damage, so ordering it to attack will make it attack again. The action for 1 does nothing, "Unit - Damage Target" is extra damage, the attack already deals some. And 5 only works if the hero has Storm Bolt. Look in the Index for dummy caster tutorials. And yes, it will work for everyone (MUI). Triggers get queued, and they only go one by one. The thing that stops triggers from being MUI is waits (for the most part).
 

tbjl2006

New Member
Reaction score
5
Anyone have an easier way to do this? I want their to be a chance to get a critical hit, a chance to stun, a chance to miss, and a chance to hit regular.
 
Z

Zell

Guest
The only thing that would be hard is the missing. Everything else is simple.
 
I

IKilledKEnny

Guest
What Zell says but change this:

Code:
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                My_Variable Equal to 2
            Then - Actions
                Unit - Order (Attacking unit) to Attack (Attacked unit)
            Else - Actions

To:

Code:
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                My_Variable Equal to 2
            Then - Actions
                Do Nothing
            Else - Actions
 

tbjl2006

New Member
Reaction score
5
So IKilledKenny that would be miss? And is their anyways to add buffs i cant find a action to do that.
 
Z

Zell

Guest
And is their anyways to add buffs i cant find a action to do that.
Use a dummy caster to cast a blank Inner Fire or Curse (depending on the type of buff you want (I.E. negative or positive)) with the buff you want.
 
Z

Zell

Guest
No, that would simply stop the unit from attacking twice the same target when a 2 is rolled.
You wouldn't even need that entire If... it's just a waste of space. You need to understand something tbjl. "A unit is attacked" trips when a unit attacks something, means it is already hit and the damage is already done. By using "Unit - Damage Target" you are only doing more damage. Since you've already hit you enemy, there is no easy way of doing a miss (the only one that comes to mind will not always work). I suggest just having this as an active skill, that way you can just "do nothing" for when it misses.
 

Arkan

Nobody rides for free
Reaction score
92
"A unit is attacked" trips when a unit attacks something, means it is already hit and the damage is already done.

This is not true, "a unit is attacked" triggers when the attacking unit starts his attack animation, it can be exploited by pressing stop really fast. Just wanted to point that out, seems many people are unaware of this.
 
L

lordpredator

Guest
Anyone have an easier way to do this? I want their to be a chance to get a critical hit, a chance to stun, a chance to miss, and a chance to hit regular.

maybe you can have it done without triggers at all.. you give all the units evation of X%, all the units critical hit and stun, with the chance you want (if you make a trigger like the one you did, the chance will be the same for all = 100 / QUANTITY CHANCES, in this example = 20%). The only donwside is the posibility a unit stunts and critical hit in the same attack... but if the chance of them is low... there is less posibilities it ocurrs... and i don´t see it as a problem at all... after all... if you critical hit something... you can stunt it too...

what i don´t remember is how to hide the abilities... but im pretty sure it can be done

LP
 

Sevion

The DIY Ninja
Reaction score
413
Anyone have an easier way to do this? I want their to be a chance to get a critical hit, a chance to stun, a chance to miss, and a chance to hit regular.

omg... make an ABILITY! You know how some units have a passive ability called Critical Strike? Well we just need to alter it to instead give stun then make another one with miss and we're done..... regular attack is..... well regular attack. This does take up a lot of space though. I would just add one ability that actually does nothing, A.K.A. a dummy spell/ability, and then do the actual stuff with triggers.
 
L

lordpredator

Guest
This does take up a lot of space though. I would just add one ability that actually does nothing, A.K.A. a dummy spell/ability, and then do the actual stuff with triggers.

but it can be archived only with passive skills... something like bash + drunken brawler and there you got all 4 types of attack (normal, stun, critical, and evade -miss-), what i don´t know is how to hide that abilities, but i think that they hide automatically when you learn more abilities because they are passive... someone know?

LP
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Varine Varine:
    I ordered like five blocks for 15 dollars. They're just little aluminum blocks with holes drilled into them
  • Varine Varine:
    They are pretty much disposable. I have shitty nozzles though, and I don't think these were designed for how hot I've run them
  • Varine Varine:
    I tried to extract it but the thing is pretty stuck. Idk what else I can use this for
  • Varine Varine:
    I'll throw it into my scrap stuff box, I'm sure can be used for something
  • Varine Varine:
    I have spare parts for like, everything BUT that block lol. Oh well, I'll print this shit next week I guess. Hopefully it fits
  • Varine Varine:
    I see that, despite your insistence to the contrary, we are becoming a recipe website
  • Varine Varine:
    Which is unique I guess.
  • The Helper The Helper:
    Actually I was just playing with having some kind of mention of the food forum and recipes on the main page to test and see if it would engage some of those people to post something. It is just weird to get so much traffic and no engagement
  • The Helper The Helper:
    So what it really is me trying to implement some kind of better site navigation not change the whole theme of the site
  • Varine Varine:
    How can you tell the difference between real traffic and indexing or AI generation bots?
  • The Helper The Helper:
    The bots will show up as users online in the forum software but they do not show up in my stats tracking. I am sure there are bots in the stats but the way alot of the bots treat the site do not show up on the stats
  • Varine Varine:
    I want to build a filtration system for my 3d printer, and that shit is so much more complicated than I thought it would be
  • Varine Varine:
    Apparently ABS emits styrene particulates which can be like .2 micrometers, which idk if the VOC detectors I have can even catch that
  • Varine Varine:
    Anyway I need to get some of those sensors and two air pressure sensors installed before an after the filters, which I need to figure out how to calculate the necessary pressure for and I have yet to find anything that tells me how to actually do that, just the cfm ratings
  • Varine Varine:
    And then I have to set up an arduino board to read those sensors, which I also don't know very much about but I have a whole bunch of crash course things for that
  • Varine Varine:
    These sensors are also a lot more than I thought they would be. Like 5 to 10 each, idk why but I assumed they would be like 2 dollars
  • Varine Varine:
    Another issue I'm learning is that a lot of the air quality sensors don't work at very high ambient temperatures. I'm planning on heating this enclosure to like 60C or so, and that's the upper limit of their functionality
  • Varine Varine:
    Although I don't know if I need to actually actively heat it or just let the plate and hotend bring the ambient temp to whatever it will, but even then I need to figure out an exfiltration for hot air. I think I kind of know what to do but it's still fucking confusing
  • The Helper The Helper:
    Maybe you could find some of that information from AC tech - like how they detect freon and such
  • Varine Varine:
    That's mostly what I've been looking at
  • Varine Varine:
    I don't think I'm dealing with quite the same pressures though, at the very least its a significantly smaller system. For the time being I'm just going to put together a quick scrubby box though and hope it works good enough to not make my house toxic
  • Varine Varine:
    I mean I don't use this enough to pose any significant danger I don't think, but I would still rather not be throwing styrene all over the air

      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