Need Help with Autofishing in Elder Scrolls Online

Ask gaming related questions (AHK v1.1 and older)
Ulfric Stormcloak
Posts: 39
Joined: 28 Apr 2017, 23:26

Need Help with Autofishing in Elder Scrolls Online

29 Apr 2017, 01:18

Anyone know how make a simple auto fisher for elder scrolls online ?

Thank you very much
User avatar
SnowFlake
Posts: 368
Joined: 28 Apr 2015, 05:41
Contact:

Re: Need Help with Autofishing in Elder Scrolls Online

04 May 2017, 01:20

Can you explain what keys/what you press or do to be able to fish?
:yawn:
Ulfric Stormcloak
Posts: 39
Joined: 28 Apr 2017, 23:26

Re: Need Help with Autofishing in Elder Scrolls Online

12 May 2017, 09:01

SnowFlake wrote:Can you explain what keys/what you press or do to be able to fish?
You just press E.
You press E to reel in the fish when it is caught
Than you press E again after like 1 second to throw in the fishing rod and start again.

But the hard part is a symbol comes up on ur screen when a fish is caught and you need press E at that exact time.
How can i make a script detect this symbol image ?
User avatar
SnowFlake
Posts: 368
Joined: 28 Apr 2015, 05:41
Contact:

Re: Need Help with Autofishing in Elder Scrolls Online

12 May 2017, 10:27

try to use imagesearch/pixelsearch to find the image then send the E key
:yawn:
Ulfric Stormcloak
Posts: 39
Joined: 28 Apr 2017, 23:26

Re: Need Help with Autofishing in Elder Scrolls Online

12 May 2017, 22:55

SnowFlake wrote:try to use imagesearch/pixelsearch to find the image then send the E key
Where do i find that ? i am dont know how to even start writing such a script.
Is their a template for this kind of script
User avatar
SnowFlake
Posts: 368
Joined: 28 Apr 2015, 05:41
Contact:

Re: Need Help with Autofishing in Elder Scrolls Online

13 May 2017, 14:24

here is an example:

Code: Select all

; https://autohotkey.com/docs/commands/ImageSearch.htm

IF NOT A_IsAdmin
{
   Run *RunAs "%A_ScriptFullPath%"
   ExitApp
}
SetWorkingDir, %A_ScriptDir%

CoordMode, Mouse, Client
CoordMode, Pixel, Client
CoordMode, ToolTip, Client
SetKeyDelay,50,50

Z::
ImageSearch, FoundX, FoundY, 40,40, 300, 300, C:\My Images\test.bmp

CoordMode Pixel  ; Interprets the coordinates below as relative to the screen rather than the active window.
ImageSearch, FoundX, FoundY, 0, 0, A_ScreenWidth, A_ScreenHeight, *Icon3 %A_ProgramFiles%\SomeApp\SomeApp.exe
if ErrorLevel = 2
    MsgBox Could not conduct the search.
else if ErrorLevel = 1
    MsgBox Icon could not be found on the screen.
else
    MsgBox The icon was found at %FoundX%x%FoundY%.
    send, {E}

Escape::
ExitApp
Return
:yawn:
Ulfric Stormcloak
Posts: 39
Joined: 28 Apr 2017, 23:26

Re: Need Help with Autofishing in Elder Scrolls Online

15 May 2017, 13:43

SnowFlake wrote:here is an example:

Code: Select all

; https://autohotkey.com/docs/commands/ImageSearch.htm

IF NOT A_IsAdmin
{
   Run *RunAs "%A_ScriptFullPath%"
   ExitApp
}
SetWorkingDir, %A_ScriptDir%

CoordMode, Mouse, Client
CoordMode, Pixel, Client
CoordMode, ToolTip, Client
SetKeyDelay,50,50

Z::
ImageSearch, FoundX, FoundY, 40,40, 300, 300, C:\My Images\test.bmp

CoordMode Pixel  ; Interprets the coordinates below as relative to the screen rather than the active window.
ImageSearch, FoundX, FoundY, 0, 0, A_ScreenWidth, A_ScreenHeight, *Icon3 %A_ProgramFiles%\SomeApp\SomeApp.exe
if ErrorLevel = 2
    MsgBox Could not conduct the search.
else if ErrorLevel = 1
    MsgBox Icon could not be found on the screen.
else
    MsgBox The icon was found at %FoundX%x%FoundY%.
    send, {E}

Escape::
ExitApp
Return
Thank you i will test this out
Ulfric Stormcloak
Posts: 39
Joined: 28 Apr 2017, 23:26

Re: Need Help with Autofishing in Elder Scrolls Online

15 May 2017, 14:00

Ulfric Stormcloak wrote:
SnowFlake wrote:here is an example:

Code: Select all

; https://autohotkey.com/docs/commands/ImageSearch.htm

IF NOT A_IsAdmin
{
   Run *RunAs "%A_ScriptFullPath%"
   ExitApp
}
SetWorkingDir, %A_ScriptDir%

CoordMode, Mouse, Client
CoordMode, Pixel, Client
CoordMode, ToolTip, Client
SetKeyDelay,50,50

Z::
ImageSearch, FoundX, FoundY, 40,40, 300, 300, C:\My Images\test.bmp

CoordMode Pixel  ; Interprets the coordinates below as relative to the screen rather than the active window.
ImageSearch, FoundX, FoundY, 0, 0, A_ScreenWidth, A_ScreenHeight, *Icon3 %A_ProgramFiles%\SomeApp\SomeApp.exe
if ErrorLevel = 2
    MsgBox Could not conduct the search.
else if ErrorLevel = 1
    MsgBox Icon could not be found on the screen.
else
    MsgBox The icon was found at %FoundX%x%FoundY%.
    send, {E}

Escape::
ExitApp
Return
Thank you i will test this out
Hi i changed the test image to my image but it doesnt seem to be working

i am not sure what this means FoundX, FoundY, 40,40, 300, 300,

I am trying to look for this fishing hook image on the screen

http://imgur.com/a/Rb15H

thxs
Z2K1
Posts: 1
Joined: 19 Aug 2017, 17:05

Re: Need Help with Autofishing in Elder Scrolls Online

19 Aug 2017, 17:42

Hey, have you figured out how to do this ?

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: No registered users and 32 guests