I have a script: https://villavu.com/forum/showthread.php?t=109817
It unlocks the safes at the Rogues Den.
When a safe is unlocked sucessfully two possibilities may occur:
- You get a gem.
- You get money.
How can I detect when the user gains XP? (for proggy).
What I tried:
Code:
// Checks for a new gem in inventory.
b := tabBackPack.waitForShift(5000);
// Checks for money gained.
b2 := findColorTolerance(x, y, 14868703, 924, 813, 933, 825, 1);
if b = true OR b2 = true
then xpGained := xpGained + 70;
Only the gem part works, the other check is not being detected.