11-15-2012, 05:26 AM
As anyone know, a single MORE1 can be distingued in 2 parts: MORE1L and MORE1H
I have an item that store "MORE1" tags from many itens, and I need to separate these tags into MORE1L and MORE1H. How I can do this using custom formulas?
its something like this:
I need separate these tags into L / H like the MORE1, how I can do this?
PS: obviously the easy way is store it directly on the tag like TAG.ITEM1.Durability=<MORE1>,<MORE1L>,<MORE1H>
but it doesnt make sense as I can store a simple and shorter tag to calculate the value later only when its necessary. For 20.000+ items with more than 100.000 tags this thing will make a big difference
I have an item that store "MORE1" tags from many itens, and I need to separate these tags into MORE1L and MORE1H. How I can do this using custom formulas?
its something like this:
Code:
[ITEMDEF i_lol]
NAME=lol
TAG.ITEM1.Durability="1741087418" //this is the more1 stored on a tag
TAG.ITEM2.Durability="1741087418"
TAG.ITEM3.Durability="1741087418"
TAG.ITEM4.Durability="1741087418"
PS: obviously the easy way is store it directly on the tag like TAG.ITEM1.Durability=<MORE1>,<MORE1L>,<MORE1H>
but it doesnt make sense as I can store a simple and shorter tag to calculate the value later only when its necessary. For 20.000+ items with more than 100.000 tags this thing will make a big difference