FarmRPG working auto fisher

Post gaming related scripts
FRPG
Posts: 1
Joined: 09 Apr 2023, 18:14

FarmRPG working auto fisher

Post by FRPG » 09 Apr 2023, 18:32

FarmRPG Bot; Fishing


Here is the code for a working auto fisher for FARMRPG game.
Tutorial
IF YOU DONT HAVE THE ONE CLICK SETTING BOUGHT IN FARM SUPPLY USE THE LAST SCRIPT


STEP ONE:
GOTO FARMRPG.COM

STEP TWO:
LOGIN -> GOTO DESIRED FISHING LOCATION

STEP THREE:
RUN THE SCRIPT -> CLICK OK

STEP FOUR:
****CLICK**** ON THE FARMRPG WINDOW ON YOUR BROWSER! (VERY IMPORTANT)

STEP FIVE:
FROM THE TOP LEFT CORNER OF THE OCEAN PRESS F1
FROM THE BOTTOM RIGHT CORNER PRESS F1 AGAIN

FROM THERE THE SCRIPT WILL START, IF IT DIDN'T THEN THAT MEANS YOUR PRESSED F1 WITHOUT CLICKING ON THE FARMRPG WINDOW IN YOUR BROSWER

All bait except Meal Worms

Code: Select all

xpos1=
xpos2=
SetMouseDelay,-1
SetBatchLines, -1
Process, Priority,, High
 
MsgBox Welcome to FarmRPG script. Please follow the tutorial for this to work!
f1::
If xpos1 =  
	{
	MouseGetPos, xpos1, ypos1 
	Return
	}
If xpos2 =  
	{
	MouseGetPos, xpos2, ypos2
	}

loop{
	PixelSearch, Px, Py, %xpos1%, %ypos1%, %xpos2%, %ypos2%, 0x3A3012, 5, Fast
		MouseClick, left, %Px%, %Py%
	PixelSearch, Px, Py, %xpos1%, %ypos1%, %xpos2%, %ypos2%, 0xFF0000, 5, Fast
		Py:=Py+15
		MouseClick, left, %Px%, %Py%
	sleep 100
	}	
 
f2::
Msgbox, You're all done fishing! Script has ended.
exitapp
Meal Worms

Code: Select all

xpos1=
xpos2=
SetMouseDelay,-1
SetBatchLines, -1
Process, Priority,, High
 
MsgBox Welcome to FarmRPG script. Please follow the tutorial for this to work!
f1::
If xpos1 =  
	{
	MouseGetPos, xpos1, ypos1 
	Return
	}
If xpos2 =  
	{
	MouseGetPos, xpos2, ypos2
	}

loop{
	PixelSearch, Px, Py, %xpos1%, %ypos1%, %xpos2%, %ypos2%, 0x3A3012, 5, Fast
		MouseClick, left, %Px%, %Py%
	sleep 100
	}	
 
f2::
Msgbox, You're all done fishing! Script has ended.
exitapp
For the people without the one click setting bought:

Code: Select all

xpos1=
xpos2=
SetMouseDelay,-1
SetBatchLines, -1
Process, Priority,, High
 
MsgBox Welcome to FarmRPG script. Please follow the tutorial for this to work!
f1::
If xpos1 =  
	{
	MouseGetPos, xpos1, ypos1 
	Return
	}
If xpos2 =  
	{
	MouseGetPos, xpos2, ypos2
	}

loop{
	PixelSearch, Px, Py, %xpos1%, %ypos1%, %xpos2%, %ypos2%, 0x3A3012, 5, Fast
		MouseClick, left, %Px%, %Py%
	PixelSearch, Px, Py, %xpos1%, %ypos1%, %xpos2%, %ypos2%, 0xFF0000, 5, Fast
		Py:=Py+15
		MouseClick, left, %Px%, %Py%
	PixelSearch, Px, Py, %xpos1%, %ypos1%, %xpos2%, %ypos2%, 0x808000, 5, Fast		
		MouseClick, left, %Px%, %Py%
	sleep 100
	}	
 
f2::
Msgbox, You're all done fishing! Script has ended.
exitapp
Comment for support I do NOT offer off site communication.


[Mod action: Topic moved from "Scripts and Functions (v2)" to "Scripts and Functions (v1) > Gaming Scripts (v1)" since this is v1 code for use in a game. Please post in the appropriate sub-forum.]

huykiu23
Posts: 3
Joined: 27 Mar 2023, 23:12

Re: FarmRPG working auto fisher

Post by huykiu23 » 31 May 2023, 02:05

hello, how i can stop this without exitapp

danny86
Posts: 1
Joined: 01 Jul 2023, 06:24

Re: FarmRPG working auto fisher

Post by danny86 » 01 Jul 2023, 06:26

@FRPG

Thank you very much for putting this together. Unfortunately for me it does not work, it auto clicks only when I manual hover the fish / button below.
When you say "One Click setting" farm upgrade, which one is that exactly ? (apologies, new player here).

Best Regards.

Post Reply

Return to “Gaming Scripts (v1)”