Page 1 of 2 12 LastLast
Results 1 to 25 of 27

Thread: BuckleyInDaHouse's Power Chopper V1.

  1. #1
    Join Date
    Oct 2006
    Location
    Texas
    Posts
    1,450
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    BuckleyInDaHouse's Power Chopper V1.

    BuckleyInDaHouse Presents
    PowerChopper v1



    What Does It Do?
    1. Power Chops Any Tree
    2. Solves All SRL Randoms
    3. Uses Anti Ban Technology
    4. Uses Mutli Player
    5. Anti Ent and Axe Head Protection
    6. Custom Procedures Made by Me


    Hopefully To Come In Future Updates.
    1. Faster Tree Finding
    2. Better Ent And Axe Head Protection
    3. Auto Responder
    4. More Anti Ban


    Please Post Proggies and Bugs.

  2. #2
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Good job buddy, keep it up and a lot of succes in future scripting
    [QUOTE=Santa_Clause;277761]I love you too TSN :p[/QUOTE]
    [CENTER][URL="http://www.stats.srl-forums.com/sigs"][IMG]http://www.stats.srl-forums.com/sigs/1324.png[/IMG][/URL][/CENTER]

  3. #3
    Join Date
    Mar 2007
    Posts
    47
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    The script looks nice but I got this error:

    Out of Range in line 35 in script.

  4. #4
    Join Date
    Oct 2006
    Location
    Texas
    Posts
    1,450
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    Make sure you have the HowManyPlayers Const set right.

  5. #5
    Join Date
    Mar 2007
    Location
    Eugene, Oregon
    Posts
    195
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Alright well I'm testing it out now, I'll have a progress report and bugs post by tomorrow or the next day.

  6. #6
    Join Date
    Mar 2007
    Location
    Eugene, Oregon
    Posts
    195
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well this is what i have come up with a little lol. This is your script. There are no modifications in the script itself (Except for the one ClearDeBug I added). There is only a difference in the top Title.

    Observations:
    - Add Description (What script does, Axe weild needed yes, no? How to use it::Instructions::, ect.) + good at the the player form, add some at the beginning of script.
    - Add auto color or work with that.
    - Lessen time it needs to wait before click on the tree again. Make it about 8 or 10.
    - Add a Clear DeBug Box in there.
    - Lower Tolerance level. It finds trees other than the ones i really want.
    - Doesn't Drop the logs.
    - It DOES Log back in with the other players nice job with that.


    Sorry I couldn't get a progress report but its because it wont drop logs.


    OH! And when you come out with a new version Notify me at Sony_Master1212@msn.com I'll check it for you if you want. And i will probably want to use it!

    If you want auto coloring tips check Here This should help a lot.


    SCAR Code:
    program PowerChopper;
    {
    11111111    11111111111   11111111    11111      11111
    11      11      111       11     11     111      111
    11       11     111       11      11    111      111
    11      11      111       11       11   111      111
    111111111       111       11        11  111111111111
    111111111       111       11        11  111111111111
    11      11      111       11       11   111      111
    11       11     111       11      11    111      111
    11      11      111       11     11     111      111
    111111111   111111111111  11111111    11111      11111

     "This stands for BuckleyInDaHouse BIDH, you should keep it on
     your scripts you make."  (Everything in the "" can be deleted
     it is not neccessary).
     
     ::PUT YOUR INSTRUCTIONS HERE::


    {.Include srl/srl.scar}

    {.Include srl/srl/skill/woodcutting.scar}

    const Tree1 = 0;  //try working auto color with these
    const Tree2 = 0;
    const Tree3 = 0;
    const Tree4 = 0;


    var
      Log, LogM: Integer;
      Loads: Integer;
      TreeXp, Dropped: Integer;

    procedure DeclarePlayers;
    begin

      HowManyPlayers := 4; // Compliant with Dynamic Array;
      NumberOfPlayers(HowManyPlayers); // Set the Players Array Length;
      CurrentPlayer := 0; // CurrentPlayer = internal counter


      Players[0].Name := '';
      Players[0].Pass := '';
      Players[0].Nick := ''; // <- screen nickname (three letters from name)
      Players[0].String1 := ''; //Type Of Tree your powerchopping
      Players[0].Integer1 := 9; //Time to wait while Cutting
      Players[0].Integer2 := 1; //Loads to do before switching players
      Players[0].Skill := 'Woodcutting'; //Skill for Genie Lamp Random
      Players[0].Loc := 'Chopping'; //Dont Change This
      Players[0].Active := True; //Is this player Active?

      Players[1].Name := '';
      Players[1].Pass := '';
      Players[1].Nick := ''; // <- screen nickname (three letters from name)
      Players[1].String1 := 'Oak'; //Type Of Tree your powerchopping
      Players[1].Integer1 := 9; //Time to wait while Cutting
      Players[1].Integer2 := 1; //Loads to do before switching players
      Players[1].Skill := 'Woodcutting'; //Skill for Genie Lamp Random
      Players[1].Loc := 'Chopping'; //Dont Change This
      Players[1].Active := True; //Is this player Active?

      Players[2].Name := '';
      Players[2].Pass := '';
      Players[2].Nick := ''; // <- screen nickname (three letters from name)
      Players[2].String1 := 'Oak'; //Type Of Tree your powerchopping
      Players[2].Integer1 := 9; //Time to wait while Cutting
      Players[2].Integer2 := 1; //Loads to do before switching players
      Players[2].Skill := 'Woodcutting'; //Skill for Genie Lamp Random
      Players[2].Loc := 'Chopping'; //Dont Change This
      Players[2].Active := True; //Is this player Active?

      Players[3].Name := '';
      Players[3].Pass := '';
      Players[3].Nick := ''; // <- screen nickname (three letters from name)
      Players[3].String1 := 'Oak'; //Type Of Tree your powerchopping
      Players[3].Integer1 := 9; //Time to wait while Cutting
      Players[3].Integer2 := 1; //Loads to do before switching players
      Players[3].Skill := 'Woodcutting'; //Skill for Genie Lamp Random
      Players[3].Loc := 'Chopping'; //Dont Change This
      Players[3].Active := True; //Is this player Active?}
    end;

    {I added a ClearDeBug in right here just so it looks nicer.}

    procedure DeclareImages;
    begin
     ClearDeBug;
      Log := DTMFromString('78DA632C6262601065644006AE76E20CFF813' +
        '448F43F1030D600D570A1AA81C8C248209D01542343404D03508D' +
        '04AA1A4F27295435E94035FC04CC2901AA9125A0261FA8861BBF1' +
        'A0048770A0D');

      LogM := BitmapFromString(43, 37, 'z78DAED99D111C02008435762' +
        '0AF71FA977FD6FEF5A3424900CA0F080366AC45CAD5B610226600' +
        '216655D9E34216B64DF3250FD1A031B8195566DD532AB55F58F62' +
        'DFF68BA11301864954FC0EB8031908E0A780D39B6122E1F7A2E7E' +
        'AA2E8C3FB79E65A8F6D022660025A044EB83B1360E3507B7B86DC' +
        '1D99E3AE3BA2BDF986A074CF17180FC95C5FCC14CF3947F49E5F1' +
        '330011330810904DEFF627957FCEF2511B3E30549E444EE');
    end;





    function FindFastRandoms: Boolean; // By WT-Fakawi.
    var
      i: Integer;
    begin
      for I := 1 to 14 do
      begin
        case I of
          1: if FindDead then
              Result := True;

          2: if FindMod then
              Result := True;

          3: if FindMime then
              Result := True;

          4: if FindMaze then
              Result := True;

          5: if FindQuiz then
              Result := True;

          6: if FindDemon then
              Result := True;

          7: begin
              if NoGameTab then
              begin
                Result := True;
                Players[CurrentPlayer].loc := 'No GameTab';
                Logout;
                Exit;
              end;
            end;


          8: if RC then
              Result := True;

          9: if FindFight then
            begin
              Result := True;
              RunAwayDirection(Players[CurrentPlayer].String2);
              Wait(15000 + Random(7500));
              RunBack;
            end;

          10: if FindTalk then
              Result := True;

          11: FindLamp(Players[CurrentPlayer].Skill);

          12: FindNormalRandoms;

          13: FindHead;

          14: ClickToContinue;
        end;
        Wait(1);
      end;
    end;


    procedure StopTheEnts;
    var
      Tx, Ty: Integer;
    begin
      if (IsUpTextMulti('ree', 'hop down', 'Cho')) then
      begin
        Wait(500);
        if (FindColor(Tx, Ty, 65535, 87, 22, 150, 15)) then
        begin
          Mouse(647, 83, 2, 2, True);
          Flag;
          MMouse(Tx, Ty, 0, 0);
          repeat
            Wait(1000 + Random(150));
            FindFastRandoms;
          until (not (FindColor(Tx, Ty, 65535, 87, 22, 150, 15)))
        end;
        Exit;
      end;
    end;






    procedure WrapUpCommonStuff;
    begin
      StopTheEnts;
      FindFastRandoms;
    end;


    procedure ChopChop;
    var
      Tol, iX, iY: Integer;
    begin
      if (not (LoggedIn)) then NextPlayer(False);
      Tol := 5;
      repeat
        if (FindColorSpiralTolerance(iX, iY, Tree1, msx1, msy1, msx2, msy2, Tol)) or
          (FindColorSpiralTolerance(iX, iY, Tree2, msx1, msy1, msx2, msy2, Tol)) or
          (FindColorSpiralTolerance(iX, iY, Tree3, msx1, msy1, msx2, msy2, Tol)) or
          (FindColorSpiralTolerance(iX, iY, Tree4, msx1, msy1, msx2, msy2, Tol)) then
          MMouse(iX, iY, 2, 2);
        Wait(750 + Random(750));
        FindHead;
        if (not (IsUpTextMulti('ree', 'hop down', 'Cho'))) then
        begin
          WriteLn('Couldn''t Find Tree, Increasing Tolerance');
        end;
        Tol := Tol + 1;
        Wait(150 + Random(250));
        FindHead;
        case Random(2) of
          0: Exit;
          1: WriteLn(' Tolerance := ' + IntToStr(Tol));
        end;
      until (IsUpTextMulti('ree', 'hop down', 'Cho') or (Tol = 20))
        if (Tol = 20) then
      begin
        Players[CurrentPlayer].Loc := 'No Tree';
        NextPlayer(False);
      end;
      StopTheEnts;
      FindFastRandoms;
      Mouse(iX, iY, 0, 0, True);
      Flag;
      WrapUpCommonStuff;
      Wait(Players[CurrentPlayer].Integer1 * 1000 + Random(1500));
    end;



    procedure DropIt;
    var
      cx, cy: Integer;
    begin
      repeat
        if (FindDTM(Log, cx, cy, mix1, miy1, mix2, miy2)) then
          MMouse(cx, cy, 2, 2);
        Wait(100 + Random(256));
        Mouse(cx, cy, 0, 0, False);
        if (not (ChooseOption(cx, cy, 'rop'))) then
        begin
          MouseItem(1, True);
        end;
        ChooseOption(cx, cy, 'rop');
        Wait(1500 + Random(750));
        Dropped := Dropped + 1;
      until (not (FindDTM(Log, cx, cy, mix1, miy1, mix2, miy2)))
        Players[CurrentPlayer].Integer2 := Players[CurrentPlayer].Integer2 + Dropped;
      Loads := Loads + 1;
    end;

    procedure GetTreeExp1;
    begin
      case LowerCase(Players[CurrentPlayer].String1) of
        'tree': TreeXP := 25;
        'oak': TreeXP := 75 / 2;
        'willow': TreeXP := 125 / 2;
        'maple': TreeXP := 100;
        'mahogany': TreeXP := 125;
        'yew': TreeXP := 175;
        'magic': TreeXP := 250;
      end;
    end;



    procedure SetUp;
    begin
      if (not (LoggedIn)) then LoginPlayer;
      FindAxeHeadColor;
      SetChat('On', 1);
      SetChat('Off', 2);
      SetChat('Off', 3);
      HighestAngle;
      GetTreeExp1;
      Loads := 0;
      Dropped := 0;
    end;


    procedure Report;
    begin
      WriteLn('BuckleyInDaHouse''s Power Chopper Version 1');
      WriteLn('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
      WriteLn('Player     : ' + Players[CurrentPlayer].Name);
      WriteLn('Auto Time  : ' + ScriptTime2(2));
      WriteLn('Loc        : ' + Players[CurrentPlayer].Loc);
      WriteLn('Chopped    : ' + IntToStr(Players[CurrentPlayer].Integer2) + ' Logs');
      WriteLn('Experience : ' + IntToStr(Players[CurrentPlayer].Integer2 * TreeXP));
      WriteLn('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
      WriteLn('');
      WriteLn('Please report any bugs at my thread : [url]http://www.villavu.com/forum/showthread.php?t=9617[/url] ');
    end;


    begin
      SetUpSRL;
      DeclarePlayers;
      DeclareImages;
      repeat
        repeat
          SetUp;
          repeat
            ChopChop;
          until (InvFull);
          DropIt;
          Report;
        until (Loads = Players[CurrentPlayer].Integer2)
          NextPlayer(True);
      until (False)
    end.







  7. #7
    Join Date
    May 2007
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    [Runtime Error] : Exception: Access violation at address 0064C975 in module 'SCAR.EXE'. Read of address FFFFFFFF in line 100 in script C:\PROGRAM FILES\SCAR 2.03\includes\srl\srl\core\Setup.scar


    error...can u tell me whats wrong?

  8. #8
    Join Date
    May 2007
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    and i get this too...[Runtime Error] : Out Of Range in line 35 in script C:\WINDOWS\Desktop\power chopper 1[1].0.scar



    im using 2.03

  9. #9
    Join Date
    May 2007
    Location
    http://www.srl-forums.com
    Posts
    265
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    BuckleyInDaHouse PowerChopper v1

    Number 1.

    Woot '100th' Post!!!

  10. #10
    Join Date
    May 2007
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i tried it, set everything only thing it did was:
    friends chat: off
    trade/compete: off
    set screen highest view.
    and then the mouse set in the upper left corner, didn't do a thing.

    problem: couldn't find tree
    PM me if you fix it

    i'm quite new to SCAR scripting so if someone could help me, that would be nice.
    i tried a little of scripting but it didn't go as i wanted.
    if someone could teach me some things i would really apreciate it, and maybe give a little
    fee, hope to cya soon.

    Mail: peterwouters_9@hotmail.com

  11. #11
    Join Date
    Oct 2006
    Location
    Texas
    Posts
    1,450
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    Did you set the tree colors and drag the crosshair onto RS?

  12. #12
    Join Date
    May 2007
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Sorry...new here. How do I do that

  13. #13
    Join Date
    Oct 2006
    Location
    Texas
    Posts
    1,450
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Buylobshere View Post
    Sorry...new here. How do I do that
    There are guides on tutorial island that show you how to auto.

  14. #14
    Join Date
    May 2007
    Posts
    663
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Chopping normal trees E of Varrock.

    Okay .. hmm. Am using SCAR 2.03 and SRL 3.6. Picked my colors .. would chop a tree and then walk to another tree instead of chopping the one next to me.

    I decreased the time to wait between cutting to 5 .. once it got going - it was going well. Then I got a full inventory and a Dwarf came along. The script kept trying to drop the logs, but wouldn't. Instead it would right click the harp, hit cancel, and then try to chop more logs.

    Wouldn't respond to Dwarf random.

    Most interesting is the progress report .. which is a complete lie:

    BuckleyInDaHouse's Power Chopper Version 1
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Player :
    Auto Time : 6 Minutes, and 34 Seconds
    Loc : Chopping
    Chopped : 201 Logs
    Experience : 5025
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Please report any bugs at my thread : http://www.villavu.com/forum/showthread.php?t=9617
    Axe head colors: 5066068 4737359 4737359
    Tolerance := 6
    BuckleyInDaHouse's Power Chopper Version 1
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Player :
    Auto Time : 7 Minutes, and 5 Seconds
    Loc : Chopping
    Chopped : 202 Logs
    Experience : 5050
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Please report any bugs at my thread : http://www.villavu.com/forum/showthread.php?t=9617
    Axe head colors: 5066068 4737359 4737359
    BuckleyInDaHouse's Power Chopper Version 1
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Player :
    Auto Time : 7 Minutes, and 22 Seconds
    Loc : Chopping
    Chopped : 203 Logs
    Experience : 5075
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Please report any bugs at my thread : http://www.villavu.com/forum/showthread.php?t=9617
    Axe head colors: 5066068 4737359 4737359
    BuckleyInDaHouse's Power Chopper Version 1
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Player :
    Auto Time : 7 Minutes, and 41 Seconds
    Loc : Chopping
    Chopped : 204 Logs
    Experience : 5100
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Please report any bugs at my thread : http://www.villavu.com/forum/showthread.php?t=9617
    Axe head colors: 5066068 4737359 4737359
    Tolerance := 6
    BuckleyInDaHouse's Power Chopper Version 1
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Player :
    Auto Time : 8 Minutes, and 13 Seconds
    Loc : Chopping
    Chopped : 205 Logs
    Experience : 5125
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Please report any bugs at my thread : http://www.villavu.com/forum/showthread.php?t=9617
    Axe head colors: 5066068 4737359 4737359
    BuckleyInDaHouse's Power Chopper Version 1
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Player :
    Auto Time : 8 Minutes, and 31 Seconds
    Loc : Chopping
    Chopped : 206 Logs
    Experience : 5150
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Please report any bugs at my thread : http://www.villavu.com/forum/showthread.php?t=9617
    Axe head colors: 5066068 4737359 4737359
    Tolerance := 6
    BuckleyInDaHouse's Power Chopper Version 1
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Player :
    Auto Time 9 Minutes, and 0 Seconds
    Loc : Chopping
    Chopped : 207 Logs
    Experience : 5175
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Please report any bugs at my thread : http://www.villavu.com/forum/showthread.php?t=9617
    Axe head colors: 5066068 4737359 4737359
    Successfully executed
    I only chopped one inventory of logs and no way in hell did I get that much experience.

    Needs a bit of work m'dear

  15. #15
    Join Date
    Oct 2006
    Location
    Texas
    Posts
    1,450
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by gillian View Post
    Chopping normal trees E of Varrock.

    Okay .. hmm. Am using SCAR 2.03 and SRL 3.6. Picked my colors .. would chop a tree and then walk to another tree instead of chopping the one next to me.

    I decreased the time to wait between cutting to 5 .. once it got going - it was going well. Then I got a full inventory and a Dwarf came along. The script kept trying to drop the logs, but wouldn't. Instead it would right click the harp, hit cancel, and then try to chop more logs.

    Wouldn't respond to Dwarf random.

    Most interesting is the progress report .. which is a complete lie:



    I only chopped one inventory of logs and no way in hell did I get that much experience.

    Needs a bit of work m'dear
    Thank, Reports like his gets my scripts fixed cause i actually know whats wrong with.

    Thank You,
    Buckley.

  16. #16
    Join Date
    May 2007
    Posts
    663
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You are more than welcome, hun more than happy to post proggys since my dumb a#$ will never be a scripter

  17. #17
    Join Date
    May 2007
    Posts
    88
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    please help this is what it sed Successfully compiled
    SRL Compiled in 250msec.
    [Runtime Error] : Out Of Range in line 35 in script

  18. #18
    Join Date
    Nov 2006
    Location
    NSW, Australia
    Posts
    3,487
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    You just bumped a 1 month old script.
    [CENTER][img]http://signatures.mylivesignature.com/54486/113/4539C8FAAF3EAB109A3CC1811EF0941B.png[/img][/CENTER]
    [CENTER][BANANA]TSN ~ Vacation! ~ says :I Love Santy[/BANANA][/CENTER]

    [CENTER][BANANA]Raymond - Oh rilie? says :Your smart[/BANANA][/CENTER]

  19. #19
    Join Date
    May 2007
    Posts
    88
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    what that mean??

  20. #20
    Join Date
    Oct 2006
    Location
    Texas
    Posts
    1,450
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    It means that this script is old and chances are doesn't work too well.

  21. #21
    Join Date
    May 2007
    Posts
    88
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    oo

  22. #22
    Join Date
    May 2007
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    omg!!!!!!!!!!!!!!!evry single script i run it does the same thing!!!-



    when it logges on it dosent do anything not even check in

    some one help b4 i kill sum one plz!!!

  23. #23
    Join Date
    Apr 2007
    Location
    Doha, Qatar
    Posts
    216
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Failed when compiling
    Line 25: [Error] (35:1): Duplicate identifier 'UpChars' in script C:\Program Files\SCAR 3.10\includes\srl\srl\core\Globals.scar


    help me...its with every other script

  24. #24
    Join Date
    Oct 2006
    Location
    Texas
    Posts
    1,450
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    Download latest SRL.

  25. #25
    Join Date
    Apr 2007
    Location
    Doha, Qatar
    Posts
    216
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yea this is after the latest srl...cud u gimme srl version to use?

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Power Chopper
    By topiser in forum First Scripts
    Replies: 10
    Last Post: 05-16-2008, 08:57 PM
  2. [SRL 4] Another Power Chopper [EA]
    By Economic Advancement in forum First Scripts
    Replies: 9
    Last Post: 11-26-2007, 10:02 PM
  3. My First Power Chopper
    By destroyface in forum First Scripts
    Replies: 4
    Last Post: 09-12-2007, 11:35 AM
  4. My First power chopper!!!!
    By ownage112211 in forum First Scripts
    Replies: 2
    Last Post: 05-01-2007, 03:41 AM
  5. R3v Power Chopper
    By R3velati0n in forum RS3 Outdated / Broken Scripts
    Replies: 27
    Last Post: 01-30-2007, 03:36 AM

Posting Permissions

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