Results 1 to 6 of 6

Thread: Logik's Power Cutter Version 0.1

  1. #1
    Join Date
    Mar 2007
    Location
    Jersey
    Posts
    135
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Logik's Power Cutter Version 0.1

    Logik's Power Cutter Version 0.1

    • It cut's any tree and drops it
    • Records your drops


    • Future updates will have:
    • Banker
    • AntiBan
    • Anti Randoms
    • SRL Stats


    This is my second script ever and I made this one from scratch and no help from anyone here, though I would have loved help but I wanted to see what I could do on my own. Please no flamming or negative comments.

    • Some known errors are:
    • Will try to chop trees that you don't wont or aren't able to chop
    • Doesn't have anti ban or randoms
    • It was made by me :P and no help (which may be a problem)
    • And that it doesn't run at low health

  2. #2
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Nice start! No match for any more advanced powercutters, but not bad for your second script
    Interested in C# and Electrical Engineering? This might interest you.

  3. #3
    Join Date
    Mar 2007
    Location
    Jersey
    Posts
    135
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thank you very much smartz! well yes I have been studying the language and its very easy to understand now though I may only know a little atleast I am getting somewhere, and version 0.2 is coming around the corner because I used the SRL woodcutting file to help me with the axe head part and I should give credit to all the people who made the woodcutting.scar file because i copied and pasted the axe head find and attach code

  4. #4
    Join Date
    Feb 2007
    Posts
    433
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    looks really good for a second script ok so what i noticed is that (this is for it only chopping one tree) so u have it like this
    SCAR Code:
    procedure ChopTree;
    begin
    repeat
    if (FindMSColor(x,y,TreeColor)) then
    Mouse(x,y,2,2,true);
    Wait((waittime)+random(200));
    until(InvFull)
    end;
    and u should have it like this
    SCAR Code:
    procedure ChopTree;
    begin
    repeat
    if (FindMSColor(x,y,TreeColor)) then
    Mouse(x,y,2,2,false);
    Wait((waittime)+random(200));
    ChooseOption(x,y,'' + TypeOfTree +'');
    until(InvFull)
    end;
    and also up in the const have
    SCAR Code:
    TypeOfTree = 'Tree';//Type Of Tree To Cut
    oh and also i just noticed in the drop procedure u have
    SCAR Code:
    procedure Drop;
    begin
    GameTab(4);
    DropTo(1,28);
    Load := Load + 1;
    end;
    so if someone doesnt have axe weilded than they would drop axe but keep trying to cut tree :/ so u should do something like this...
    SCAR Code:
    procedure Drop;
    begin
      repeat
       DropAllLogs;
      until(InvEmpty)
     Loads:= Loads + 1
    end;
    but otherwise really good for second script add me on MSN if u want help

  5. #5
    Join Date
    Mar 2007
    Location
    Jersey
    Posts
    135
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Lol thank you very much but believe it or not in my second version i am making and my power miner with anti randoms and ban i have fixed those things lol :P but thanks for the heads up and positive comment

    EDIT: problem with what you wanted to change is that its slow as anything when it drops and cuts and when i tried to change it, it was too fast for it to cut the trees

  6. #6
    Join Date
    Feb 2007
    Posts
    433
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SRL] Iron Power-Miner Version 5
    By Lacky in forum RS3 Outdated / Broken Scripts
    Replies: 18
    Last Post: 12-26-2007, 09:35 PM
  2. My Power Cutter :)
    By kooldude in forum RS3 Outdated / Broken Scripts
    Replies: 10
    Last Post: 12-01-2007, 01:43 PM
  3. Help with my power cutter
    By shadows-collide in forum News and General
    Replies: 29
    Last Post: 06-25-2007, 04:37 PM
  4. [RS2][SRL]PoweR CutteR
    By JuKKa in forum RS3 Outdated / Broken Scripts
    Replies: 23
    Last Post: 12-02-2006, 10:06 AM
  5. [RS2][SRL] Gils Power Mager Version 2.0 By Gil Need Testers!
    By Gilbert in forum RS3 Outdated / Broken Scripts
    Replies: 4
    Last Post: 10-30-2006, 12: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
  •