Help me With engineer upgrade item

Love-Nature

New Member
Reaction score
7
I want to make an item like Aghanim's Scepter from DotA, for who doesnt play DotA this item upgrades your ultimate by using the engineer upgrade ability into the item, i can do it with triggered abilities also but problem is that there are 20 heroes and i dont know how to do it. In DotA it replaces the item with another for the Hero so i will have to create a lot of items for each hero ability to improve.
How can i do it triggering?
I Want to know it before i waste another hour creating it and then i dont know to finish it and remove everything again -.-
 

GFreak45

I didnt slap you, i high 5'd your face.
Reaction score
130
thats not how you do it, when you pick it up it adds the upgrade ability to the unit, not the item, that way you just make a ton of abilities and 1 trigger
 

Love-Nature

New Member
Reaction score
7
Mmm i think im getting what you said but im really confused today, i really need some better explain for this...
 

GFreak45

I didnt slap you, i high 5'd your face.
Reaction score
130
this is the action im talking about:
Trigger:
  • Unit - Add Upgrade Ability to triggering unit

that should work to add and remove the ability and it will upgrade them according to the ability, you can save the ability that you want to add based on the unit type in a variable
 

Love-Nature

New Member
Reaction score
7
Yeah but i will need to copy the ultimate abilityes for the upgrade one and then create engineers upgrade abilityes and then trigger it to give to the hero type because engineer upgrade doesnt upgrade ultimates automatically.I DONT KNOW HOW TO MAKE IT.
 

GFreak45

I didnt slap you, i high 5'd your face.
Reaction score
130
there are very few things it can do, a damage increase/decrease mana increase/decrease, things like that, so what you do is you set the damage of the ability, set the tooltip to display the damage the way it does normally (with this stuff <%adfgfd>) then when the upgrade changes it, the tooltip will change as well.

i think, not very versed with it
 

KaerfNomekop

Swim, fishies. Swim through the veil of steel.
Reaction score
613
Make 20 different EU abilities, and 20 different Aghanim's Scepters. When a unit acquires an Aghanim's Scepter (Base), check if it is of an upgradable unit-type. If so, replace the acquired item with the relevant Aghanim's Scepter (Hero).


I was planning on making a tut on Engineering Upgrade, but I realised I don't know enough about it yet thanks to Channel.
 

KaerfNomekop

Swim, fishies. Swim through the veil of steel.
Reaction score
613
Not with Engineering Upgrade. Fact: When you upgrade a Channel ability into another normal ability like Storm Bolt, a lot of the effects are messed up.
 

Love-Nature

New Member
Reaction score
7
My real problem is to give the unit the exactly engineer upgrade, i never said i need to change channel ability with another ... ability just upgrades and i can do it throught triggers too, but i still cant give the exactly upgrade ability to the unit,because there will be a lot of upgr abilityes i will have to make anyway.
 

KaerfNomekop

Swim, fishies. Swim through the veil of steel.
Reaction score
613
You don't give an EU ability to the unit. You replace the item with one that has the needed EU ability on it beforehand.
 

Love-Nature

New Member
Reaction score
7
You don't give an EU ability to the unit. You replace the item with one that has the needed EU ability on it beforehand.
Ye just as i said in my first post but how can i do it triggering?Please make me an example so i can understand it once and for all :s
 

KaerfNomekop

Swim, fishies. Swim through the veil of steel.
Reaction score
613
Trigger:
  • Aghani
    • Events
      • Unit - A unit Acquires an item
    • Conditions
      • (Item-type of (Item being manipulated)) Equal to Aghanim&#039;s Scepter (Base)
    • Actions
      • Item - Remove (Item being manipulated)
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Unit-type of (Triggering unit)) Equal to Shadow Demon
        • Then - Actions
          • Hero - Create Aghanim&#039;s Scepter (Shadow Demon) and give it to (Triggering unit)
        • Else - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • (Unit-type of (Triggering unit)) Equal to Frost Shaman
            • Then - Actions
              • Hero - Create Aghanim&#039;s Scepter (Frost Shaman) and give it to (Triggering unit)
        • Else - Actions

In this case, Aghanim's Scepter (Base) has no EU. Aghanim's Scepter (Shadow Demon) has an EU that affects the Shadow Demon only, and Aghanim's Scepter (Frost Shaman) has an EU that affects the Frost Shaman only. I presume you know how to manipulate your EUs in this case.
 

Inflicted

Currently inactive
Reaction score
63
I don't know if your understanding what he means, i'l try explain as simply as possible.

20 Ult's = 21 Items :
1 base item as the purchasable/dummy item
And once that dummy item is purchased it is replaced by the Custom Item which changes the ult.

The trigger used above is a good example of this usage.

Just add multiple conditions, (IF/ELSE statements ) for the type of unit recieving the dummy item.

Trigger:
  • Trigger:
    • Actions
    • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
    • If - Conditions
    • (Unit-type of (Triggering unit)) Equal to Frost Shaman
    • Then - Actions
    • Hero - Create Aghanim&#039;s Scepter (Frost Shaman) and give it to (Triggering unit)


that must be repeated 20 times, changeing the "(Unit-type of (Triggering unit)) Equal to Frost Shaman" to the different types of units.


The individual 'custom'/non-base items will contain the Engineer Upgrade.
 

Love-Nature

New Member
Reaction score
7
Finally an example trigger :D all i ever needed.Thank you all for help.

Solved

Another quick question, for triggered spells i just have to add more ability levels?

ie.

lvl 1 deal damage 100
lvl 2 deal damage 200
lvl 3 deal damage 300

ENGINEER UPGRADE

lvl 4 deal damage 150
lvl 5 deal damage 300
lvl 6 deal damage 500

Is it right?
________________________________________

Another example :

Trigger:
  • Steal Item
    • Events
      • Unit - A unit Begins casting an ability
    • Conditions
      • (Ability being cast) Equal to (==) Steal Item
    • Actions
      • Set CU_Attributes = (Casting unit)
      • Set TA_Attribute = (Target unit of ability being cast)
        • Multiple FunctionsIf (All Conditions are True) then do (Then Actions) else do (Else Actions)
          • If - Conditions
            • (Random integer number between 1 and 100) Less than or equal to (&lt;=) (40 + ((Level of Steal Item for CU_Attributes) x 10))
          • Then - Actions
            • Hero - Drop the item from slot (Random integer number between 1 and 6) of TA_Attribute
            • Hero - Give (Last dropped item) to CU_Attributes
            • Trigger - Run FloTex Caster &lt;gen&gt; (checking conditions)
            • Trigger - Run FloTex Target &lt;gen&gt; (checking conditions)
          • Else - Actions
            • Trigger - Run FloTex Caster F &lt;gen&gt; (checking conditions)
            • Trigger - Run FloTex Target F &lt;gen&gt; (checking conditions)


For upgrade it i just create another trigger and change the ability being cast?
 

KaerfNomekop

Swim, fishies. Swim through the veil of steel.
Reaction score
613
1). If you trigger the learning of the ability, then yes, it works.
2). Yes. And of course, modify the effects to suit the upgrades.
 

Love-Nature

New Member
Reaction score
7
1). Like this ?
Trigger:
  • Unit - Set level of Ability for (Last created unit) to 1/2/3/4/5 etc...



Time Out
Events
Unit - A unit Starts the effect of an ability
Conditions
Multiple ConditionsOr - Any (Conditions) are true
Conditions
(Ability being cast) Equal to (==) Time Out
(Ability being cast) Equal to (==) Time Out Upgr

Actions
Multiple FunctionsIf (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Level of Time Out for (Triggering unit)) Equal to (==) 1
Then - Actions
Unit - Set level of Time Out for (Last created unit) to 1
Multiple FunctionsIf (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Level of Time Out for (Triggering unit)) Equal to (==) 2
Then - Actions
Unit - Set level of Time Out for (Last created unit) to 2

Multiple FunctionsIf (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Level of Time Out for (Triggering unit)) Equal to (==) 3
Then - Actions
Unit - Set level of Time Out for (Last created unit) to 3

Multiple FunctionsIf (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Level of Time Out for (Triggering unit)) Equal to (==) 4
Then - Actions
Unit - Set level of Time Out for (Last created unit) to 4
Multiple FunctionsIf (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Level of Time Out for (Triggering unit)) Equal to (==) 5
Then - Actions
Unit - Set level of Time Out for (Last created unit) to 5

-------- ---------------Aghanim's Upgrade--------------- --------

Multiple FunctionsIf (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Level of Time Out for (Triggering unit)) Equal to (==) 6
Then - Actions
Unit - Set level of Time Out for (Last created unit) to 6
Multiple FunctionsIf (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Level of Time Out for (Triggering unit)) Equal to (==) 7
Then - Actions
Unit - Set level of Time Out for (Last created unit) to 7
Multiple FunctionsIf (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Level of Time Out for (Triggering unit)) Equal to (==) 8
Then - Actions
Unit - Set level of Time Out for (Last created unit) to 8
Multiple FunctionsIf (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Level of Time Out for (Triggering unit)) Equal to (==) 9
Then - Actions
Unit - Set level of Time Out for (Last created unit) to 9
Multiple FunctionsIf (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Level of Time Out for (Triggering unit)) Equal to (==) 10
Then - Actions
Unit - Set level of Time Out for (Last created unit) to 10

Replacing last created unit with Triggering Unit
 

KaerfNomekop

Swim, fishies. Swim through the veil of steel.
Reaction score
613
Wouldn't this be much faster?
Trigger:
  • Unit - Set level of Time Out for (Last created unit) to (Level of (Time Out for (Triggering unit))


I believe you're getting it wrong. Engineering Upgrade is supposed to interchange two abilities, not increase levels.
 
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