Results 1 to 19 of 19

Thread: Woodcut and Arrow Shaft

  1. #1
    Join Date
    Sep 2007
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Woodcut and Arrow Shaft

    Name: Woodcutter and Arrow Shaft!

    Version: 1.0

    SRL/SCAR 4.0 / 3.11

    Comments:

    This is my first script and I'm happy with the way it has turned out. I haven't had a chance to test it extensively so use at your own risk. It does what I wanted it to do however. Any comments and criticisms are much appreciated

    Useage: Ensure your wood cutting axe is EQUIPPED and your knife is in THE FIRST SLOT.

  2. #2
    Join Date
    Sep 2006
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    cool ill try it right away and give you some feedback if u want!!!

  3. #3
    Join Date
    Sep 2006
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    it works quite well... but there is a problem with the login it just serches down the bttom of the screen. and also im not sure if u meant it to do this o not but when it cant find a tree it logs out but overall great job.
    keep it up.

  4. #4
    Join Date
    Sep 2007
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by king tut View Post
    it works quite well... but there is a problem with the login it just serches down the bttom of the screen. and also im not sure if u meant it to do this o not but when it cant find a tree it logs out but overall great job.
    keep it up.
    I don't think there is anything I can do about the login as that is a part of Scar/SRL. I didn't mean for the 'No-Tree-Logout' thing but I suppose it is a decent 'feature' despite being an accident

    Quote Originally Posted by king tut View Post
    cool ill try it right away and give you some feedback if u want!!!
    That would be much appreciated. I'd be really interested in how it does when it comes to Randoms and how it works out over a longer period of time (1h+).

  5. #5
    Join Date
    Jul 2007
    Posts
    25
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default good job

    thanx ill go try this and do best to get a proggy back soon keep them up

  6. #6
    Join Date
    Sep 2007
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Version 1.1 uploaded. It fixes the log in problem and nothing else

  7. #7
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    good work
    ~Hermen

  8. #8
    Join Date
    Aug 2007
    Posts
    31
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    doesnt work for me!

    i get this: Line 17: [Error] (14466:1): Unknown identifier 'SetupPlayers' in script C:\DOCUME~1\Tom\LOCALS~1\Temp\WoodchopAndShaft1.1. scar

    sorry if im not meant to post this on your post

  9. #9
    Join Date
    Sep 2007
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by tomd741 View Post
    doesnt work for me!

    i get this: Line 17: [Error] (14466:1): Unknown identifier 'SetupPlayers' in script C:\DOCUME~1\Tom\LOCALS~1\Temp\WoodchopAndShaft1.1. scar

    sorry if im not meant to post this on your post
    That sounds like an SRL error to me. Make sure you're running SRL 4.0 and SCAR 3.11

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

    Default

    Works pretty nicely TY XD

  11. #11
    Join Date
    Aug 2007
    Posts
    73
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    will test and could u possibly add SRL STATS?

  12. #12
    Join Date
    May 2007
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks, now I can get my skillers lvl up

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

    Default

    Good job, but you should read more about standards. Its 2 spaces, not one tab.

    Example:

    SCAR Code:
    program New;
    var
      I: Integer; // Its 2 spaces here also.
    begin
      begin
        Writeln('Begin');
        repeat
          Writeln('  Repeat');
          Inc(I);
          Writeln('    Stuff to repeat');
          Writeln('  Until(Statement True);');
        until(I = 1);
        if(I = 1)then
          Writeln('  If (Statement True) Then');
          Writeln('    without begin and end is also 2 spaces');
        if(I = 1)then
        begin
          Writeln('  If (Statement True) Then');
          Writeln('  begin ');
          Writeln('    This is an if()then with begin and end!');
          Writeln('  end;   ');
        end;
        Writeln('End;');
      end;
    end.

  14. #14
    Join Date
    Feb 2007
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I'm using script atm and it works great
    Only to bad that you need to wield the axe :P
    Mine skiller only has lvl1 Cb stats ..hehe

  15. #15
    Join Date
    Sep 2007
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by n3ss3s View Post
    Good job, but you should read more about standards. Its 2 spaces, not one tab.

    Example:

    SCAR Code:
    program New;
    var
      I: Integer; // Its 2 spaces here also.
    begin
      begin
        Writeln('Begin');
        repeat
          Writeln('  Repeat');
          Inc(I);
          Writeln('    Stuff to repeat');
          Writeln('  Until(Statement True);');
        until(I = 1);
        if(I = 1)then
          Writeln('  If (Statement True) Then');
          Writeln('    without begin and end is also 2 spaces');
        if(I = 1)then
        begin
          Writeln('  If (Statement True) Then');
          Writeln('  begin ');
          Writeln('    This is an if()then with begin and end!');
          Writeln('  end;   ');
        end;
        Writeln('End;');
      end;
    end.
    Oops.. It's just one of those bad habits I picked up from doing Java

  16. #16
    Join Date
    Sep 2007
    Posts
    501
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Doesn't work but that might just be me, here's the error I encountered:
    out of range in line 123 in script

  17. #17
    Join Date
    Jul 2007
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by KoKouKo View Post
    Doesn't work but that might just be me, here's the error I encountered:
    out of range in line 123 in script
    i getting the same thing

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

    Default

    nice job keep it up

  19. #19
    Join Date
    Aug 2007
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by damaster View Post
    nice job keep it up
    lol you can tell he's just a leecher,he probaly didn't even try it out, and ya, i get the same error, out of range on line 123, seems like it would work tho

    so i say GOODJOB

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. PWC Anywhere Shaft Maker
    By burnout in forum RS3 Outdated / Broken Scripts
    Replies: 17
    Last Post: 08-10-2007, 03:59 PM
  2. arrow shaft maker
    By nikshake2 in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 06-12-2007, 04:42 PM
  3. need reg log cutter and arrow shaft fletcher combo
    By tylerj11090 in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 06-11-2007, 04:08 PM
  4. My Log Cutter/Arrow Shaft Maker
    By I Pick Axes in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 10-13-2006, 09:28 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •