Page 1 of 3 123 LastLast
Results 1 to 25 of 54

Thread: Burt's Tree Muncher (First Script)

  1. #1
    Join Date
    Mar 2007
    Posts
    75
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default [DIVI]Burt's Tree Muncher [SRL 3.81]

    Hello, This is my first script, Im learning. Its a power chopper for Trees Oaks Willows and Yews. It has anti ban and anti randoms. Please post proggys and bugs.


    ~Burt

    Proggies

    ^>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> > >>>
    ^ Burts Tree Muncher
    ^ Version: 1.7
    ^ Log Type Oak.
    ^ Logs cut 700.
    ^ Loads done 25.
    ^ Worked For 2 Hours, 4 Minutes and 59 Seconds
    ^>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> > >>>

    ^>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> >>>
    ^ Burts Tree Muncher
    ^ Version: 1.2
    ^ Logs cut 162.
    ^ Loads done 6.
    ^ Worked For 21 Minutes and 29 Seconds
    ^>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> >>>

    ^>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> >>>
    ^ Burts Tree Muncher
    ^ Version: 1.2
    ^ Logs cut 162.
    ^ Loads done 6.
    ^ Worked For 21 Minutes and 29 Seconds
    ^>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> >>>

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

    Default

    I don't see anything.

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

    Default

    I changed a tiny thing its up again

  4. #4
    Join Date
    Jul 2007
    Location
    England
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hey Burt

    This script looks good, it has AntiBan and has AntiRandom support. Here is a progress report I just got from your script =]

    Code:
    ^>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    ^ Burts Tree Muncher
    ^ Version: 1.0
    ^ Logs cut 27.
    ^ Loads done 1.
    ^ Worked For 1 Minutes and 3 Seconds
    ^>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

  5. #5
    Join Date
    Mar 2007
    Posts
    75
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yea i fixed all the others errors and going to use the mouse function you specified. Thanks a bunch for your feed back! Also can you take off you attachment i got it coverd :P

  6. #6
    Join Date
    Jul 2007
    Location
    England
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I just found a bug =] I got a dwarf and it did not solve it. It might be cause you are missing FindRandoms; in a place where it is needed. I am not sure.

    -Nitro

  7. #7
    Join Date
    Mar 2007
    Posts
    75
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hmmm illl look into that it seems it doesnt to randoms when it requires you to talk to some one. can you help me?


    EDIT fixed the drop problem

  8. #8
    Join Date
    Jul 2007
    Location
    England
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I sure can

    I think you have to add to your randoms something like

    SCAR Code:
    if FindTalk then
    DoBlah;
    //Whatever comes next

    -Nitro

  9. #9
    Join Date
    Mar 2007
    Posts
    75
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    oooooh I found out why it doesnt talk to the randoms editing as Version 1.2


    Edit: I dont thinks it that Nitro its this

    SCAR Code:
    NickNameBMP := CreateBitmapMaskFromText(Players[CurrentPlayer].Nick, UpChars)

    I forgot the ; on it so it should be this

    SCAR Code:
    NickNameBMP := CreateBitmapMaskFromText(Players[CurrentPlayer].Nick, UpChars);

    It should work now

  10. #10
    Join Date
    Jul 2007
    Location
    England
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yeah that is it, good job on finding it I wouldn't of been able to spot that hehe.

    -Nitro

  11. #11
    Join Date
    Mar 2007
    Posts
    75
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Make sure you get 1.2 i just added it

    Can you remove your post with all the things I should fix, I fixed em. I dont like scrolling down a lot :P

  12. #12
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    3 posters in a one page long thread? lol
    Thats scary nitro!
    Jk, good job with helping, would deserve rep++ if rep wouldnt be disabled.

    Your talking in a bit weird way Not weird, different

    EDIT: Oh and about your main loop, to save space use cases instead of huge list of if()then
    . like
    SCAR Code:
    case TreeType of
    'Oak': begin
    //////////////////////// code here///////////////
            end;
    'Willow':....
    end; // the case needs an end too.

  13. #13
    Join Date
    Jul 2007
    Location
    England
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Another progress report =]

    Code:
    ^>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    ^ Burts Tree Muncher
    ^ Version: 1.0
    ^ Logs cut 84.
    ^ Loads done 3.
    ^ Worked For 7 Minutes and 12 Seconds
    ^>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    I think your next goal should be standardising your script,

    How you standardise:

    * 2 spaces to the code after a begin
    * 2 spaces to the code after a repeat
    * 2 spaces back for an end
    * 2 spaces back for an until
    * 2 spaces after a case
    * 2 spaces after a then without a begin after it standardisation here,

    Taken from JAD's Learning the things it takes to become an SRL member! tutorial


    Also another way of making it look neat:

    Not Neat:

    SCAR Code:
    wclvl;

    Neat:

    SCAR Code:
    WcLvl;

    Basically you put a capital on every first letter of anything not in bold.

    -Nitro

    EDIT:
    About my talking in weird ways... I know when I'm helping I like having a formal way of speaking and whenever I'm commenting I like to have an informal way, however sometimes they mix and it looks a bit different, but hey, I do try =]

    Also, it makes me feel happy to help people, that's why I will spend ages with someone helping them until they are comfortable with what everything means.

    P.S Sorry for the long post again lol.

  14. #14
    Join Date
    Mar 2007
    Posts
    75
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Lol... Yea I read that from JAD I will do that soon

  15. #15
    Join Date
    Mar 2007
    Posts
    75
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nirtro Im not sure on how to do this but how can I termeniate the script if the axe head is broken?

  16. #16
    Join Date
    Jul 2007
    Location
    England
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Burt View Post
    Nirtro Im not sure on how to do this but how can I termeniate the script if the axe head is broken?
    In Wood Cutting now axe heads don't break

    -Nitro

  17. #17
    Join Date
    Jul 2007
    Location
    Massachusetts
    Posts
    896
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Burt View Post
    Nirtro Im not sure on how to do this but how can I termeniate the script if the axe head is broken?
    Well Im not nitro, but I can help

    try making a bitmap of a broken axe, then do something like this
    SCAR Code:
    If findbitmap(brokenaxe, x, y);
    then
    logout;
    exit;
    else
    end;

    I working on a wcer to, but its a draynor wcer and banker that cuts the best kind of logs you can and banks them

    BTW I might plus rep you, good first script!

    ??axes still break...

  18. #18
    Join Date
    Mar 2007
    Posts
    75
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Doing what u said ATM

    EDIT: but wouldn't i have to make bitmaps of all the axe heads because not every person uses a rune axe..

  19. #19
    Join Date
    Jul 2007
    Location
    Massachusetts
    Posts
    896
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nope, just set the tolerance higher

    I dk how to do this with bitmaps, but its easy with a dmt

    the tolerance will allow the colors to be a little different. Really high tolerance, and the color will barely matter, just the shape.

  20. #20
    Join Date
    Mar 2007
    Posts
    75
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Finished DTM n stuff testing now.

  21. #21
    Join Date
    Mar 2007
    Posts
    75
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Can some one help me with my DTMs i made one but iam not sure how to do it the right way because it didnt work. this is my only first day of learning scar...

  22. #22
    Join Date
    Jul 2007
    Location
    England
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    RuneScape made an update so It will not fall off any more and any broken ones are now fixed, however mining picks still do

    http://news.runescape.com/newsitem.ws?id=868

    Go down to where it says 'New Random Event'

    (Last paragraph)

    This means, it will be easier for you in the long run.

    @Macrosoft, Anyone can help I just decided to help him because he had made an effort, but no one had posted anything, so I went to test it out, but there quite a few errors. I felt that just fixing and posting wouldn't let Burt know how I fixed them and be able to learn from it, So I wrote down every error and showed how to fix it so he could understand better.

    -Nitro

  23. #23
    Join Date
    Mar 2007
    Posts
    75
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I know but iam talking about when the axe gets broken i want the script ot terminate not keep on going

  24. #24
    Join Date
    Mar 2007
    Posts
    75
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  25. #25
    Join Date
    Mar 2007
    Posts
    75
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    1.4 released i think this script is better than ever!

Page 1 of 3 123 LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. First Script- Regular Tree Power Chopper
    By chris17 in forum First Scripts
    Replies: 17
    Last Post: 02-12-2008, 07:58 PM
  2. Phonokins tree muncher
    By phonokin in forum RS3 Outdated / Broken Scripts
    Replies: 8
    Last Post: 08-16-2007, 10:43 PM
  3. Burts Tree Muncher
    By Burt in forum First Scripts
    Replies: 4
    Last Post: 08-03-2007, 03:10 AM
  4. Phonokins Tree Muncher
    By phonokin in forum First Scripts
    Replies: 2
    Last Post: 04-11-2007, 08:43 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
  •