I made an AHK script if you don't have access to scripts that does the new infinite mana exploit. Change the coordinates to your own respective screen resolution, this is for 1080p.
Gameplay of me abusing the exploit:
Enjoy :)
Code:
; Specify the coordinates where you want to click
x1 := 1087
y1 := 1001
x2 := 678
y2 := 840
Loop 100
{
; Click at the first coordinate using the right mouse button
Click right %x1%, %y1%
Sleep 5
; Click at the second coordinate using the left mouse button
Click %x2%, %y2%
Sleep 5
}
|
|
Enjoy :)