Count Every Hit a unit does

blooman

New Member
Reaction score
16
I'm wonder how the game counts how much hits a unit does
In the game Rabbits VS sheeps a treant appears after every 15 hits
Im wondering if i need a variable to count and add 1 to the variable every time it attacks?
If not tell me howD:
 

Lord_Kakashi

The Wabbits are attacking
Reaction score
27
I'm wonder how the game counts how much hits a unit does
In the game Rabbits VS sheeps a treant appears after every 15 hits
Im wondering if i need a variable to count and add 1 to the variable every time it attacks?
If not tell me howD:

Either that or you could use the units custom value which is essentially a variable stored within the unit "object." It's an integer type and can be manipulated quite easily..

Just reset it to 0 when it becomes =<15 and make a treant :)
 

Kikac_NNGK

Well-Known Member
Reaction score
33
Trigger:
  • Trigger
    • Events
      • Unit - A unit Is attacked
    • Conditions
      • (Unit-type of (Attacked unit)) Equal to Sheep/Rabbit
    • Actions
      • Set Attack_Count = (Attack_Count + 1)
      • Trigger - Turn on Trigger 2 &lt;gen&gt;

Trigger:
  • Trigger 2
    • Events
    • Conditions
      • Attack_Count Equal to 15
    • Actions
      • Set Attack_Count = 0
      • Unit - Create 1 Treant for Neutral Hostile at (*Your Point*) facing Default building facing degrees
      • Trigger - Turn off (This trigger)


Note: The second trigger is Initally Off. Attack_Count is an Integer variable

Btw im not 100% sure that it'll work
 

cleeezzz

The Undead Ranger.
Reaction score
268
Trigger:
  • Add Events
    • Events
      • Map initialization
    • Conditions
    • Actions
      • Set TempGroup = (Units in (Playable map area))
      • Unit Group - Pick every unit in TempGroup and do (Actions)
        • Loop - Actions
          • Trigger - Add to Damage Detect &lt;gen&gt; the event (Unit - (Picked unit) Takes damage)
      • Custom script: call DestroyGroup(udg_TempGroup)

Trigger:
  • Add Events2
    • Events
      • Unit - A unit enters (Playable map area)
    • Conditions
    • Actions
      • Trigger - Add to Damage Detect &lt;gen&gt; the event (Unit - (Triggering unit) Takes damage)

Trigger:
  • Damage Detect
    • Events
    • Conditions
      • ((Damage source) is A Hero) Equal to True
    • Actions
      • Set Hit_Count[(Player number of (Owner of (Damage source)))] = (Hit_Count[(Player number of (Owner of (Damage source)))] + 1)
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • Hit_Count[(Player number of (Owner of (Damage source)))] Equal to 15
        • Then - Actions
          • Set Hit_Count[(Player number of (Owner of (Damage source)))] = 0
          • -------- Put whatever you want to happen every 15 hits here. --------
        • Else - Actions


more accurate than "Unit is attacked"
 

Lord_Kakashi

The Wabbits are attacking
Reaction score
27
Trigger:
  • Trigger
    • Events
      • Unit - A unit Is attacked
    • Conditions
      • (Unit-type of (Attacked unit)) Equal to Sheep/Rabbit
    • Actions
      • Set Attack_Count = (Attack_Count + 1)
      • Trigger - Turn on Trigger 2 &lt;gen&gt;

Trigger:
  • Trigger 2
    • Events
    • Conditions
      • Attack_Count Equal to 15
    • Actions
      • Set Attack_Count = 0
      • Unit - Create 1 Treant for Neutral Hostile at (*Your Point*) facing Default building facing degrees
      • Trigger - Turn off (This trigger)


Note: The second trigger is Initally Off. Attack_Count is an Integer variable

Btw im not 100% sure that it'll work

The problem with this is that it cannot be used by more than one person! if two people have the ability, they will both add to the attack_count as it isnt an array.

This solution is A LOT simpler, and you only need 1 trigger.
Trigger:
  • Treant Trigger
    • Events
      • Unit - A unit Is attacked
    • Conditions
      • (Unit-type of (Attacking unit)) Equal to Your Hero
      • (Unit-type of (Attacked unit)) Equal to (The unit you want to count towards the treant when attacked)
      • You can set as many conditions as you like
    • Actions
      • -------- // Now I&#039;m using the custom value. The advantedge of this is that it will work for multiple users \\ --------
      • Unit - Set the custom value of (Attacking unit) to ((Custom value of (Attacking unit)) + 1)
      • -------- // If/Then/Else comparison, with an integer comparison as the condition \\ --------
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Custom value of (Attacking unit)) Greater than or equal to 15
        • Then - Actions
          • Unit - Set the custom value of (Attacking unit) to 0
          • Unit - Create 1 Footman for (Owner of (Attacking unit)) at (Position of (Attacking unit)) facing Default building facing degrees
        • Else - Actions
          • Do nothing
 

Moon_Raven

New Member
Reaction score
8
Trigger:
  • Trigger
    • Events
      • Unit - A unit Is attacked
    • Conditions
      • (Unit-type of (Attacked unit)) Equal to Sheep/Rabbit
    • Actions
      • Set Attack_Count = (Attack_Count + 1)
      • Trigger - Turn on Trigger 2 &lt;gen&gt;

Trigger:
  • Trigger 2
    • Events
    • Conditions
      • Attack_Count Equal to 15
    • Actions
      • Set Attack_Count = 0
      • Unit - Create 1 Treant for Neutral Hostile at (*Your Point*) facing Default building facing degrees
      • Trigger - Turn off (This trigger)


Note: The second trigger is Initally Off. Attack_Count is an Integer variable

Btw im not 100% sure that it'll work

Why not use "Run Trigger" instead of Turn on? And you can still do it wih variables if you make an array for them, but still these other options are simplier.
 

blooman

New Member
Reaction score
16
The problem with this is that it cannot be used by more than one person! if two people have the ability, they will both add to the attack_count as it isnt an array.

This solution is A LOT simpler, and you only need 1 trigger.
Trigger:
  • Treant Trigger
    • Events
      • Unit - A unit Is attacked
    • Conditions
      • (Unit-type of (Attacking unit)) Equal to Your Hero
      • (Unit-type of (Attacked unit)) Equal to (The unit you want to count towards the treant when attacked)
      • You can set as many conditions as you like
    • Actions
      • -------- // Now I&#039;m using the custom value. The advantedge of this is that it will work for multiple users \\ --------
      • Unit - Set the custom value of (Attacking unit) to ((Custom value of (Attacking unit)) + 1)
      • -------- // If/Then/Else comparison, with an integer comparison as the condition \\ --------
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Custom value of (Attacking unit)) Greater than or equal to 15
        • Then - Actions
          • Unit - Set the custom value of (Attacking unit) to 0
          • Unit - Create 1 Footman for (Owner of (Attacking unit)) at (Position of (Attacking unit)) facing Default building facing degrees
        • Else - Actions
          • Do nothing
This is exactly what i was looking for ty
and rep to any1 who helped me:D
 

Tom Jones

N/A
Reaction score
437
The problem with this is that it cannot be used by more than one person! if two people have the ability, they will both add to the attack_count as it isnt an array.

This solution is A LOT simpler, and you only need 1 trigger.
Trigger:
  • Treant Trigger
    • Events
      • Unit - A unit Is attacked
    • Conditions
      • (Unit-type of (Attacking unit)) Equal to Your Hero
      • (Unit-type of (Attacked unit)) Equal to (The unit you want to count towards the treant when attacked)
      • You can set as many conditions as you like
    • Actions
      • -------- // Now I&#039;m using the custom value. The advantedge of this is that it will work for multiple users \\ --------
      • Unit - Set the custom value of (Attacking unit) to ((Custom value of (Attacking unit)) + 1)
      • -------- // If/Then/Else comparison, with an integer comparison as the condition \\ --------
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Custom value of (Attacking unit)) Greater than or equal to 15
        • Then - Actions
          • Unit - Set the custom value of (Attacking unit) to 0
          • Unit - Create 1 Footman for (Owner of (Attacking unit)) at (Position of (Attacking unit)) facing Default building facing degrees
        • Else - Actions
          • Do nothing
It may be simpler and shorter, however it is much much more inaccurate. If you cancel the attack, the trigger will still fire, the count will increase, however the unit hasn't actually attacked anything. The proper solution is cleeezzz's.
 
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