Page 2 of 3 FirstFirst 123 LastLast
Results 26 to 50 of 63

Thread: SRL SC #2 Results!

  1. #26
    Join Date
    Jan 2007
    Location
    USA
    Posts
    1,782
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I would also like to take the opportunity to thank pwnaz0r for helping me mark the scripts. I really appreciate it
    Your welcome. I didn't know you would copy exactly what I said though. I would have put a little more thought into it

    Join the fastest growing merchanting clan on the the net!

  2. #27
    Join Date
    Apr 2007
    Location
    Australia
    Posts
    4,163
    Mentioned
    9 Post(s)
    Quoted
    19 Post(s)

    Default

    Quote Originally Posted by the scar noob View Post
    The Claw


    PHP Code:
    procedure FindRandoms;
    begin
      FindNormalRandoms
    ;
      if 
    FindFight then
      begin
        RunTo
    (RunDirecTrue);
        
    Wait(15000 random(5000));
        
    RunBack;
        
    ActivateClient;
      
    end;
    end
    Why don't you use the Flag or FFlag function instead of a wait?
    The wait is so we know for sure the creature isnt attacking us

    PHP Code:
    if 4 then
        begin
          GameTab
    (2);
          
    HoverSkill('Fishing'False);
        
    end else
          
    GameTab(Z);
        
    GameTab(4); 
    i prefer adding a small wait between the 2 GameTab?
    personal preferance, if you use it feel free to add one in. i dont think it matters that much

    PHP Code:
    function FindFish(var xyIntegerCx1Cy1Cx2Cy2Integer): Boolean
    Where aren't you using GetMousePos?
    why would i be? lol

    These are only my coments, my personal ones..
    Great script and i like the SkipBoxArray's in there as i'm a beginner at those
    Thanks

  3. #28
    Join Date
    Jan 2007
    Location
    Kansas
    Posts
    3,760
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Congrats Claw. I love how you script. Depending on what kind of script and the restrictions are in the next one, I might join. But I say that every time


  4. #29
    Join Date
    Feb 2006
    Location
    L.A, USA
    Posts
    1,632
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks Star for grading. :]

    Wow I really love The Claw's script, and Markus the report looks cool.

  5. #30
    Join Date
    Feb 2007
    Location
    Het ademt zwaar en moedeloos vannacht.
    Posts
    7,211
    Mentioned
    26 Post(s)
    Quoted
    72 Post(s)

    Default

    Quote Originally Posted by Starblaster100 View Post
    Also, waiting a set period of time each time it not recommended. You may want to find a way to realise your character hasn't been fishing for a certain period of time and act accordingly to improve the script.
    Let's look again at WaitWhileFishing, I added a few comments:
    PHP Code:
    procedure WaitWhileFishing;
    var
      
    icwt integer;
    begin
      
    if(not(loggedin)) then exit;
      
    Gametab(4);
      
    marktime(wt); //Mark the time
      
    ic := InvCount//Store the inventory count 
    This part will record the no. of items in the inventory and the time.
    PHP Code:
      repeat
      
    //Some failsafes here
        
    if (ic <> InvCountthen //if the stored count isnt the real count then
        
    begin
          MarkTime
    (wt); //New time
          
    ic := InvCount//Store the current count
        
    end
    It checks the no. of items again, if it has changed, ic will get the new number, and it'll mark the time again in wt.

    PHP Code:
      until(timefrommark(wt)>=FishTime*1000); 
    This will break if the stored time is bigger then the waiting time the user has set. As the timer will be reset every time the inventory changes (and it changes if we fish), it'll break if we haven't catch a fish in the last x seconds.

    Quote Originally Posted by Starblaster100 View Post
    Also, do you want to click near the water color, even after you have clicked the fishing spot symbol in this script?
    Yes, the symbol isn't always close enough to the water to see the fishing spots. This will walk closer to the water to ensure the spots are visible.
    I made a new script, check it out!.

  6. #31
    Join Date
    Sep 2006
    Posts
    179
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Starblaster100 View Post
    Remember, "Practice makes perfect."
    umm sorry to say but, thats not entirely accurate. Practice makes exactness. Imperfect practice makes exact imperfectness. However i believe you were wanting to say "Perfect practice makes perfect." XD sorry something i learned from Dr. William E. McHenry Director of MCJORTC program. (my old SMI :/ )
    http://www.fenjer.com/adnan/SRLStats/391.png
    http://img341.imageshack.us/img341/4...irbypb6lf8.gif
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig
    i <3 jagex

  7. #32
    Join Date
    Feb 2007
    Location
    Het ademt zwaar en moedeloos vannacht.
    Posts
    7,211
    Mentioned
    26 Post(s)
    Quoted
    72 Post(s)

    Default

    Practicing doesn't make perfect, perfect practicing makes perfect
    - Supreme Grand Master Joo Bang Lee
    I made a new script, check it out!.

  8. #33
    Join Date
    Mar 2007
    Posts
    1,700
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Quote Originally Posted by markus View Post
    Practicing doesn't make perfect, perfect practicing makes perfect
    - Supreme Grand Master Joo Bang Lee

    Practice doesn't make perfect, practice makes permanent.
    - Jeff Hood, King of Dunbar Band.


    rofl

  9. #34
    Join Date
    Feb 2006
    Location
    London, England
    Posts
    2,045
    Mentioned
    2 Post(s)
    Quoted
    0 Post(s)

    Default

    It's a saying for god's sake... hence the quote marks.
    SRL Wiki | SRL Rules | SRL Stats
    Ultimate SCAR Scripting Tutorial | Starblaster100's Auth System | Join the official SRL IRC now!


    Help Keep SRL Alive! Please disable Advert Blockers on SRL! Help Keep SRL Alive!


  10. #35
    Join Date
    Dec 2006
    Posts
    2,244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Congratz everyone but mostly the claw

    hey everyone i wanna use a powerfisher is the claws srl 4 compatible

  11. #36
    Join Date
    Apr 2007
    Location
    Australia
    Posts
    4,163
    Mentioned
    9 Post(s)
    Quoted
    19 Post(s)

    Default

    yup lol..link is in my sig.

    thanks to everyone

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

    Default

    I don't recommend using types. SCAR can't handle types correctly...
    Types work correctly for me?

  13. #38
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,691
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default

    Quote Originally Posted by n3ss3s View Post
    Types work correctly for me?
    http://www.freddy1990.com/forums/index.php?topic=1150.0



    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

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

    Default

    Newbie
    Lawl, youre newbie at freddys forums

    Too lazy to read the thread, but what I know that types work perfectly for me, if we are talking of the same type.

    I have this type, "Ess" in my KYAB script, and it works perfectly?

  15. #40
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,691
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default

    Quote Originally Posted by n3ss3s View Post
    Lawl, youre newbie at freddys forums

    Too lazy to read the thread, but what I know that types work perfectly for me, if we are talking of the same type.

    I have this type, "Ess" in my KYAB script, and it works perfectly?
    Sigh, whats the point if you don't read the thread..



    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

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

    Default

    Now I read it, but I still dont understand, like, okay dont get me like Id be trying to say you dont know your code, but if you have a function or a procedure named ChangeStellingen, isnt it expected that it changes it? Sorry, im propably talking just bs, but im pretty confused..

    EDIT: sry for hijacking the thread

  17. #42
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,691
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default

    You should read some lower posts too.
    Anyway, you are right, back on topic.



    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

  18. #43
    Join Date
    Aug 2007
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Congratz to Claw, he also has good mining scripts, and also good luck to everyone else in the future.
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  19. #44
    Join Date
    Jul 2007
    Location
    Right now? Chair.
    Posts
    8,488
    Mentioned
    3 Post(s)
    Quoted
    12 Post(s)

    Default

    /me gets on his knees to worship the claw

    I & I know Zion. It is in the spirit, body and mind of every one of us
    RMouse(obj: TMSIObject): boolean;

  20. #45
    Join Date
    Jun 2007
    Posts
    56
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Oooooh, Nice scripts and nice job to all of them!

  21. #46
    Join Date
    Jun 2007
    Location
    Belgium
    Posts
    333
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Gratz Claw, that's a real beauty.

    Hopefullly i can join in next time.

  22. #47
    Join Date
    Aug 2007
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    congrats claw!

    also thanks SB for putting so much effort into your analysis of each of our scripts, it was very detailed and now i know what i need to do to clean it up.

  23. #48
    Join Date
    May 2007
    Location
    NSW, Australia
    Posts
    2,823
    Mentioned
    3 Post(s)
    Quoted
    25 Post(s)

    Default

    Well done everyone who enterd.

    Also Star Goodjob on marking all those scripts, you wrote everything in detail.

    All good. Congratz Claw on winning

  24. #49
    Join Date
    Jan 2007
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I tested those scripts too and The Claw's was best, so he deserved the win.
    Congratz.

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

    Default

    Oh, seems like I forgot to thank you Star about the marking, I dont think anyone else could do better

Page 2 of 3 FirstFirst 123 LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. results are here
    By Main in forum News and General
    Replies: 8
    Last Post: 02-20-2009, 03:32 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
  •