HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

Isn't there a way to count number of items in a region?

03-29-2005, 10:38 PM#1
Fragmentation
I was suprised to see no "Count Items in Item Group" function for the Integer Comparison condition.

Is there a way to find out amount of items in a region? I am going through various item triggers and am falling short because I just do not see any credible item functions, and this is one of them.

Do I have to work with some kind of item group variable?
03-29-2005, 10:43 PM#2
Vexorian
Well you can't expect blizzard to do all the work for you. If we did so, modding would be death by now
Code:
Set CountVar=0
Pick Every item in (rect) and do Actions:
 - Set CountVar=CountVar + 1
03-30-2005, 03:28 PM#3
Fragmentation
Thanks