Results 1 to 9 of 9

Thread: [SoulSplit] Stocky's Simple Rocktail/Shark/Manta Fisher

  1. #1
    Join Date
    Jul 2014
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default [SoulSplit] Stocky's Simple Rocktail/Shark/Manta Fisher



    Tested for 12 Hours and Caught 9K Fish.
    Base Script:
    Hexless V2's Rocktail Fisher

    Edited By:
    stocky8


    Reminders:
    1. Face directly north or it will break. (Log out and Log back in to ensure true north)
    2. Have the fishing level required for at least Sharks.
    3. No bank pin, if so make insert it before hand so it doesnt break.
    4. Start in the harpoon spot closest to the bank.
    5. Make sure to have the camera zoomed all the way out and all the way up.
    6. Set Simba's target icon to your SoulSplit Client.
    7. This can be pretty buggy from computer to computer, I tested on 3 of my computers and 2/3 worked for 12 hours+
    8. Read the stuff in the first lines of the script to adjust setting any probably solve many of your errors


    Simba Code:
    program sFisher_fixed;

    ///////////////////////////////////////////////////////////////////////////
    {$i SRL-OSR/SRL.simba} //You may have to change this to: {$i SRL/SRL.simba}
    ///////////////////////////////////////////////////////////////////////////

    var rocktails, shark, manta, x , y , FishCount , FishCountPH ,InvsDone , InvsPH:integer;
    //Original Script By: Hexless V2
    //Edited By: stocky8
    //Settings to use;
    //Oldschool, 562 gameframe!
    //Brightness MAX
    //Camera: 0 || FARTHEST OUT!!
    //North || Log out and log back in to make sure its true North
    //Max Hieght of Camera
    //Version: 1.2
    //Start At Rocktails Fishing Spot Closest to the bank.
    Procedure FishNShiz;
    var x,X2,Y2 , y :integer;

    Begin
    wait(500);
    Mouse(255,258,1,1,false);
    MoveMouse(255,258 + 40);
    Sleep(180);
    ClickMouse2(Mouse_Left);
    Writeln('Fishing...');
    Sleep(85250);
    End;

    function checkSharks():boolean;
    begin
      shark := DTMFromString('mbQAAAHicY2VgYOhnZWDoBOKZQDwViKcB8TtGBobHQPwMiBmYGBi+AulZE/qBHEYUDFSKAZgwVEEBALFCCHU=');
      result:= findDTM(shark,x,y,548,260,739,520);
    end;

    function checkMantas():boolean;
    begin
      manta := DTMFromString('mbQAAAHicY2VgYHjGysDwBohfAPF1IL4FxOZMDAxaQGwPxAZA7ArEadnTgKoZUTBQKQZgwlAFBQBqvwcf');
      result:= findDTM(manta,x,y,548,260,739,520);
    end;

    function checkRocktails():boolean;
    begin
      rocktails := DTMFromString('mbQAAAHicY2VgYDjExMBwAoi3APFxIN4OxGcYGRgOAPFtIL4ExX5J/kDVjCiYlQETMGGoggIA6zkI6g==');
      result:= findDTM(rocktails,x,y,548,260,739,520);
    end;

    Procedure BankFish;
    var storeAll,openBank: integer;
    Begin
    storeAll := BitmapFromString(54, 7, 'meJxjYAAB95BYBhjjPxhA2LRAcPO' +
            'RrUOTQmbDZTFNoLUL8bgKzYVojvyPBKgliMt8OMDjQrRwRosFNMVo' +
            'PkI2H79KXLEMV4bfhXgSA5ERQTDKKIllYkwm0hDMGER2PCUuxBVTZ' +
            'LuQAQlQnlMAF4tDIQ==');
    openBank := BitmapFromString(69, 6, 'meJylU1sOwCAI43a7wH53/2Mwo4l' +
            'hlDZkEj4q8qqgu5vZdT9Dfco+/taRY6axhE/yNB2c0/GvxBA0YpWt' +
            'S/CK+WO3yV4GajobR0l2xiiy+NZSduycvYng25xOGk2i1l82HFxJM' +
            '9oZl7KQoDMUp5A2UD8aw2XbDLNNY3RWq7FDiFJL2KlyiPXfic4vRe' +
            'ks/w==');

    wait(1000);
    Mouse(588, 113,0,0,true);

    Wait(6250);
    Mouse(264,200,1,1,false);
    Sleep(250);
    findBitmapToleranceIn(openBank, x,y,100,100,368,335,145);
    wait(100);
    mmouse(x, y, 0,0);
    ClickMouse(x,y,MOUSE_LEFT);
    wait(2500);
    freeBitmap(openBank);

    //New Bank Sharks
    if checkSharks then
    begin
      findDTM(shark,x,y,548,260,739,520);
      mmouse(x,y,5,5);
      clickMouse(x,y,MOUSE_RIGHT);
      wait(100);
      findBitmapToleranceIn(storeAll, x,y,488,202,746,542,145);
      wait(350);
      mmouse(x,y,0,0);
      clickMouse(x,y,MOUSE_LEFT);
      freeDTM(shark);
      wait(1200);
    end;

    //New Bank Rocktails
    if checkRocktails then
    begin
      findDTM(rocktails,x,y,548,260,739,520);
      mmouse(x,y,5,5);
      clickMouse(x,y,MOUSE_RIGHT);
      wait(100);
      findBitmapToleranceIn(storeAll, x,y,488,202,746,542,145);
      wait(350);
      mmouse(x,y,0,0);
      clickMouse(x,y,MOUSE_LEFT);
      freeDTM(shark);
      wait(1200);
    end;

    //New Bank Manta Rays
    if checkMantas then
    begin
      findDTM(manta,x,y,548,260,739,520);
      mmouse(x,y,5,5);
      ClickMouse(x,y,MOUSE_RIGHT);
      wait(100);
      findBitmapToleranceIn(storeAll, x,y,488,202,746,542,145);
      wait(350);
      mmouse(x,y,0,0);
      clickMouse(x,y,MOUSE_LEFT);
      freeDTM(manta);
      wait(1200);
    end;
    InvsDone := InvsDone + 1;
    FishCount := FishCount + 27;
    freeBitmap(storeAll);
    End;
    Procedure GoFish;
    Begin
    wait(250);
    Mouse(669, 166,0,0,true);
    Writeln('Going To Fishing Spot!');
    Wait(6750);
    Writeln('At Fishing Spot!');
    wait(1000);
    End;
    Procedure Proggy;
    Begin
    ClearDebug;
    Writeln('Total Time: ' + TimeRunning);
    Writeln('Inventorys Fished : ' + IntToStr(InvsDone) + ' (' + IntToStr(InvsPH) + ' Per Hour)'); //Ignore the p/h
    Writeln('Fish Caught : ' + IntToStr(FishCount) + ' (' + IntToStr(FishCountPH) + ' Per Hour)'); //Ignore the p/h
    Writeln('Please leave any bugs on the thread!');
    End;
    begin
    //SetupSRL;         Not required
    //ActivateClient;   Not Required
    mouseSpeed := 25; //Need to set mouse speed or it will take ages to click
    //BankFish;
    //GoFish;
    Repeat
    FishNShiz;
    BankFish;
    GoFish;
    Proggy;
    Until(false);
    end.

    If you have any problems with the script please contact me! I will try my hardest to help you solve the problem!

    Need help with your script?
    Ehh, I'll try but I'm not that good at Simba/SRL currently. I've only known how to script for a week maximum.

    Thanks to the members on the IRC channel and KeepBotting for misc. support!

    Last edited by stocky8; 07-14-2014 at 02:24 AM.

  2. #2
    Join Date
    Mar 2012
    Posts
    96
    Mentioned
    0 Post(s)
    Quoted
    12 Post(s)

    Default

    Working good, theres something can you fix it not really needed but little bit annonying. While banking clicks scroll down button here u go with image:
    5V9WXcC.png

  3. #3
    Join Date
    Jul 2014
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by liklox View Post
    Working good, theres something can you fix it not really needed but little bit annonying. While banking clicks scroll down button here u go with image:
    5V9WXcC.png
    I know, It's really annoying. I guess I can try and fix it sometime.

  4. #4
    Join Date
    Jul 2014
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    This is still working guys! Make sure to contact me if you see any errors!

  5. #5
    Join Date
    Oct 2014
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nevermind I fixed the error and it seems to be working perfectly, thank you!
    Last edited by consense; 10-01-2014 at 08:08 PM.

  6. #6
    Join Date
    Oct 2014
    Posts
    29
    Mentioned
    1 Post(s)
    Quoted
    11 Post(s)

    Default

    -nevermind
    Last edited by ImNotSatan; 12-30-2015 at 04:03 PM.

  7. #7
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    Quote Originally Posted by ImNotSatan View Post
    Error: Duplicate declaration "AddDTM" at line 164
    has nothing to do with the script.

  8. #8
    Join Date
    Mar 2015
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    That spot doesn't give rocktails anymore?

  9. #9
    Join Date
    Mar 2015
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Does this still work ?

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •