Ok, so i've been mailing back and forth for help and thought i'd see if any1 can help me solve this. The code for it is below (Any idea's on helping it Find the fishing spot/Invo would be appreciated, Its a crayfisher). ever since i added SMART (using and following the tutorial) It has been giving me errors.
Parts that are giving me errors are in BOLD ![]()
(It doesn't like the := Part, I tried getting rid of the : but then it doesn't like something else)
Code:program CrayFisherPro; {.include SRL/SRL/Misc/SMART.scar} {.include/SRL/SRL.scar} //please Login before starting the script //please remember to click the crosshair to select the window of your- //-Runescape client. //please put crayfish Cage in the first slot of your inventory. var i,x,y: Integer; const FishSpot3 := 10590612; SmartWorld := 15; // Which World/Server do you want to use? SmartMembers := False; // Is it a Members World? SmartSigned := True; // Signed/UnSigned Client? SmartSuperDetail := False; // Use Super Detail? begin Smart_Server := SmartWorld; Smart_Members := SmartMembers; Smart_Signed := SmartSigned; Smart_SuperDetail := SmartSuperDetail; SetupSRL; i:= 0; repeat If(FindColor(x,y,FishSpot3,0,0,600,600))then begin Writeln('Found Fishing spot #3'); MoveMouseSmoothEx(x,y +random(0),20,40,45,25,20); wait(100+random(10)); ClickMouse(x,y,false); end else Writeln('unable to find fishing spot #3'); i:= i + 1; until(i >=10); end.



Reply With Quote







