Jump to content
Frequently Asked Questions
  • Are you not able to open the client? Try following our getting started guide
  • Still not working? Try downloading and running JarFix
  • Help! My bot doesn't do anything! Enable fresh start in client settings and restart the client
  • How to purchase with PayPal/OSRS/Crypto gold? You can purchase vouchers from other users
  • Been scripting private colorbots with AHK and have noticed a few things


    Before

    Recommended Posts

    They sure can "read" the amount of inputs you give with your keys and match that with the outputs i guess. Let's say they grab random 10 input keys and match them with the output.

    But let's say I have this.

    NUMPAD6::
        i := 0
        Loop
        {
    	 GetKeyState, state, NUMPAD6
    	
    	 if state = U
    	 {
    	     break ;
    	 }
    		
    	 Sleep, 10
    		
     	 if Mod(i,3) = 0
    	 {
    	     Click right
    	 }
    	 else if Mod(i,3) = 1
    	 {	
    	     MouseMove, 0, 35, 1, R
    	 }
    	 else if Mod(i,3) = 2
    	 {	
    	     Click
    	 }
    	 i++
        }
    return
    

    I'm pretty sure AHK 'intercepts' my numpad 6 input and redirects it to either Click, click right, or mouse move down. Runescape, or anything on my computer, receives only the output, and knows nothing about the numpad 6 input.

    Link to comment
    Share on other sites

    But let's say I have this.

    NUMPAD6::
        i := 0
        Loop
        {
    	 GetKeyState, state, NUMPAD6
    	
    	 if state = U
    	 {
    	     break ;
    	 }
    		
    	 Sleep, 10
    		
     	 if Mod(i,3) = 0
    	 {
    	     Click right
    	 }
    	 else if Mod(i,3) = 1
    	 {	
    	     MouseMove, 0, 35, 1, R
    	 }
    	 else if Mod(i,3) = 2
    	 {	
    	     Click
    	 }
    	 i++
        }
    return
    

    I'm pretty sure AHK 'intercepts' my numpad 6 input and redirects it to either Click, click right, or mouse move down. Runescape, or anything on my computer, receives only the output, and knows nothing about the numpad 6 input.

    Hmmmm.. maight be true..

    Link to comment
    Share on other sites

    Archived

    This topic is now archived and is closed to further replies.

    ×
    ×
    • Create New...

    Important Information

    We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.