• 🏆 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!

Problem with items.

Status
Not open for further replies.
Level 14
Joined
Aug 8, 2010
Messages
1,022
Hello! I want to ask if there is a way to calculate the number of items from one type, carried by a hero? By "one type" i mean the items that are the same. For example : My hero has four items, called "A" and one item, called "B". How i can calculate the number of A items?

Help is appreciated with a +rep.
 
Level 4
Joined
Aug 5, 2011
Messages
99
  • Trigger
    • Events
      • shit happens
    • Conditions
    • Actions
      • Set integer = 0
      • For each (Integer A) from 1 to 6, do (Actions)
        • Loop - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • (Item-type of (Item carried by Blood Mage 0000 <gen> in slot (Integer A))) Equal to your_item
            • Then - Actions
              • Set integer = (integer + 1)
            • Else - Actions
 
Status
Not open for further replies.
Top