[rs2][srl4]basicut Revived[rs2][srl4]

Discussion in 'Outdated RS Scripts' started by GMK, Mar 24, 2008.

[rs2][srl4]basicut Revived[rs2][srl4]
  1. Unread #1 - Mar 24, 2008 at 12:46 PM
  2. GMK
    Joined:
    Aug 2, 2007
    Posts:
    395
    Referrals:
    0
    Sythe Gold:
    0

    GMK Forum Addict

    [rs2][srl4]basicut Revived[rs2][srl4]

    I got antsy and decided to release this early.

    This is the newest WORKING verison of Basicut!
    Its got a little more complex but still MUCH simpler than other powerchoppers, and whats good is it works very well.

    Features:
    - sweet autotalk and anitban funtions.
    - Basic antirandoms.
    - BASIC Antideath procedure.
    - doesnt drop first 2 items in inventory.
    - ALL THE 1337NESS of the older versions!

    NOTE: WORKS BEST IN A VERY WOODED AREA OF RUNESCAPE.


    Please respond on PROBLEMS/QUESTIONS/COMMENTS

    Enjoy.



    Code:
    {
    Time usage recomendation: Check on it every 2 hours.
    Class of script: Powercutter
    Complexity 1-10: 3
    Notes: Make sure after you run it you click on the top of your web browser bar
    so its activated (it turns blue)
    Otherwise its typer wont work.
    
    --------------------------------------------------------------------------------
    
    {.Script Info:
    # ScriptName  = Basicut REV.
    # Authors     = GMK
    # Description = Basicut a tree chopper with a simple build, yet amazing results.
    # Version     = 1.0
    # Date        = March 23rd 2008
    # Comments    = Simplicity is key.
    /Script Info}
    program Basicut;
    {.include SRL/SRL.scar}
    
    const
    colo= 994343;// this should be fine. Its the color of the tree.
    Waitt= 4000;//the time between cutting
    
    var
    x,y,l,lo,anti,tal:integer;
    
    procedure DeclarePlayers;// fill this out!
    begin
      HowManyPlayers := 1;//keep it at 1
      CurrentPlayer := 0;
      NumberOfPlayers(HowManyPlayers);
    
      Players[0].Name := 'scars dead';//name of your guy
      Players[0].Pass := 'black';//pass of your guy
      Players[0].Nick := 'sca';//nickname of your guy.
      Players[0].Active := True;
    end;
    ////////////////////////////////DO NOT ENTER////////////////////////////////////
    procedure comp;
    begin
    l:=0
    lo:=0
    ActivateClient;
    cleardebug;
    wait(10)
    MakeCompass('N')
    writeln('Basicut Rev. Made by GMK.')
    ActivateClient;
    end;
    
    
    procedure chop;
    begin
    if FindColorSpiralTolerance(x,y,colo,52,26,468,260,3) then
    Mouse(x,y,2,2,true);
    l:=l+1
    wait(waitt + random(200))
    end;
    
    procedure drop;
    begin
    invfull;
    if invfull then
    begin
       DropItem(3)
       wait(200)
       DropItem(4)
       wait(200)
       DropItem(5)
       wait(200)
       DropItem(6)
       wait(200)
       DropItem(7)
       wait(200)
       DropItem(8)
       wait(200)
       DropItem(9)
       wait(200)
       DropItem(10)
       wait(200)
       DropItem(11)
       wait(200)
       DropItem(12)
       wait(200)
       DropItem(13)
       wait(200)
       DropItem(14)
       wait(200)
       DropItem(15)
       wait(200)
       DropItem(16)
       wait(200)
       DropItem(17)
       wait(200)
       DropItem(18)
       wait(200)
       DropItem(19)
       wait(200)
       DropItem(20)
       wait(200)
       DropItem(21)
       wait(200)
       DropItem(22)
       wait(200)
       DropItem(23)
       wait(200)
       DropItem(24)
       wait(200)
       DropItem(25)
       wait(200)
       DropItem(26)
       wait(200)
       DropItem(27)
       wait(200)
       DropItem(28)
       l:=0
       end;
    end;
    
    procedure antiban;
    begin
    if lo=5 then
         begin
         wait(100)
    lo:=0
    Anti:= Random(23);
    case Anti of
    0,5,10,15,20:HoverSkill('woodcutting',false);
    21,22,23:pickupmouse;
    2,18:HoverSkill('magic',false);
    3,17,4,16:RandomMovement;
    6:AlmostLogout;
    11,12,7,8,9,1,19:talk;
    13:movemousesplineex(51,57,1,1,10,35,65);
    14:movemousesplineex(127,111,1,1,10,35,65);
    end;
    end;
    end;
    
    Procedure talk;
    begin
    tal:=random(20);
    case tal of
    0:typesend('Owned')
    1:typesend('1337 omg')
    2:typesend('who wants pie?')
    3:typesend('think what you want')
    4:typesend('no')
    5:typesend('yes')
    6:typesend('sup guyyyyyz')
    7:typesend('G.E. OWNS')
    8:typesend('WHASSSSSUP')
    9:typesend('Jagex owns')
    10:typesend('I HATE yuo')
    11:typesend('Duhhr')
    12:typesend('sup all')
    13:typesend('wc is boring')
    14:typesend('LOL OMG')
    15;typesend('cookie Kills')
    16:typesend('if i told you i would have to kill you')
    17:typesend('is anybody out thereE??????')
    18:typesend('wc is sooooo last week')
    19:typesend('i should raise slayer next')
    20:typesend('yes i am a member')
    end;
    
    Procedure Randoms;
    Begin
    FindInventoryRandoms;
    FindNonInventoryRandoms;
    FindNormalRandoms;
    begin
    if (FindFight) then
    clickmouse(584,49,true)
    end;
    end;
    
    
    
    
    
    begin
    SetupSRL;
    DeclarePlayers;
    comp;
    repeat
    lo:= lo+1
    wait(100 + random(50))
    chop;
    wait(100 + random(50))
    randoms;
    wait(100 + random(50))
    drop;
    wait(100 + random(50))
    antiban;
    until(false)
    end.
     
  3. Unread #2 - Mar 25, 2008 at 3:15 PM
  4. GMK
    Joined:
    Aug 2, 2007
    Posts:
    395
    Referrals:
    0
    Sythe Gold:
    0

    GMK Forum Addict

    [rs2][srl4]basicut Revived[rs2][srl4]

    oh ya, btw thats not my real password, lol
     
  5. Unread #3 - Mar 25, 2008 at 5:48 PM
  6. Striker13
    Referrals:
    0

    Striker13 Guest

    [rs2][srl4]basicut Revived[rs2][srl4]

    Has anyone tested this yet?
     
  7. Unread #4 - Mar 25, 2008 at 9:42 PM
  8. sandchairs
    Referrals:
    0

    sandchairs Guest

    [rs2][srl4]basicut Revived[rs2][srl4]

    yeah i ran it until it filled up my bag, it wouldnt drop any logs.
    but it was fine st chopping them
     
  9. Unread #5 - Mar 25, 2008 at 9:46 PM
  10. Drips420
    Referrals:
    0

    Drips420 Guest

    [rs2][srl4]basicut Revived[rs2][srl4]

    error: help appreciated:)

    Line 432: [Hint] (10394:1): Variable 'OLDMS' never used in script C:\Program Files\SCAR 3.12\includes\SRL/SRL/Core/AntiRandoms/AntiRandoms.scar
    Line 135: [Error] (12402:18): Unknown identifier 'talk' in script C:\Documents and Settings\Administrator\Desktop\basicut edited.scar




    begin
    HowManyPlayers := 1;//keep it at 1
    CurrentPlayer := 0;
    NumberOfPlayers(HowManyPlayers);

    Players[0].Name := 'Str t0hell';//name of your guy
    Players[0].Pass := 'a65dino';//pass of your guy
    Players[0].Nick := 'Str';//nickname of your guy.
    Players[0].Active := True;
    end;




    Changed these to my own:

    0:typesend('Ownzorz')
    1:typesend('leet at wc much?')
    2:typesend('who wants a snickers?')
    3:typesend('think what you want')
    4:typesend('naa')
    5:typesend('yes')
    6:typesend('sup guyyz')
    7:typesend('G.E. OWNS narbs')
    8:typesend('WHASSUP')
    9:typesend('Jagex owns ftw?')
    10:typesend('I HATE yuo')
    11:typesend('str8 up')
    12:typesend('sup all')
    13:typesend('wc is really boring')
    14:typesend('LOL')
    15;typesend('i <3 homeless people')
    16:typesend('i would have to pk you')
    17:typesend('is anybody out there????')
    18:typesend('wc is so last week')
    19:typesend('i should raise fish next')
    20:typesend('membs is for nubs')
    end;




    please enlighten me on my error, how to fix it:)
     
  11. Unread #6 - Mar 26, 2008 at 3:09 PM
  12. GMK
    Joined:
    Aug 2, 2007
    Posts:
    395
    Referrals:
    0
    Sythe Gold:
    0

    GMK Forum Addict

    [rs2][srl4]basicut Revived[rs2][srl4]

    Ok for the guy who said it didnt drop, was your inventory completely full???
    Becuase it should work..
     
  13. Unread #7 - Mar 29, 2008 at 11:41 AM
  14. tim-gf
    Joined:
    Jan 7, 2008
    Posts:
    24
    Referrals:
    0
    Sythe Gold:
    0

    tim-gf Newcomer

    [rs2][srl4]basicut Revived[rs2][srl4]

    Aim getting this errors:

    Line 432: [Hint] (10394:1): Variable 'OLDMS' never used in script C:\Program Files\SCAR 3.15\includes\SRL/SRL/Core/AntiRandoms/AntiRandoms.scar
    Line 87: [Error] (12272:1): Unknown identifier 'SetMouseMode' in script C:\Program Files\SCAR 3.15\includes\SRL/SRL.scar
     
  15. Unread #8 - Mar 29, 2008 at 11:44 AM
  16. tim-gf
    Joined:
    Jan 7, 2008
    Posts:
    24
    Referrals:
    0
    Sythe Gold:
    0

    tim-gf Newcomer

    [rs2][srl4]basicut Revived[rs2][srl4]

    Aim getting this errors:

    Line 432: [Hint] (10394:1): Variable 'OLDMS' never used in script C:\Program Files\SCAR 3.15\includes\SRL/SRL/Core/AntiRandoms/AntiRandoms.scar

    Line 87: [Error] (12272:1): Unknown identifier 'SetMouseMode' in script C:\Program Files\SCAR 3.15\includes\SRL/SRL.scar
     
  17. Unread #9 - Mar 29, 2008 at 9:40 PM
  18. Jethr0x
    Joined:
    Jan 24, 2007
    Posts:
    3,070
    Referrals:
    13
    Sythe Gold:
    0

    Jethr0x Grand Master
    Banned

    [rs2][srl4]basicut Revived[rs2][srl4]

    bad, outdated script.

    might havve been decent.. about a year ago.
     
  19. Unread #10 - Mar 30, 2008 at 10:16 AM
  20. GMK
    Joined:
    Aug 2, 2007
    Posts:
    395
    Referrals:
    0
    Sythe Gold:
    0

    GMK Forum Addict

    [rs2][srl4]basicut Revived[rs2][srl4]

    umm excuse me???? u must be a newb to think this is outdated!!! this is the NEWEST VERSION of it! you must be using the NEWEST scar to do this
     
  21. Unread #11 - Apr 1, 2008 at 3:39 PM
  22. Blood Bandit
    Joined:
    Oct 20, 2007
    Posts:
    281
    Referrals:
    1
    Sythe Gold:
    0

    Blood Bandit Forum Addict
    Banned

    [rs2][srl4]basicut Revived[rs2][srl4]

    I got these errors...

    Failed when compiling
    Line 432: [Hint] (10394:1): Variable 'OLDMS' never used in script C:\Program Files\SCAR 3.12\includes\SRL/SRL/Core/AntiRandoms/AntiRandoms.scar
    Line 135: [Error] (12402:18): Unknown identifier 'talk' in script
     
  23. Unread #12 - Apr 1, 2008 at 6:27 PM
  24. Leet Range
    Joined:
    Mar 1, 2008
    Posts:
    1,188
    Referrals:
    0
    Sythe Gold:
    0

    Leet Range Guru
    Banned

    [rs2][srl4]basicut Revived[rs2][srl4]

    leechers love your thread =p
     
  25. Unread #13 - Apr 2, 2008 at 2:59 PM
  26. GMK
    Joined:
    Aug 2, 2007
    Posts:
    395
    Referrals:
    0
    Sythe Gold:
    0

    GMK Forum Addict

    [rs2][srl4]basicut Revived[rs2][srl4]

    You could not have said it any better leet.

    FOR THE LAST TIME. THE OLDMS AND OTHER ERROR ISNT AN ERROR WITH MY SCRIPT ITS AN ERROR WITH YOUR SRL!!!!!!!!!!!!!!!!!!!!!!

    dang leechers...
     
  27. Unread #14 - Apr 4, 2008 at 6:07 PM
  28. Ced
    Joined:
    Jul 1, 2005
    Posts:
    78
    Referrals:
    2
    Sythe Gold:
    0

    Ced Member

    [rs2][srl4]basicut Revived[rs2][srl4]

    Question... im kinda never using scar sorry if my question is kinda noobish but
    i get this:
    Include file C:\Program Files\SCAR 3.15\includes\SRL\SRL.scar does not exist.
    Failed when compiling

    Can you help me ?
     
  29. Unread #15 - Apr 5, 2008 at 5:06 AM
  30. once was nooby
    Joined:
    Jul 22, 2006
    Posts:
    226
    Referrals:
    0
    Sythe Gold:
    0

    once was nooby Active Member

    [rs2][srl4]basicut Revived[rs2][srl4]

    im getting the line 135 thing even after pressing run and then clicking on the top of browser
     
  31. Unread #16 - Apr 5, 2008 at 5:34 PM
  32. 99 str fist
    Joined:
    Apr 5, 2008
    Posts:
    148
    Referrals:
    0
    Sythe Gold:
    0

    99 str fist Active Member
    Banned

    [rs2][srl4]basicut Revived[rs2][srl4]

    does it work? well
     
  33. Unread #17 - Apr 8, 2008 at 8:40 PM
  34. Ced
    Joined:
    Jul 1, 2005
    Posts:
    78
    Referrals:
    2
    Sythe Gold:
    0

    Ced Member

    [rs2][srl4]basicut Revived[rs2][srl4]

    can anyone answer me ..?
     
  35. Unread #18 - Apr 14, 2008 at 11:54 AM
  36. wtf11
    Joined:
    May 23, 2007
    Posts:
    1,392
    Referrals:
    1
    Sythe Gold:
    0

    wtf11 Guru
    Banned

    [rs2][srl4]basicut Revived[rs2][srl4]

    line 135 talk error
     
  37. Unread #19 - Apr 17, 2008 at 8:45 PM
  38. momysaysn00
    Referrals:
    0

    momysaysn00 Guest

    [rs2][srl4]basicut Revived[rs2][srl4]

    IM new to SCAR and i dont know what im doing wrong because is says failed when compiling??
     
  39. Unread #20 - Apr 18, 2008 at 5:07 PM
  40. The Granite Maul
    Joined:
    Apr 11, 2008
    Posts:
    566
    Referrals:
    0
    Sythe Gold:
    0

    The Granite Maul Forum Addict
    Banned

    [rs2][srl4]basicut Revived[rs2][srl4]

    Line 27: [Error] (53:1): Duplicate identifier 'UpChars' in script C:\Program Files\SCAR 3.15\includes\srl\srl\core\Globals.scar
     
< PowerSkills by Starblaster100 | Everything tree chopper and dropper v1.2 >

Users viewing this thread
1 guest


 
 
Adblock breaks this site