Results 1 to 18 of 18

Thread: LittlePineWood >> ~90k exp/hr <<

  1. #1
    Join Date
    Feb 2012
    Posts
    119
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default LittlePineWood >> ~90k exp/hr <<

    LittlePineWood
    An innovative Artic Pine woodcutter. During personal testing I averaged ~90k exp/hr! This was using Dragon hatchet, 90+ Wc, No lumberjack, Beavers , and Urns.

    2 hour 15 min Proggy, Without Urns
    Simba Code:
    ***********************************************************
    ****************   LittlePineWood V0.2   ******************
    ***********************************************************

    ////////////////////  Experience Gained  158489
    ////////// Time Running 7648 Seconds   Exp/Hr 74602



    Script is currently in a BETA stage.
    All feedback will be appreciated. Please be helpful when reporting bugs and list all details to properly help me.

    Method
    • Uses alch to continually chop
    • Uses innovative droping method when inventory is full


    Requirements
    • High Woodcutting
    • Fremrick Isles Completed


    Recommendations
    • Full Lumberjack
    • Inferal Adaze
    • Strong Woodcutting Urns
    • Beaver Pouches


    Features TBA (To be added)
    • Fully automatic Urns
    • Fully automatic Summoning
    • Fix "unproductive" issues
    • Onscreen Proggy (Next in Line)
    • More....


    Simba Code:
    V0.2 -- Fixed Lighting fire issues, and various other stuff
    V0.3 -- Refixed Lighting fire issues (should not light a fire on top of fire now), added proggy, fixed various issues.

    Suggested Inventory and Location set up
    Works best at the 2 western most trees! (More space to light logs)


    Make sure you have a fire staff equpied and a log in Invy Slot 24!
    Last edited by Littellj; 04-02-2012 at 05:31 PM.

  2. #2
    Join Date
    Feb 2012
    Posts
    119
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    reserved

  3. #3
    Join Date
    Jan 2010
    Posts
    1,414
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Great job on the release.
    Simba Code:
    (* Main *)

    repeat
      WriteLn('I am an idiot!');
    until(False);

  4. #4
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    Nice release, might use this, thanks anyway!

  5. #5
    Join Date
    Feb 2012
    Posts
    317
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Waw great job ill test this out soon probs! and it alches free magic xp aswell.

    But i think randoms would ruin this script.

  6. #6
    Join Date
    Feb 2012
    Posts
    119
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Xenophis View Post
    Waw great job ill test this out soon probs! and it alches free magic xp aswell.

    But i think randoms would ruin this script.
    What do you mean?

  7. #7
    Join Date
    Feb 2012
    Posts
    317
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    random events

  8. #8
    Join Date
    Feb 2012
    Posts
    119
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Xenophis View Post
    random events
    How would they ruin the script?

  9. #9
    Join Date
    Feb 2012
    Posts
    317
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Never mind bro.

  10. #10
    Join Date
    Mar 2012
    Location
    MW3
    Posts
    76
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Finally somebody releases an artic pine chopper <3 will test later

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

    Default

    This uses MoveMouse, isn't that a big red flag for macro detection?
    My scripts:
    Advanced Barb Agility Course(outdated), MonkeyThieverV0.11, MahoganyTableV0.4(outdated)
    Questions? I bet that for 98% of those, you'll find answer HERE

  12. #12
    Join Date
    Mar 2012
    Location
    Runescape, G.E
    Posts
    137
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    looks like i will be using this for 99 wc

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

    Default

    Quote Originally Posted by sir eska eau View Post
    This uses MoveMouse, isn't that a big red flag for macro detection?
    If you say so, what do you suggest instead?

    If your talking about the code below this simulates mouse keys and yohojo said it was safe.

    Simba Code:
    InvMMouse(DropsPattern[I])
          GetMousePos(X, Y);
          ClickMouse2(true);
          Wait(130+Random(20));

          MoveMouse(X, Y+38);
          ClickMouse2(true);
          Wait(130+Random(20));

          MoveMouse(X, Y+74);
          ClickMouse2(true);
          Wait(130+Random(20));

          MoveMouse(X, Y+105);
          ClickMouse2(true);
          Wait(130+Random(20));

          MoveMouse(X, Y+140);
          ClickMouse2(true);
          Wait(130+Random(20));
    Last edited by Littellj; 04-01-2012 at 03:48 PM.

  14. #14
    Join Date
    May 2007
    Location
    knoxville
    Posts
    2,873
    Mentioned
    7 Post(s)
    Quoted
    70 Post(s)

    Default

    you're supposed to use mouse() and mmouse.
    <TViYH> i had a dream about you again awkwardsaw
    Malachi 2:3

  15. #15
    Join Date
    Feb 2012
    Posts
    119
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Awkwardsaw View Post
    you're supposed to use mouse() and mmouse.
    I don't see what the big difference is, but I'll implement it into the next version.

  16. #16
    Join Date
    Jan 2010
    Posts
    1,414
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    MMouse and ClickMouse2 will be perfectly fine.
    Simba Code:
    (* Main *)

    repeat
      WriteLn('I am an idiot!');
    until(False);

  17. #17
    Join Date
    Mar 2012
    Location
    Canada
    Posts
    870
    Mentioned
    1 Post(s)
    Quoted
    5 Post(s)

    Default

    Well the problem is that you do not simulate mouse key at all.

    You make jump of different size. When you use mouskey, it would always be the same.
    My scripts:
    Advanced Barb Agility Course(outdated), MonkeyThieverV0.11, MahoganyTableV0.4(outdated)
    Questions? I bet that for 98% of those, you'll find answer HERE

  18. #18
    Join Date
    Feb 2012
    Posts
    119
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I did this to make sure that it would always hit the right spot, I didn't look into the numbers. If it really bothers you I'll even them out. I do agree it should be similar. I had originally thought that it was not clicking all the logs (so I changed the values). I now just think it was due to lag and will look into it. Thanks for your concern an feedback.

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
  •