[Scar 3.15b]Basicut 4.0[Scar 3.15b]

Discussion in 'RuneScape Scripts' started by GMK, Jul 18, 2008.

[Scar 3.15b]Basicut 4.0[Scar 3.15b]
  1. Unread #1 - Jul 18, 2008 at 11:08 AM
  2. GMK
    Joined:
    Aug 2, 2007
    Posts:
    395
    Referrals:
    0
    Sythe Gold:
    0

    GMK Forum Addict

    [Scar 3.15b]Basicut 4.0[Scar 3.15b]

    NEW VERSION 4.2!

    new to version 4.2:
    Still Leecher friendly! :laugh:
    doesn't first inventory slot item (good for skillers)
    1337 dropping procedure finally fixed!!!


    Post Reports!

    NOTE: if you have any errors the first run rerun it a couple times. it works itself out.
    ALSO NOTE: wearing camo suit Makes chopping alot less accurate!

    [CODE{
    Time usage recomendation: Check on it ocasionaly.
    Class of script: Auto-leveler
    Complexity 1-10: 6
    Bugs: Make sure after you run it you click on the top internet explorer bar so it turns blue.
    Otherwise its typer wont work.
    Notes: Works best with regular trees, but will find any tree.
    -----------------------------------------------------------
    Code:
    {.Script Info:
    # ScriptName  = Basicut
    # Authors      = GMK
    # Description = A simple, Yet powerfull Tree cutter.
    # Version     = 4.2
    # Date        = Auguest 8th 2008
    # Comments    = you can put an axe in the first inventory space.
    /Script Info}
    program Basicut;
    {.include SRL/SRL.scar}
    
    const
    colo= 2909016;// May need to reset this (color of tree)
    Waitt= 4000;//the time between cutting
    
    var
    x,y,m1,m2:integer;
    li,lo,ow:integer;
    anti:integer;
    
    
    procedure comp;
    begin
    LoadNPCArray;
    lo:=0
    ActivateClient;
    cleardebug;
    wait(10)
    writeln('Basicut made by GMK')
    writeln('color is set at: '+ inttostr(colo))
    ActivateClient;
    end;
    
    
    procedure chop;
    begin
    if FindColorSpiralTolerance(x,y,colo,52,26,468,260,3) then
    Mouse(x,y,1,1,true);
    li:=li+1
    wait(waitt + random(200))
    Getmousepos(x,y)
    if getcolor(x,y)=colo then
    chop;
    end;
    
    procedure drop; //Original
    begin
    m2:=224;
    m1:=621;
    ow:=1;
    li:=1;
    if invfull then
       begin
       repeat
       li:=li+1;
       ow:=ow+1;
       mouse(m1,m2,0,0,false)
       mouse(m1-45,m2+45,0,0,true)
       if ow=4 then
       m2:=m2+34;
       if ow=4 then
       ow:=0;
       m1:=m1+43;
       if m1=750 then
       m1:=578;
       until(li=24)
    m2:=445;
    m1:=578;
    repeat
    li:=li+1;
    Mouse(m1,m2,0,0,false)
    Mouse(m1-52,m2+16,0,0,true)
    m1:=43+m1;
    until(li=28)
       end;
    end;
    
    Procedure mouseit;
    begin
    Anti:= random(5);
    case Anti of
    1:movemousesplineex(51,57,1,1,10,35,65);
    2:movemousesplineex(80,80,1,1,10,35,65);
    3:movemousesplineex(127,75,1,1,10,35,65);
    4:movemousesplineex(100,59,1,1,10,35,65);
    5:movemousesplineex(110,10,1,1,10,35,65);
    end;
    end;
    
    Procedure Talkk;
    begin
    Anti:= Random(5);
    case Anti of
    1:typesend('hi all');
    2:typesend('im bored, im sooo bored ');
    3:typesend('the cake is a lie');
    4:typesend('quit staring at me');
    5:typesend('i wanna be a mod one day');
    end;
    end;
    
    procedure antiban;
    begin
    if lo=5 then
    begin
    wait(100)
    lo:=0
    Anti:= Random(5);
    case Anti of
    1:HoverSkill('woodcutting',false);
    2:pickupmouse;
    3:Talkk;
    4:mouseit;
    5:RandomMovement;
    end;
    end;
    end;
    
    Procedure Randoms;
    begin
    SolveChatRandom;
    if (FindFight) then
    begin
    RunTo('N',false)
    Wait(8500 + random(3500));
    RunTo('S',false)
    end;
    end;
    
    begin
    li:=0
    SetupSRL;
    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 - Jul 18, 2008 at 11:54 AM
  4. laxfool10
    Referrals:
    0

    laxfool10 Guest

    [Scar 3.15b]Basicut 4.0[Scar 3.15b]

    I keep getting Unknown Identifier 'Almost Logout' in the script

    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;
    1,19:typesend('white:');
    2,18:AlmostLogout;
    3,17,4,16:RandomMovement;
    6:typesend('Lol');
    7:typesend('Lol');
    8:typesend('my level is 99');
    9:typesend('i h8 this');
    12:typesend('red:Woodcuting Stinks');
    11:typesend('white:Woodcut Stinks');
    13:movemousesplineex(51,57,1,1,10,35,65);
    14:movemousesplineex(127,111,1,1,10,35,65);
    end;
    end;
    end;
     
  5. Unread #3 - Jul 18, 2008 at 2:57 PM
  6. GMK
    Joined:
    Aug 2, 2007
    Posts:
    395
    Referrals:
    0
    Sythe Gold:
    0

    GMK Forum Addict

    [Scar 3.15b]Basicut 4.0[Scar 3.15b]

    Progress reports:

    Alfred2
    -------basicut progress report-------
    Logs chopped: 189
    Time ran: 30 Minutes and 17 Seconds
    Ents avoided: 0
    -------basicut progress report-------
     
  7. Unread #4 - Jul 18, 2008 at 3:27 PM
  8. laxfool10
    Referrals:
    0

    laxfool10 Guest

    [Scar 3.15b]Basicut 4.0[Scar 3.15b]

    Thx for fixing that but now im getting another error. Unknown identifier 'use certersolver' in script. I have the latest scar and SRL.

    Procedure Randoms;
    Begin
    if findbox then
    solvebox;
    wait(10)
    Wait(13);
    FindTalk;
    UseCerterSolver := True
    UseSandwichSolver :=True
    wait(10)
    Solvepinball;
    Wait(10)
    begin
    if (FindFight) then
    begin
    RunTo('N',false)
    Wait(8500 + random(3500));
    RunTo('S',false)
    end;
    end;
    end;
     
  9. Unread #5 - Jul 19, 2008 at 9:13 AM
  10. SubZ
    Referrals:
    0

    SubZ Guest

    [Scar 3.15b]Basicut 4.0[Scar 3.15b]

    for me it chops 1 tree then i get this error
    [Runtime Error] : Out Of Range in line 1211 in script C:\Program Files\SCAR 3.15\includes\SRL/SRL/Core/AntiRandoms/AntiRandoms.scar
     
  11. Unread #6 - Jul 19, 2008 at 10:20 AM
  12. GMK
    Joined:
    Aug 2, 2007
    Posts:
    395
    Referrals:
    0
    Sythe Gold:
    0

    GMK Forum Addict

    [Scar 3.15b]Basicut 4.0[Scar 3.15b]

    hmm search up scar subversion on google and install that. sounds like an internal error.
     
  13. Unread #7 - Jul 19, 2008 at 5:42 PM
  14. pure pk l t
    Joined:
    Mar 10, 2007
    Posts:
    59
    Referrals:
    0
    Sythe Gold:
    0

    pure pk l t Member

    [Scar 3.15b]Basicut 4.0[Scar 3.15b]

    same error:
    [Runtime Error] : Out Of Range in line 1211 in script C:\Program Files\SCAR 3.15\includes\SRL/SRL/Core/AntiRandoms/AntiRandoms.scar
    Scar 3,15b and newest SRL
     
  15. Unread #8 - Jul 19, 2008 at 5:54 PM
  16. desperaux
    Referrals:
    0

    desperaux Guest

    [Scar 3.15b]Basicut 4.0[Scar 3.15b]

    im getting Line 125: [Error] (15076:1): Unknown identifier 'UseCerterSolver' in script ill follow ure advice for the other guy that got it..
     
  17. Unread #9 - Jul 19, 2008 at 6:09 PM
  18. desperaux
    Referrals:
    0

    desperaux Guest

    [Scar 3.15b]Basicut 4.0[Scar 3.15b]

    now when i reinstalled it says cant move plugins when i try to add SVN....
     
  19. Unread #10 - Jul 19, 2008 at 7:24 PM
  20. gamerv08
    Referrals:
    0

    gamerv08 Guest

    [Scar 3.15b]Basicut 4.0[Scar 3.15b]

    ok i am total noob to scar but this looks hopefull
    :)
     
  21. Unread #11 - Jul 19, 2008 at 10:03 PM
  22. gamerv08
    Referrals:
    0

    gamerv08 Guest

    [Scar 3.15b]Basicut 4.0[Scar 3.15b]

    [Error] (254:11): Unknown identifier 'CreateTPAFromBMP' in script C:\Program Files\SCAR 3.15\includes\SRL/SRL/Core/Math.scar
    wat do i do to fix this?
     
  23. Unread #12 - Jul 23, 2008 at 6:10 PM
  24. GMK
    Joined:
    Aug 2, 2007
    Posts:
    395
    Referrals:
    0
    Sythe Gold:
    0

    GMK Forum Addict

    [Scar 3.15b]Basicut 4.0[Scar 3.15b]

    i updated the script try it now.
     
  25. Unread #13 - Jul 23, 2008 at 11:33 PM
  26. calebyung
    Referrals:
    0

    calebyung Guest

    [Scar 3.15b]Basicut 4.0[Scar 3.15b]

    problem,

    Include file C:\Program Files\SCAR 3.15\includes\SRL\SRL.scar does not exist.

    how to fix it?
     
  27. Unread #14 - Jul 24, 2008 at 9:24 PM
  28. hybanks2000
    Joined:
    Jan 21, 2007
    Posts:
    961
    Referrals:
    0
    Sythe Gold:
    0

    hybanks2000 Apprentice
    Banned

    [Scar 3.15b]Basicut 4.0[Scar 3.15b]

    very nice bean working on my other computer for about 20min so far
     
  29. Unread #15 - Jul 25, 2008 at 8:48 AM
  30. lostsoulparty
    Joined:
    Jul 17, 2008
    Posts:
    11
    Referrals:
    0
    Sythe Gold:
    0

    lostsoulparty Newcomer

    [Scar 3.15b]Basicut 4.0[Scar 3.15b]

    i've got the same problem as 'gamerv08'

    Line 58: [Error] (254:11): Unknown identifier 'CreateTPAFromBMP' in script C:\Program Files\SCAR 3.15\includes\SRL/SRL/Core/Math.scar

    is this me setting it up wrong, coz it seems to be working for everyone else fine :S
     
  31. Unread #16 - Jul 25, 2008 at 11:14 AM
  32. GMK
    Joined:
    Aug 2, 2007
    Posts:
    395
    Referrals:
    0
    Sythe Gold:
    0

    GMK Forum Addict

    [Scar 3.15b]Basicut 4.0[Scar 3.15b]

    thanks finally someone that knows how to run scar.
    cool tell me how much it raises you.
     
  33. Unread #17 - Jul 25, 2008 at 11:15 AM
  34. GMK
    Joined:
    Aug 2, 2007
    Posts:
    395
    Referrals:
    0
    Sythe Gold:
    0

    GMK Forum Addict

    [Scar 3.15b]Basicut 4.0[Scar 3.15b]

    That is a problem with ur srl most likely. OR you havent tried the newest version of basicut. try retrying it.
     
  35. Unread #18 - Jul 25, 2008 at 2:27 PM
  36. lostsoulparty
    Joined:
    Jul 17, 2008
    Posts:
    11
    Referrals:
    0
    Sythe Gold:
    0

    lostsoulparty Newcomer

    [Scar 3.15b]Basicut 4.0[Scar 3.15b]


    I think it must be a problem with my SRL i will try downloading a different version of scar and i have definbately got the most recent version of basicut but it is happening with all programmes so it must be soemthing my end, but from what i've seen great program ;) will try again when ive got my scar working :)
    Lostsoulparty

    (thnx for ur advice)
     
  37. Unread #19 - Jul 25, 2008 at 3:04 PM
  38. lostsoulparty
    Joined:
    Jul 17, 2008
    Posts:
    11
    Referrals:
    0
    Sythe Gold:
    0

    lostsoulparty Newcomer

    [Scar 3.15b]Basicut 4.0[Scar 3.15b]

    awesome, i just deleted and downloaded portable version and all is workin thnx, great script ;)
     
  39. Unread #20 - Jul 25, 2008 at 4:49 PM
  40. GMK
    Joined:
    Aug 2, 2007
    Posts:
    395
    Referrals:
    0
    Sythe Gold:
    0

    GMK Forum Addict

    [Scar 3.15b]Basicut 4.0[Scar 3.15b]

    your welcome!
    thanks for appreciating the work i do. :D
     
< Nebels's Catherby Lobby Fisher [Smart(w/ Reflection)] | [Scar 3.15b] Basicut 5.0! --- finnally fixed antirandoms! >

Users viewing this thread
1 guest


 
 
Adblock breaks this site