Guides

  1. 1
    • Master Rayzer!

    Warps can be idled on level 4-3 or 6-2, where the cursor is on the target at the start. The AHK script I used is below. F1 will start and stop the script while in game. F10 at any time will break the script if you need it to stop. This theoretically should warp about 2 times per second, so 13 hours of idling for 100k.

    f10::reload
    
    RemoveToolTip:
    ToolTip
    return
    
    #IfWinActive ahk_exe RAYZE.exe
    ~F1::
        toggleRZ := !toggleRZ
    	if (toggleRZ) { // You can remove this whole section if you don't want a tooltip
    		ToolTip, On
    	}
    	else if (!toggleRZ) {
    		ToolTip, Off
    	}
    	SetTimer, RemoveToolTip, -600 // Tooltip section ends here
    	
    
    	sleep 100
    	RZ1:
        if toggleRZ {
    		Click 
    		sleep 60
    		Send R
    		SetTimer, RZ1, -340
        }
    	return