• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

[Solved] Items upgrading

Status
Not open for further replies.
Level 6
Joined
Aug 10, 2010
Messages
77
Guys how to set conditions or how to create it :) ... I wanna make this
I wanna Upgrade Fire item(Level1) to Fire item(Level2) i know i created level1 and level 2 but how to to upgrade? ... Maybe it will be good that i put my item level 1 to region and it will upgrade to other item(here it should be Level 2 item) :) ... I think this is easy but i do not have any idea how to create it :)
 
Level 28
Joined
Jan 26, 2007
Messages
4,789
Maybe it will be good that i put my item level 1 to region and it will upgrade to other item
Does this mean "if a unit enters a certain region, the level 1 item will upgrade to level 2"?
In that case, something like this should do:

  • Level Item
    • Events
      • Unit - A unit enters Region 000 <gen>
    • Conditions
      • ((Triggering unit) has an item of type Claws of Attack +12) Equal to True
    • Actions
      • Item - Remove (Item carried by (Triggering unit) of type Claws of Attack +12)
      • Hero - Create Claws of Attack +15 and give it to (Triggering unit)
 
Status
Not open for further replies.
Top