Results 1 to 17 of 17

Thread: Updated Livid Farm script

  1. #1
    Join Date
    Mar 2012
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default Updated Livid Farm script

    Could somebody create a livid farm script compatible with the current releases? Flight already has his http://villavu.com/forum/showthread....ighlight=livid but it's outdated.

    I'm going insane doing all of this livid farming, I'd love a script.

    Thanks.

  2. #2
    Join Date
    Jan 2012
    Location
    Runescape News and General & Skill Guides
    Posts
    2,544
    Mentioned
    37 Post(s)
    Quoted
    545 Post(s)

    Default

    Ah livid farm.

    I remember botting there for about 20 hours a day, everyday for 3 weeks and achieving 99 farming.

    Tbh, i think it wouldn't be a great idea to risk an account at livid at the current state of the game because they are strict with the bans.

  3. #3
    Join Date
    Dec 2013
    Posts
    95
    Mentioned
    2 Post(s)
    Quoted
    37 Post(s)

    Default

    Quote Originally Posted by Four View Post
    current state of the game because they are strict with the bans
    Can you clarify, please? I thought they were currently giving out mostly temp bans to first time P2P offenders that aren't gold farming.

  4. #4
    Join Date
    Mar 2012
    Location
    127.0.0.1
    Posts
    1,199
    Mentioned
    0 Post(s)
    Quoted
    26 Post(s)

    Default

    Quote Originally Posted by vwxz View Post
    Can you clarify, please? I thought they were currently giving out mostly temp bans to first time P2P offenders that aren't gold farming.
    Im not sure, but I think the risk isn't in permanent bans, its in resets and a lot of us here at SRL who would use the Livid farm script have quite a few 99's

  5. #5
    Join Date
    Jan 2012
    Location
    Runescape News and General & Skill Guides
    Posts
    2,544
    Mentioned
    37 Post(s)
    Quoted
    545 Post(s)

    Default

    Quote Originally Posted by vwxz View Post
    Can you clarify, please? I thought they were currently giving out mostly temp bans to first time P2P offenders that aren't gold farming.
    The people that I usually saw at livid were

    - Maxed players going for comp requirement
    - Non maxed going for farming xp b/w farm runs
    - People who wanted points for seeds, usually high levels
    - other bots

    It can be a temp ban or a permanent ban regardless if its your first offence, Im just saying I dont think it would be a good idea to risk a high level account these days at livid or botting in general

  6. #6
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

  7. #7
    Join Date
    Mar 2013
    Location
    Shaolin
    Posts
    863
    Mentioned
    24 Post(s)
    Quoted
    519 Post(s)

    Default

    Quote Originally Posted by Four View Post
    The people that I usually saw at livid were

    - Maxed players going for comp requirement
    - Non maxed going for farming xp b/w farm runs
    - People who wanted points for seeds, usually high levels
    - other bots

    It can be a temp ban or a permanent ban regardless if its your first offence, Im just saying I dont think it would be a good idea to risk a high level account these days at livid or botting in general
    He definitely has a point. I am currently just going to get the big bad skills out of the way like herblore and agility and then its going to be straight legitting for the rest of my RS life.
    You have permission to steal anything I've ever made...

  8. #8
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Quote Originally Posted by Wu-Tang Clan View Post
    He definitely has a point. I am currently just going to get the big bad skills out of the way like herblore and agility and then its going to be straight legitting for the rest of my RS life.


    Anyways, if anyone of you are using Brandon's OGL plugin & library you can easily make this script. I tried to when the plugin was just released but for some reason, over time, an enormous amount of lag built up; I can only assume at that time there was a memory leak or two. Maybe I still have something laying around to get you going on your way...

    Ah here 'tis, I hope it helps:
    Simba Code:
    {$DEFINE SMART}
    {$DEFINE CSMART}
    {$i SRL/SRL.Simba}
    {$i GLHook/GLHook.simba}
    {$i SRL/SRL/misc/MouseHandler.simba}

    {
    Type 1 model: 3962916570
    Type 2 model: 2419325344
    Type 3 model: 3156053617
    Type 4 model: 1915004297
    }


    Var
      Obj_LividIDs: Array of Cardinal;


    Procedure LoadVars;
    begin
      SetArrayLength(Obj_LividIDs, 4);
      Obj_LividIDs := [3962916570, 2419325344, 3156053617, 1915004297];
    end;

    Function lividMenu: Boolean;
    var
      Pnt: TPoint;
    begin
      Result := GLHook_FindTextArea(Pnt, IntToBox(MIX1,MIY1,MIX2,MIY2), 'train', True, 4, 10);
    end;

    Function getMousePnt: TPoint;
    var
      X,Y: Integer;
    begin
      GetMousePos(X,Y);
      Result := Point(X,Y);
    end;

    Function OGL_GetOptions: TStringArray;
    var
      B: TBox;
      i: Integer;
      tInfo: TTextInfoArray;
    begin
      tInfo := GLH_GetChooseOptions(B);
      if (length(tInfo) < 1) then
        Exit;

      for i:=0 to High(tInfo) do
      begin
        SetArrayLength(Result, Length(Result)+1);
        Result[High(Result)] := tInfo[i].Text;
      end;
    end;

    Procedure CureLivid(ID: Integer; Pnt: TPoint);
    var
      mPnt: TPoint;
    begin
      case ID of
        3962916570: mPnt := Point(590, 280);
        2419325344: mPnt := Point(680, 280);
        3156053617: mPnt := Point(590, 400);
        1915004297: mPnt := Point(680, 400);
      end;

      AL_BrakeMMouse(Point(Pnt.X,Pnt.Y), 7, 7, True);  //Y-50
      //Writeln(ToStr(getMousePnt)+', '+glh_getuptext);
      if GLH_WaitUpTextMulti(['Cure','re-p','-pl','lant','Dise','seas','d li','livid'], 300) then
      begin
        AL_FastClick(mouse_right);
        //Writeln(ToStr(OGL_GetOptions));
        if GLH_ChooseOption('Cure-plant Diseased livid') then
        begin
          AL_BrakeMMouse(Point(635, 310), 65, 70, True);

          //if (not waitFunc(@lividMenu, 50, 3000)) then
            //Exit;

          if lividMenu then
          begin
            AL_MissMouse(mPnt, 10, 10);
            if GLH_WaitUpText('Continue', 400) then
            begin
              //CheckedPauline := False;
              AL_FastClick(mouse_left);
              // XP increments
            end;
            //CheckedPauline := False;
            Wait(randomRange(1715, 1970));
          end;
        end;
      end;
    end;

    Function getModelsByIDs(IDs: Array of Cardinal): TModelArray;
    var
      i,Ptr,Size: Integer;
    begin
      for i:=0 to High(IDs) do
      begin
        Ptr := GLHGetModelsByID(IDs[i], Size);
        SetLength(Result, Size);
        Result := GLHook_IterateModels(Ptr, Size);
      end;
    end;

    Procedure HandleLivids;
    var
      i,f,h: Integer;
      Livids: TModelArray;
    begin
      Livids := getModelsByIDs(Obj_LividIDs);
      if (length(Livids) < 1) then
      begin
        Writeln('No livids found...');
        Exit;
      end;

      for f:=1 to 3 do
        for i:=0 to High(Livids) do
          CureLivid(Livids[i].ID, Point(Livids[i].SX,Livids[i].SY));
    end;

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  9. #9
    Join Date
    Jan 2014
    Location
    New Found Land
    Posts
    108
    Mentioned
    3 Post(s)
    Quoted
    21 Post(s)

    Default

    Quote Originally Posted by Four View Post
    Ah livid farm.

    I remember botting there for about 20 hours a day, everyday for 3 weeks and achieving 99 farming.

    Tbh, i think it wouldn't be a great idea to risk an account at livid at the current state of the game because they are strict with the bans.

    i agree, very high ban rate.

    "When all government, domestic and foreign, in little as in great things, shall be drawn to Washington as the center of all power, it will render powerless the checks provided of one government on another, and will become as venal and oppressive as the government from which we separated."

  10. #10
    Join Date
    Feb 2012
    Posts
    49
    Mentioned
    0 Post(s)
    Quoted
    13 Post(s)

    Default

    Quote Originally Posted by Ashaman88 View Post
    If someone hooks me up with an account with runes there I'll do it
    I can provide an account with runes if needed.

  11. #11
    Join Date
    Sep 2012
    Location
    Here.
    Posts
    2,007
    Mentioned
    88 Post(s)
    Quoted
    1014 Post(s)

    Default

    Quote Originally Posted by Ashaman88 View Post
    If someone hooks me up with an account with runes there I'll do it
    Pick me! Pick me!

  12. #12
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default



    Thanks to @Turpinator; for the account access!


    Edit:

    It's all done, just need to put in the failsafe for if you run out of runes and whatnot
    Last edited by Ashaman88; 01-30-2014 at 02:23 PM.

  13. #13
    Join Date
    Jan 2012
    Posts
    1,596
    Mentioned
    78 Post(s)
    Quoted
    826 Post(s)

    Default

    Quote Originally Posted by Ashaman88 View Post


    Thanks to @Turpinator; for the account access!


    Edit:

    It's all done, just need to put in the failsafe for if you run out of runes and whatnot
    yaay.

  14. #14
    Join Date
    Feb 2013
    Location
    Belgium
    Posts
    86
    Mentioned
    6 Post(s)
    Quoted
    35 Post(s)

    Default

    I'd love a livid farm script too!

  15. #15
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    A few more stress tests/adjustments to make sure it can logically run forever and I'll release - hopefully tonight

  16. #16
    Join Date
    Dec 2011
    Posts
    2,147
    Mentioned
    221 Post(s)
    Quoted
    1068 Post(s)

    Default

    Quote Originally Posted by Ashaman88 View Post
    A few more stress tests/adjustments to make sure it can logically run forever and I'll release - hopefully tonight
    Looking forward to it. Farming is all I need to be maxed...and you just made it happen!

  17. #17
    Join Date
    Jan 2012
    Location
    Long Island, NY
    Posts
    413
    Mentioned
    5 Post(s)
    Quoted
    95 Post(s)

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
  •