Page 2 of 3 FirstFirst 123 LastLast
Results 26 to 50 of 60

Thread: Kipjes DungFarmer

  1. #26
    Join Date
    Dec 2011
    Location
    The Netherlands
    Posts
    1,631
    Mentioned
    47 Post(s)
    Quoted
    254 Post(s)

    Default

    You should definately follow this tutorial and use Auto Color Aid: http://villavu.com/forum/showthread.php?t=71074
    By using Color Tolerance Speed 2, you can detect the farming patch incredibly accurate. I suggest you to follow that tutorial and to pick the colors from the patch from about 5 different worlds, as the colors on RuneScape change a bit in different worlds, or after logging out. Once you have picked those colors I suggest you to make a procedure like this
    Simba Code:
    procedure Test;
    var
      X, Y: Integer;

    begin
      ClickNorth(0);  // This puts the angle on north and moves the rs screen up to the maximum
      ColorToleranceSpeed(2); // Lets Simba know that you are using CTS 2
      SetColorSpeed2Modifiers(0.50, 0.75); // Modifiers, you get these from Auto Color Aid
      if FindObjTPA(X, Y, Color, Tol, CTS, ObjWidth, ObjHeight, MinimumCountofColors, [UptextArray]) then //Finds the object, fill it in with your details
        begin
          MMouse(X, Y, 2, 2); //Moves the mouse to the object
          Wait(25 + Random(100)); //Waits a bit like a human
          ClickMouse2(1); // Right clicks
        end else
        begin
          WriteLn('We haven`t been able to find the farming patch'); // if it doesn't find the object it will write in this line
        end;
    end;

    Example of the FindObjTPA:
    Simba Code:
    FindObjTPA(X, Y, 12345, 12, 2, 20, 20, 300, ['atch', 'Patch']

    This will put RuneScape at the same angle for everyone, which will make the detection easier. By using auto color aid and CTS 2 you can detect the patch very accurately.

    Considering your name I would say you are Dutch, I'm Dutch aswell, you can add me on MSN if you have any questions :P

    Script source code available here: Github

  2. #27
    Join Date
    Nov 2011
    Location
    Netherlands
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Quote Originally Posted by Jokester View Post
    Mine used the patch in the main room and bought the seeds and ran continuously until I stopped it. There were a bunch of bugs that slowed it down and takes awhile for it to correct itself so I never released it. I might give you some competition soon
    I wish you the best luck sir haha
    I was away for a long time, but i'm back!

  3. #28
    Join Date
    Nov 2011
    Location
    Netherlands
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Quote Originally Posted by J J View Post
    You should definately follow this tutorial and use Auto Color Aid: http://villavu.com/forum/showthread.php?t=71074
    By using Color Tolerance Speed 2, you can detect the farming patch incredibly accurate. I suggest you to follow that tutorial and to pick the colors from the patch from about 5 different worlds, as the colors on RuneScape change a bit in different worlds, or after logging out. Once you have picked those colors I suggest you to make a procedure like this
    Simba Code:
    procedure Test;
    var
      X, Y: Integer;

    begin
      ClickNorth(0);  // This puts the angle on north and moves the rs screen up to the maximum
      ColorToleranceSpeed(2); // Lets Simba know that you are using CTS 2
      SetColorSpeed2Modifiers(0.50, 0.75); // Modifiers, you get these from Auto Color Aid
      if FindObjTPA(X, Y, Color, Tol, CTS, ObjWidth, ObjHeight, MinimumCountofColors, [UptextArray]) then //Finds the object, fill it in with your details
        begin
          MMouse(X, Y, 2, 2); //Moves the mouse to the object
          Wait(25 + Random(100)); //Waits a bit like a human
          ClickMouse2(1); // Right clicks
        end else
        begin
          WriteLn('We haven`t been able to find the farming patch'); // if it doesn't find the object it will write in this line
        end;
    end;

    Example of the FindObjTPA:
    Simba Code:
    FindObjTPA(X, Y, 12345, 12, 2, 20, 20, 300, ['atch', 'Patch']

    This will put RuneScape at the same angle for everyone, which will make the detection easier. By using auto color aid and CTS 2 you can detect the patch very accurately.

    Considering your name I would say you are Dutch, I'm Dutch aswell, you can add me on MSN if you have any questions :P
    Cool thanks bro!
    Yes im dutch
    Yeh im kinda new to scripting, have to post alot of threads in the help section haha.
    Ive been using DTM since they easy, was looking into findObj before but it didnt work out (looked at other peoples scripts)

    Edit: What is ur msn? shoot me a PM
    Edit1: Found :P
    Last edited by bas; 04-30-2012 at 04:41 PM.
    I was away for a long time, but i'm back!

  4. #29
    Join Date
    Dec 2011
    Posts
    44
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nice release will test it out :PD
    To Do List!
    Reach 100 posts.
    Learn Basic Scripting
    Make First Script.
    Make Flawless Public Script

  5. #30
    Join Date
    Feb 2012
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    you should to other seeds so we can do lower levels

  6. #31
    Join Date
    Nov 2011
    Location
    Netherlands
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Thanks botsalot123.
    Will remake the whole script with colortolorance
    More seeds will be supported soon
    I was away for a long time, but i'm back!

  7. #32
    Join Date
    Dec 2011
    Location
    The Netherlands
    Posts
    1,631
    Mentioned
    47 Post(s)
    Quoted
    254 Post(s)

    Default

    Fix the standards:
    Example
    Simba Code:
    Procedure CleaningHerbs;
    Begin
      GrimyHerbsDTM := DTMFromString('mGQAAAHicY2RgYAhiYmBIYmRgMDHUZWAG8oFMBgYAFKUBTw==');
      GameTab(Tab_Inv);
      if FindDTM(GrimyHerbsDTM, x, y, MIX1, MIY1, MIX2, MIY2) then
        Begin
          MMouse(X, Y + 3, 0, 0);
          wait(randomrange(400,450));
          ClickMouse2(true);
          Writeln ('Found Grimy Magebane, Cleaning!')
          wait(randomrange(6000,7000));
          FreeDTM(GrimyHerbsDTM);
        end else
        repeat
          Writeln ('Cant find Grimy Magebane, Trying again!')
          wait(randomrange(1000,1500));
       until FindDTM(GrimyHerbsDTM, x, y, MIX1, MIY1, MIX2, MIY2);

       MMouse(X, Y + 3, 0, 0);
       wait(randomrange(400,460));
       ClickMouse2(true);
       Writeln ('Found Grimy Magebane, Cleaning!')
       wait(randomrange(6000,7000));
    end;

    Procedure HighAlchItem;
    Begin
      HighAlchDTM := DTMFromString('mggAAAHicY2NgYHBmYmDwBGJ/IA4C4lAoO4ERguOAOBGIo6H0xV0SYPzqdghDfzkrQ+Kp7wzrpvAysALNwoYZcWAIAABJeA4k');
      GameTab(Tab_Magic);
      wait(randomrange(400,500));
      if FindDTM(HighAlchDTM, x, y, MIX1, MIY1, MIX2, MIY2) then
        Begin
          GameTab(Tab_Magic);
          wait(randomrange(100,150));
          MMouse(X, Y + 3, 0, 0);
          If WaitUptextMulti(['High', 'Alchemy'], 500) Then
            Begin
              Writeln ('Found High Alch spell')
              ClickMouse2(true);
              wait(randomrange(150,200));
            end;
        end;
      Gametab(Tab_inv);
    end;

    Procedure AlchingTheHerbs;
    Begin
      CleanHerbDTM := DTMFromString('mLgAAAHicY2JgYAhiYmAIBeJERgaGOCDWN9Fg0NCTZ2AGyoEwIxQzMAAASwgCdw==');
      wait(randomrange(400,500));

      if FindDTM(CleanHerbDTM, x, y, MIX1, MIY1, MIX2, MIY2) then
        begin
          wait(randomrange(100,150));
          MMouse(X, Y + 3, 0, 0);
          Writeln ('Found Clean herb, Clicking.')
          wait(randomrange(100,150));
          ClickMouse2(true);
          wait(randomrange(150,200));
          GameTab(Tab_Inv);
          wait(randomrange(400,500));
          GameTab(Tab_Inv);
        end;
    end;

    procedure MainLoop;
    begin
      repeat
        begin
          GameTab(Tab_Inv);
          if (not FindDTM(BuyMagebaneSeedsDTM, x, y, MIX1, MIY1, MIX2, MIY2)) then
            begin
              CreateGateStone;
              DropGateStone;
              HomeTeleport;
              TradeSmuggler;
              BuyMagebanes;
              UseGStone;
            end else
          if FindDTM(BuyMagebaneSeedsDTM, x, y, MIX1, MIY1, MIX2, MIY2) then
            begin
              GameTab(Tab_Inv);
              ClickMagebane;
              UseOnFarming;
              Wait(randomrange(2000,2100));
              AntiBan;
              wait(randomrange(1000,1100));
              ClearDebug; //ADDED CLEAR DEBUG
              wait(randomrange(200,300));
              ProgressReport;
              wait(randomrange(1000,1100));
              HarvestPatch;
              CleaningHerbs;
              repeat
                HighAlchItem;
                wait(randomrange(400,500));
                AlchingTheHerbs;
              until (not FindDTM(CleanHerbDTM, x, y, MIX1, MIY1, MIX2, MIY2));
           end;
        end;
        FreeDTM(HighAlchDTM);
        FreeDTM(CleanHerbDTM);
        AntiBan;
        GameTab(Tab_Inv);
      until(false);
    end;


    Begin
      SetupSRL;
      ActivateClient;
      DeclarePlayers;
      LoginPlayer;
      LoadDTM;
      Writeln ('Waiting 10 Seconds before starting...')
      wait(10000);
      GameTab(Tab_Inv);
      wait(400);
      Start;
      wait(100);
      MainLoop;
    end.

    EDIT: Other than that it looks good though
    Last edited by J J; 05-04-2012 at 03:11 PM.

    Script source code available here: Github

  8. #33
    Join Date
    Nov 2011
    Location
    Netherlands
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Thanks JJ, will line out soon as i get home.
    I was away for a long time, but i'm back!

  9. #34
    Join Date
    Dec 2011
    Posts
    505
    Mentioned
    0 Post(s)
    Quoted
    26 Post(s)

    Default

    lol I've been waiting quite a while... thnx
    http://villavu.com/forum/showthread.php?t=71419

    will mess with it later this next week

  10. #35
    Join Date
    Nov 2011
    Location
    Netherlands
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Quote Originally Posted by blinkblink View Post
    lol I've been waiting quite a while... thnx
    http://villavu.com/forum/showthread.php?t=71419

    will mess with it later this next week
    Ive been searching for one too for a long time they never got released, so i made it myself haha.
    I was away for a long time, but i'm back!

  11. #36
    Join Date
    Feb 2012
    Location
    Bboy Vil
    Posts
    319
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Alright second time trying this script. I finally got it to work. I moved my character instead of just the camera lol. Add that to the fix tip if you want.

    EDIT: Nevermind it doesn't find seeds (yes there in the right slot) and also comes up with error and script stops.
    Last edited by illester; 05-07-2012 at 07:15 AM.

  12. #37
    Join Date
    Nov 2011
    Location
    Netherlands
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    What error comes up? More info please.
    I was away for a long time, but i'm back!

  13. #38
    Join Date
    Nov 2011
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    15k/hour is definitely good for a farming script; nicely done.

    As other people have said, next step is making it support SMART manager (if it doesn't already) and also possibly the cycle (of selling/alching and repeating).

  14. #39
    Join Date
    Nov 2011
    Location
    Netherlands
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    It said easyer then making it haha, for now i really cant add the SMART support, i still need to fix the smuggler first. Its acting wierd :S
    I was away for a long time, but i'm back!

  15. #40
    Join Date
    Feb 2012
    Location
    Bboy Vil
    Posts
    319
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by kipjes bende View Post
    What error comes up? More info please.
    After attepmting to alch
    Found High Alch spell
    Error: Exception: The given DTM Index[12] doesn't exist at line 509
    The following DTMs were not freed: [SRL - Lamp bitmap, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14]
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Flag bitmap]

    Now the script didn't even plant the seed, just clicked on patch. And also i think the same comes up when t decides to tele and buy more seeds (when i still have plenty more) and then comes back that same error comes up. Help woulb be much appreciated.

  16. #41
    Join Date
    Nov 2011
    Location
    Netherlands
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Ah i see,
    Its a little outdated and buggy at the moment, i will fix it soon
    I was away for a long time, but i'm back!

  17. #42
    Join Date
    Apr 2006
    Posts
    49
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    How much xp per hour is this? ;D
    My other username is cresi.
    http://i44.tinypic.com/117y7ox.jpg

  18. #43
    Join Date
    Nov 2011
    Location
    Netherlands
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    around 15k-h
    I was away for a long time, but i'm back!

  19. #44
    Join Date
    Apr 2012
    Posts
    350
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Eh. It's not Livid Farm status but a free 15k xp an hour...sign me up! Why isn't anyone posting proggies? Do I have to post the first one?

  20. #45
    Join Date
    Nov 2011
    Location
    Netherlands
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    It dont have proggy suppot atm :P it buggs out at Smuggler. idk gotta fix it :S nothing work... colors change too much from the smuggler, tried everything, ACA, DTMs etc. Still working on a fix

    Edit: i made this for myself to get 1-60 farming to use living farm

    Edit1: Fixed the smuggler. Having some Not freed DTM errors. Fixing them atm, will upload when its done.

    Edit 2: Fixed everything, will upload Version 1.75 in few mins!
    Last edited by bas; 05-10-2012 at 01:09 AM.
    I was away for a long time, but i'm back!

  21. #46
    Join Date
    May 2012
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well after a few tries I got the script to find the patch and plant the seeds, but after they grew it did nothing.

    Tried following your instructions when you get "Patch not found, Trying again." but I either can't find the sweet spot or its unable to see that the magebane is finished. I also tried reloading runescape.
    Last edited by officialpubbing; 05-12-2012 at 04:43 AM.

  22. #47
    Join Date
    Apr 2012
    Posts
    40
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Can this script go like forever in the same dungeon? Any idea of the rate of xp please? Nice scripting anyways! Thanks! Will definitely test it out when someone can tell it is flawless! Don't wanna loss my prestige :PP

  23. #48
    Join Date
    Nov 2011
    Location
    Netherlands
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    I need to fix the patch not found bugs etc.
    @botftwww, i said it over 4 times :P its like k xp/h
    Dont use atm if u dont want to lose prestige. its kinda buggy.
    I was away for a long time, but i'm back!

  24. #49
    Join Date
    Jan 2012
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    will you be adding other seeds?

  25. #50
    Join Date
    Nov 2011
    Location
    Netherlands
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Quote Originally Posted by Brazzers View Post
    will you be adding other seeds?
    Yes, after i fixed all the bugs.
    I was away for a long time, but i'm back!

Page 2 of 3 FirstFirst 123 LastLast

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
  •