ecksfiftyone
New member
I searched, but couldn't find definitive answers.
I'd like to know how ranged values work in the XML / Xpath Modding
Example 1
I know basically what this does, but it's the ranged values I'm unsure about.
What will the effect be?
So I guess based on the answer above I'll know if the example below is the same thing?
Example 2
I know this should mean strictly that:
Tier 2 = 1%,
Tier 3 = 2%,
Tier 4 = 3%,
Tier 5 = 4%,
Tier 6 = 5%
What happens if the ranges dont match?
Example 3
I'd like to know how ranged values work in the XML / Xpath Modding
Example 1
Code:
<passive_effect name="EntityDamage" operation="perc_add" value="1,5" tier="2,6"/>
What will the effect be?
- Will this Add a random percent (Between 1 and 5) to "EntityDamage" for all items that are Tier 2 - 6? (So a Tier 2 could get 5% while a Tier 6 might get 1%?)
- Will this split the values evenly always giving a Tier 2 Item 1%, A Tier 3 Item 2% etc... Up to a Tier 6 Item at 5%? (So Tier 2 is always lower than Tier 3?)
- Will this just be random like # 1 but but just more likely to give the lower Tier a lower %?
So I guess based on the answer above I'll know if the example below is the same thing?
Example 2
Code:
<passive_effect name="EntityDamage" operation="perc_add" value="1,2,3,4,5" tier="2,3,4,5,6"/>
Tier 2 = 1%,
Tier 3 = 2%,
Tier 4 = 3%,
Tier 5 = 4%,
Tier 6 = 5%
What happens if the ranges dont match?
Example 3
Code:
<passive_effect name="EntityDamage" operation="perc_add" value="1,2,3" tier="2,3,4,5,6"/>
or
<passive_effect name="EntityDamage" operation="perc_add" value="1,5" tier="2,3,6"/>