Some basic questions

Kazuga

Let the game begin...
Reaction score
110
Ok got some smaller problems that I need help with, and I would love if you could take a small amount of your time and help me solve them. <3

1: In the trigger editor, where can I find the "Unit - Damage unit x amount"? Can't seem to find neither that nor a way to lower/increase a units current health.

2: In the trigger editor, I would in the beginning of my map create a certain unit for all active players at the position of certain structure, all players have this structure and only one of them, but in an attempt to loop this I can't seem to figure the "Player Number" part that refers to the looped player.

3: In the warcraft 3 editor there is in the main window to the left where you choose what to put out in unit/terrain editor etc, a small window which displays the model of the current selected doodad/unit/effect, is there any such thing in the SC2 editor? (It's kind of hard to pick out what effects and units to use when you can't see them. :))

That's all for now, I think... Thank you for your time and hope you can help me. :thup:
 

The Undaddy

Creating with the power of rage
Reaction score
55
1. You can't - you will have to create a function to do it. I know N(O.O)B has posted one in one of the threads here, I'll quote him if I find it.

2.
Trigger:
  • Pick Each Unit In Unit Group
    • Unit Group: Units In Region Matching Condition
      • Unit Type: Unit type of the structure
      • Region: Entire Map
      • Player: counter &lt;-- where counter is the integer variable you are using for the loop
      • Unit Filter: Excluded: Missile, Dead, Hidden
      • Count: Any Amount


3.I think that is non-existent too.
 

Flare

Stops copies me!
Reaction score
662
1: In the trigger editor, where can I find the "Unit - Damage unit x amount"? Can't seem to find neither that nor a way to lower/increase a units current health.
It must be done via Effects - there is an action (under Environment) called Create Effect on Unit (From Unit).

What you can do with that to execute the desired damage would be have 3 (more or less as needed) Damage Effects that do a varying amount of damage (incrementing by *10 for each one, so Damage Effect (1) will do 1 damage, Damage Effect (2) will do 10, and (3) will do 100)

From there, just calculate the amount of 1's, 10's and 100's (and so on) required to execute to deal the amount of damage you want e.g. divide DamageValue by 100 and convert the result to an integer (to remove the decimal component) to get the number of times to execute Damage Effect (3), divide DamageValue Mod100 by 10 to get the number of times to execute Damage Effect (2), and finally do DamageValue Mod10 (assuming SC2 has a modulo function) to find the number of times to execute Damage Effect (1)

I don't have access to the editor at the moment, but it might be a good idea to save this as an Action Definition (I think that's what it's called) to allow you to create a function designed specifically for dealing damage... at least, I think that's what Action Definitions are supposed to do, I didn't spend too much time looking at them ;)

EDIT: Untested, but I think it should work
Trigger:
  • Damage Unit
    • Options: Action
    • Return Type: (None)
    • Parameters
      • Source = No Unit &lt;Unit&gt;
      • Target = No Unit &lt;Unit&gt;
      • Amount = 0 &lt;Integer&gt;
    • Grammar Text: Cause Source to deal Amount damage to Target
    • Hint Text: Allows for dealing damage with a single function
    • Custom Script Code
    • Local Variables
      • LoopInt = 0 &lt;Integer&gt;
      • Hundreds = 0 &lt;Integer&gt;
      • Tens = 0 &lt;Integer&gt;
      • Ones = 0 &lt;Integer&gt;
    • Actions
      • Variable - Set Hundreds = (Amount / 100)
      • Variable - Set Tens = ((Amount mod 100) / 10)
      • Variable - Set Ones = (Amount mod 10)
      • General - For each integer LoopInt from 1 to Hundreds with increment 1, do (Actions)
        • Actions
          • Environment - Execute Marine - Guass Rifle (Damage) on Target from Source
      • General - For each integer LoopInt from 1 to Tens with increment 1, do (Actions)
        • Actions
          • Environment - Execute Marine - Guass Rifle (Damage) on Target from Source
      • General - For each integer LoopInt from 1 to Ones with increment 1, do (Actions)
        • Actions
          • Environment - Execute Marine - Guass Rifle (Damage) on Target from Source

I got lazy with the effects utilized :p

Trigger:
  • Damage Unit
    • Source: No Unit
    • Amount: 0
    • Target: No Unit

is your final result, which is pretty neat. I don't know if it makes a difference whether you use an Action Definition or a Function - they appear to be pretty much the same, at first glance.
 

Attachments

  • Damage Unit action definition.png
    Damage Unit action definition.png
    201.4 KB · Views: 235

Frozenwind

System maker
Reaction score
99
3)
Yup it's hard. The only way to do it is going to the data editor and walking through all models (which is even a pain, as you need 3 (or 5 if you want it in previewer - with animation) clicks in sc2 compared to 1 in wc3. Also, it doesn't display variations...
 

Kazuga

Let the game begin...
Reaction score
110
3)
Yup it's hard. The only way to do it is going to the data editor and walking through all models (which is even a pain, as you need 3 (or 5 if you want it in previewer - with animation) clicks in sc2 compared to 1 in wc3. Also, it doesn't display variations...
Hm... Well let's hope Blizzard has some plans to update it and add this later on... :(

Thanks Flare and The Undaddy! :) Gonna try those triggers out asap! <3
 
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