
Originally Posted by
ogustuce
ik where it messes up =p. my procedure steps are simple:
1) click the obelisk
2)right click the pouch image
3) left click the option 'Infuse-All' <--- thats where it screws up. i doesnt even hover the options (winch are Infuse , Infuse-10, Infuse-All, Infuse-X). when the options pops up, the mouse just move away then left click the pouch image again
Edit: ops you wrote:
Simba Code:
MouseBox(45, 68, 82, 116, 0);
Mouse(x, y, 5, 5, True);
wait(randomrange(200,500));
ChooseOption('infuse-all');
Wait(RandomRange(2500,3500));
Try:
Simba Code:
MouseBox(45, 68, 82, 116, 0);
wait(randomrange(200,500));//just incase you lagg
Mouse(x, y, 5, 5, False);//false
wait(randomrange(200,500));
ChooseOption('infuse-all');
Wait(RandomRange(2500,3500));
could you maybe post your script or the part where this is used to see if it is something else that is affecting it?