;set lure is turned off unless you know how to set cordinates ;in the script to click in the appropriate palce ; ;Start script and wait for "Click Water" Make sure fishing pole ;has been put in spot 1 on your cast bar ; ;the secong click ( Hotspot ) is a bit more tricky ;you must find a spot on the ground that will be covered by the char body ;when it is not fishing and when it does the initial pull on Catch ;There is a small point where the char will pull back on the line then slightly lean forward in some way ;while continuing to reel in. ; ;How it works to better help ;It will cast ;It will then wait a few seconds then read the hot spot ;When you catch a fish the char will pull back and cover the hot spot ( if you have a good hot spot ) ;when the script sees the hot spot is covered it will hit the number 1 pulling on the line then pause for a second ;If it has not pulled the fish in by then the char will move forward slightly moving out ;of the hot spot and the script will wait for the next pull ;if you catch the fish the char body will return to its normal position covering the "hotspot" ;causing the script to cycle quickly through any left attempts then casting again. ;If you get the issue"Stopped fishing" Then the hotspot is usually being covered during reel in ;all the time instead of just oninitial pull, or the color changed so fast because of weather in the game ;that it read a false positive. This will happen from time to time. ;If you get the error that it does the first cast and reels in fine but never casts again then ;the hot spot is not being covered agin after it catches the fish ;adjusting sensitivity ;look for the end of the line in the script that is just below **************************** ;adjust the 20 up for more tolerance for places like Iron Peaks where the snow is blowing around ;bad part of doing that is it may not read when you cover the hotspot because the color search is to wide ;lower the number to be less tolerant. Do this if colors are vey close to the armor you wear. Problems ;with this would be the colors in the world change based on night/day/clouds and may cause false positives. ;Known good hotspots ;Dwarves, the cuff of the right hand before cast ;Human females, Nude right leg just a couple pixles above the knee cap before cast. ;Best way to set hot spot ;hit 1 wait for script to say cast ;after you cast hit escape so body goes back to normal ;click on the hot spot and a few second later the script will start qw = 0 lu = 0 lure = 0 ; 1 is on 0 is off WinWait, RIFT, IfWinNotActive, RIFT, , WinActivate, RIFT, WinWaitActive, RIFT, SLEEP, 5000 PixelGetColor, luree, 1189, 569 loop, { sleep, 100 ToolTip , Click fish spot GetKeyState, state, LButton if state = D { MouseGetPos, MouseX3, MouseY3 PixelGetColor, color3, %MouseX3%, %MouseY3% ToolTip sleep, 1000 break } } mx = %MouseX3% mx += 200 mxx = %MouseX3% mxx -= 200 loop, { ToolTip , Click hot spot GetKeyState, state, LButton if state = D { MouseGetPos, MouseX7, MouseY7 PixelGetColor, color7, %MouseX7%, %MouseY7% sleep, 3000 ToolTip break } } loop, { if ( lu >= 15 && lure = 1 ) { gosub, lure lu = 0 qw = 0 } if qw = 0 gosub, cast sleep, 4000 gosub, pull sleep, 1000 if lure = 1 lu += 1 } cast: Random, rand, %mx%, %mxx% MouseMove, %rand%, %MouseY3% Sleep, 100 if qw = 0 Send, {1} sleep, 500 if qw = 0 send {LButton} sleep, 2000 PixelGetColor, color7, %MouseX7%, %MouseY7% sleep, 300 return pull: ;ToolTip, qw %qw% lu = %lu% qw = 1 while qw <= 3 { gosub, pau ;******************************************************************************* ToolTip, qw %qw% lu = %lu% PixelSearch, Pxxx, Pyyy, %MouseX7%, %MouseY7%, %MouseX7%, %MouseY7%, %color7%, 20, Fast if ErrorLevel { qw += 1 ;sleep, 500 send, {LButton} sleep, 1000 } } qw = 0 return lure: PixelGetColor, lue, 1189, 569 If lue = %luree% { MouseMove, 1189, 569 sleep, 300 send {RButton} sleep, 1500 MouseMove, 1165, 561 sleep, 300 send {LButton} sleep, 4000 } return PAU: GetKeyState, state, F10 if state = D { loop, { GetKeyState, state, F11 if state = D { break } } } RETURN