Page 2 of 11 FirstFirst 1234 ... LastLast
Results 26 to 50 of 268

Thread: The 250m Scripting Competition

  1. #26
    Join Date
    Mar 2012
    Location
    127.0.0.1
    Posts
    3,383
    Mentioned
    95 Post(s)
    Quoted
    717 Post(s)

    Default

    Time to hop on another account.

  2. #27
    Join Date
    Jun 2007
    Location
    The land of the long white cloud.
    Posts
    3,702
    Mentioned
    261 Post(s)
    Quoted
    2006 Post(s)

  3. #28
    Join Date
    Aug 2014
    Location
    Australia
    Posts
    932
    Mentioned
    53 Post(s)
    Quoted
    495 Post(s)

    Default

    Quote Originally Posted by Harrier View Post
    It's because we're old
    Hey, I'm an OS (as in age, not version) player too and I can't @#$%ing stand RS3 and what Jagex have done to my beloved RuneScape, but that hasn't stopped me from learning how to script for it. There's nothing stopping you from learning the very minor scripting differences between the two games and includes and entering the competition yourself.

    Quote Originally Posted by o0Matthius0o View Post
    I feel like incurable has an unfair advantage. Pros shouldnt be allowed!!!
    Not even close, but thank you for saying so.



    New to scripting? Procedures & Functions for Beginners
    Do you use your computer at night? Just get f.lux

  4. #29
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

  5. #30
    Join Date
    Jun 2007
    Location
    The land of the long white cloud.
    Posts
    3,702
    Mentioned
    261 Post(s)
    Quoted
    2006 Post(s)

    Default

    Quote Originally Posted by Ashaman88 View Post
    Ashaman89 wants to sign up... no that's not me...


    muahahah
    I see what you've been doing. Sneaky sneaky ashaman

    This isn't me. Honest

  6. #31
    Join Date
    Feb 2013
    Location
    The Boonies
    Posts
    203
    Mentioned
    9 Post(s)
    Quoted
    70 Post(s)

    Default

    Quote Originally Posted by The Mayor View Post
    You could write a multiplayer multi-city miner and banker with breaks in 250 lines if you knew what you were doing and made use of the SRL6 include.
    Oh dear.

  7. #32
    Join Date
    Jun 2007
    Location
    The land of the long white cloud.
    Posts
    3,702
    Mentioned
    261 Post(s)
    Quoted
    2006 Post(s)

  8. #33
    Join Date
    Mar 2013
    Location
    Argentina
    Posts
    758
    Mentioned
    27 Post(s)
    Quoted
    365 Post(s)

    Default

    Quote Originally Posted by The Mayor View Post
    250 lines is firm. You could write a multiplayer multi-city miner and banker with breaks in 250 lines if you knew what you were doing and made use of the SRL6 include.
    im not sure about this heh, because of the use of SRL player form basically.. My script is 100 lines just with the setup and if you add the custom objectfinder i start the script at 150 lines heh!

    it's probably possible anywaay but clearly out of my league lolz.

    Something around 350 lines would be waay easier. But whats the competition about if there no real challenge? 250 lines it is

  9. #34
    Join Date
    Aug 2014
    Location
    Australia
    Posts
    932
    Mentioned
    53 Post(s)
    Quoted
    495 Post(s)

    Default

    Quote Originally Posted by undorak7 View Post
    im not sure about this heh, because of the use of SRL player form basically.. My script is 100 lines just with the setup and if you add the custom objectfinder i start the script at 150 lines heh!

    it's probably possible anywaay but clearly out of my league lolz.

    Something around 350 lines would be waay easier. But whats the competition about if there no real challenge? 250 lines it is
    I'm a little skeptical too, but if Mayor and others are confident that it's possible, then I'll believe it. I think the real challenge isn't the script idea itself but making it efficient enough to be done in 250 lines.



    New to scripting? Procedures & Functions for Beginners
    Do you use your computer at night? Just get f.lux

  10. #35
    Join Date
    Nov 2007
    Location
    46696E6C616E64
    Posts
    3,069
    Mentioned
    44 Post(s)
    Quoted
    302 Post(s)

    Default

    Now if only I could enter. Good luck to everyone participating
    There used to be something meaningful here.

  11. #36
    Join Date
    Jun 2007
    Location
    The land of the long white cloud.
    Posts
    3,702
    Mentioned
    261 Post(s)
    Quoted
    2006 Post(s)

  12. #37
    Join Date
    Dec 2006
    Location
    Program TEXAS home of AUTOERS
    Posts
    7,934
    Mentioned
    26 Post(s)
    Quoted
    237 Post(s)

    Default

    Good luck! This should be interesting, and also great idea!

    ~P1nky

  13. #38
    Join Date
    Jan 2014
    Posts
    147
    Mentioned
    7 Post(s)
    Quoted
    75 Post(s)

    Default

    A bit busy at the moment but will try to participate

    Sign me up

  14. #39
    Join Date
    Jun 2007
    Location
    The land of the long white cloud.
    Posts
    3,702
    Mentioned
    261 Post(s)
    Quoted
    2006 Post(s)

    Default

    Quote Originally Posted by uhit View Post
    A bit busy at the moment but will try to participate

    Sign me up
    Done! You've got just under 4 weeks; plenty of time to write 250 lines!

  15. #40
    Join Date
    Nov 2012
    Location
    OKC
    Posts
    123
    Mentioned
    5 Post(s)
    Quoted
    56 Post(s)

    Default

    By the way. I'm in

  16. #41
    Join Date
    Aug 2014
    Location
    Australia
    Posts
    932
    Mentioned
    53 Post(s)
    Quoted
    495 Post(s)

    Default

    Another question, how will code standards affect the line count requirement? For example, some of us do this:

    Simba Code:
    if (condition) then
      DoStuff();

    ... while others do this:

    Simba Code:
    if (condition) then DoStuff();

    I plan to use the full 250 lines if necessary so it's important to know, imo.



    New to scripting? Procedures & Functions for Beginners
    Do you use your computer at night? Just get f.lux

  17. #42
    Join Date
    Jan 2012
    Location
    East Coast
    Posts
    733
    Mentioned
    81 Post(s)
    Quoted
    364 Post(s)

    Default

    Quote Originally Posted by Incurable View Post
    Another question, how will code standards affect the line count requirement? For example, some of us do this:

    Simba Code:
    if (condition) then
      DoStuff();

    ... while others do this:

    Simba Code:
    if (condition) then DoStuff();

    I plan to use the full 250 lines if necessary so it's important to know, imo.
    It will probably need to be formatted with proper pascal standards, and I assume you would want to use the fomatter.sex to condense everything to as small as possible.

  18. #43
    Join Date
    Jun 2007
    Location
    The land of the long white cloud.
    Posts
    3,702
    Mentioned
    261 Post(s)
    Quoted
    2006 Post(s)

    Default

    Quote Originally Posted by o0Matthius0o View Post
    By the way. I'm in
    Done! GL

    Quote Originally Posted by Incurable View Post
    Another question, how will code standards affect the line count requirement? For example, some of us do this:

    Simba Code:
    if (condition) then
      DoStuff();

    ... while others do this:

    Simba Code:
    if (condition) then DoStuff();

    I plan to use the full 250 lines if necessary so it's important to know, imo.
    I'm not too worried about 1 line if statements. I don't want to see

    Simba Code:
    if bankScreen.isOpen() then begin writeLn('Bank is open'); depositStuff(); withdrawStuff(); closeBank(); end;
    Last edited by The Mayor; 10-14-2014 at 08:24 PM.

  19. #44
    Join Date
    Sep 2012
    Location
    Here.
    Posts
    2,007
    Mentioned
    88 Post(s)
    Quoted
    1014 Post(s)

    Default

    Quote Originally Posted by The Mayor View Post
    Done! GL



    I'm not too worried about 1 line if statements. I don't wan't to see

    Simba Code:
    if bankScreen.isOpen() then begin writeLn('Bank is open'); depositStuff(); withdrawStuff(); closeBank(); end;
    IE: 1 semicolon per line, maximum.

    Likewise, I'd assume if you fight so hard to get as many things in as few lines as possible, then you're bound to lose points on standards simply by having ugly code (a good idea to know if your code is ugly is whether you - or anyone else - could read it a year from now and still know what's happening).

  20. #45
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Could I enter a script that I started development on previously, but have not completed or released?

    The line limit sucks btw, what's the reasoning behind that?

    Question, can we pull snippets from previous works? e.g. I generally build off the same script skeleton & custom TPA/ATPA stuff, is that allowed?
    Last edited by KeepBotting; 10-14-2014 at 09:42 PM.
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Badâ„¢ before everyone gets laser pistols

  21. #46
    Join Date
    Jun 2007
    Location
    The land of the long white cloud.
    Posts
    3,702
    Mentioned
    261 Post(s)
    Quoted
    2006 Post(s)

    Default

    Quote Originally Posted by KeepBotting View Post
    Could I enter a script that I started development on previously, but have not completed or released?

    The line limit sucks btw, what's the reasoning behind that?

    Question, can we pull snippets from previous works? e.g. I generally build off the same script skeleton & custom TPA/ATPA stuff, is that allowed?
    Yes, you can use code that you have written in the past as long as it meets the script criteria and you haven't released it previously.

    The 250 line limit is there for a number of reasons, one of which is to teach you to make use of the include and avoid an unnecessary custom functions. Do you want to enter?

  22. #47
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    Quote Originally Posted by The Mayor View Post
    Yes, you can use code that you have written in the past as long as it meets the script criteria and you haven't released it previously.

    The 250 line limit is there for a number of reasons, one of which is to teach you to make use of the include and avoid an unnecessary custom functions. Do you want to enter?
    250 lines pfft, im glad i can't participate with this competition. my setup is most of the times 100-200 lines already (custom antiban etc)

  23. #48
    Join Date
    Jun 2007
    Location
    The land of the long white cloud.
    Posts
    3,702
    Mentioned
    261 Post(s)
    Quoted
    2006 Post(s)

    Default

    Quote Originally Posted by hoodz View Post
    250 lines pfft, im glad i can't participate with this competition. my setup is most of the times 100-200 lines already (custom antiban etc)
    200 line antiban, you'd get rekt in this competition

  24. #49
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    Quote Originally Posted by The Mayor View Post
    200 line antiban, you'd get rekt in this competition
    2scared4me


    edit: get on my level

    edit: edit: get rekt

  25. #50
    Join Date
    Feb 2012
    Location
    Norway
    Posts
    995
    Mentioned
    145 Post(s)
    Quoted
    596 Post(s)

    Default

    Quote Originally Posted by Kevin View Post
    1 semicolon per line, maximum.
    easy:
    if bankScreen.isOpen() then begin begin writeLn('Bank is open') end begin depositStuff() end begin withdrawStuff() end begin closeBank() end end
    oh wait!! That no semicolons and still valid syntax..
    Last edited by slacky; 10-14-2014 at 10:59 PM.
    !No priv. messages please

Page 2 of 11 FirstFirst 1234 ... LastLast

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
  •