|
likeoo Newbie
Joined: 25 Jan 2017 Posts: 1
|
Posted: Mon Aug 28, 2017 10:32 am
building an autoroller |
Not sure how to capture the stats. i dont need to roll specific stats to be something, instead i can just look for say 2 perfects and 2 heroics. How would I setup something to scan all 8 slots and stop when I hit the desired number of values?
|
|
|
|
shalimar GURU
Joined: 04 Aug 2002 Posts: 4691 Location: Pensacola, FL, USA
|
Posted: Mon Aug 28, 2017 1:06 pm |
Well you will want a trigger, but without seeing what the game gives you it is hard to go on.
#TR {Strength: (%w) Intelligence: (%w)} {
#LOCAL $perfect $heroic
#IF (%1=perfect) {#ADD $perfect 1}
#IF (%2=perfect) {#ADD $perfect 1}
#IF (%1=heroic) {#ADD $heroic 1}
//ectetera
#IF (($perfect>=2) AND ($heroic>=2)) {accept}
} |
|
_________________ Discord: Shalimarwildcat |
|
|
|
|
|