Page 6 of 11 FirstFirst ... 45678 ... LastLast
Results 126 to 150 of 268

Thread: The 250m Scripting Competition

  1. #126
    Join Date
    Mar 2013
    Location
    Shaolin
    Posts
    863
    Mentioned
    24 Post(s)
    Quoted
    519 Post(s)

    Default

    Quote Originally Posted by The Mayor View Post
    Well when you have so much bank like I do you have to get rid of it some how?
    Well... a friend in need?
    You have permission to steal anything I've ever made...

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

  3. #128
    Join Date
    Jan 2012
    Location
    Runescape News and General & Skill Guides
    Posts
    2,544
    Mentioned
    37 Post(s)
    Quoted
    545 Post(s)

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

    Default

    Computer broke down last night

    Won't get a new one until November. Lord help me make a script when I get it ?>.>

  5. #130
    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
    Computer broke down last night

    Won't get a new one until November. Lord help me make a script when I get it ?>.>
    That sucks. You've still got 17 days though!

  6. #131
    Join Date
    Jun 2014
    Location
    Lithuania
    Posts
    475
    Mentioned
    27 Post(s)
    Quoted
    200 Post(s)

    Default

    Just made very ambitious project for that count of lines(Red spider eggs gatherer), sent to you. If im gona get any place going to add some more antiban, multiplayer, better failsafes, minibreaks, sixhourfix and release it Was thinking about rune miner but this one need less resources to use especially when mine last runeminer was banned killing drags lol, my fault.

    Todays test proggy

    ////////////////////////////////////////////////////////////
    Cosmas JDZ Super eggs v.1.0
    Last trip time: 2m 7s Trips done: 75
    Time running: 4h 5m 7s
    ////////////////////////////////////////////////////////////

  7. #132
    Join Date
    Feb 2013
    Location
    Belgium
    Posts
    86
    Mentioned
    6 Post(s)
    Quoted
    35 Post(s)

    Default

    Better late than never... :P Sign me up! I tried to write a script before but always failed to get some functions to work and lost motivation. This looks like the perfect opportunity to finally start learning how it really works!

  8. #133
    Join Date
    Oct 2006
    Location
    Netherlands
    Posts
    3,285
    Mentioned
    105 Post(s)
    Quoted
    494 Post(s)

    Default

    Quote Originally Posted by Wooty View Post
    Better late than never... :P Sign me up! I tried to write a script before but always failed to get some functions to work and lost motivation. This looks like the perfect opportunity to finally start learning how it really works!
    good luck
    Working on: Tithe Farmer

  9. #134
    Join Date
    May 2012
    Location
    New Mexico
    Posts
    99
    Mentioned
    0 Post(s)
    Quoted
    30 Post(s)

    Default

    Good luck everyone! Hope we can have another one of these for when I learn more about scripting!
    “Oh, hi. So, how are you holding up? BECAUSE I'M A POTATO"
    http://www.southweststandard.com

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

    Default

    Are we allowed to create new accounts to participate with those ?
    I made a new script, check it out!.

  11. #136
    Join Date
    Mar 2013
    Posts
    1,010
    Mentioned
    35 Post(s)
    Quoted
    620 Post(s)

    Default

    Quote Originally Posted by Markus View Post
    Are we allowed to create new accounts to participate with those ?
    You are a mod... So I guess only admins can stop you
    #slack4admin2016
    <slacky> I will build a wall
    <slacky> I will ban reflection and OGL hooking until we know what the hell is going on

  12. #137
    Join Date
    Nov 2013
    Location
    North of Hell
    Posts
    271
    Mentioned
    7 Post(s)
    Quoted
    171 Post(s)

    Default

    Quote Originally Posted by Markus View Post
    Are we allowed to create new accounts to participate with those ?

    :

    Quote Originally Posted by The Mayor View Post

    Entry is open to:

    • Registered users
    • SRL Junior members

    Note: SRL Members and above are not eligible

    Quote Originally Posted by The Mayor View Post
    Don't worry IP checks will be done on any suspicious entrants

  13. #138
    Join Date
    Oct 2006
    Location
    Netherlands
    Posts
    3,285
    Mentioned
    105 Post(s)
    Quoted
    494 Post(s)

    Default

    Quote Originally Posted by Harrier View Post
    You are a mod... So I guess only admins can stop you
    Mods can edit mods post, we just cant ban/infract mods.
    Working on: Tithe Farmer

  14. #139
    Join Date
    Feb 2013
    Location
    Belgium
    Posts
    86
    Mentioned
    6 Post(s)
    Quoted
    35 Post(s)

    Default

    I just finished my first fully working script!!
    It's just under 250 lines, but if I want to add some comments in the code, are those lines counted as actual lines or can I have more lines than 250 then?

  15. #140
    Join Date
    Nov 2013
    Location
    North of Hell
    Posts
    271
    Mentioned
    7 Post(s)
    Quoted
    171 Post(s)

    Default

    Quote Originally Posted by Wooty View Post
    I just finished my first fully working script!!
    It's just under 250 lines, but if I want to add some comments in the code, are those lines counted as actual lines or can I have more lines than 250 then?
    just comment at the end of the line?

    Simba Code:
    begin // begins the procedure/function
    minimap.clickCompass;  // Clicks the compass
    wait(gaussRangeInt(300, 500)); // waits a certain amount of time
    mainScreen.setAngle(MS_ANGLE_HIGH); // sets the mainscreen angle to high
    Box := intToBox(278, 175, 298, 143); // creates a box of the following coordinates.
    end; // ends the procedure/function

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

    Default

    Quote Originally Posted by sparkyownage View Post
    just comment at the end of the line?

    Simba Code:
    begin // begins the procedure/function
    minimap.clickCompass;  // Clicks the compass
    wait(gaussRangeInt(300, 500)); // waits a certain amount of time
    mainScreen.setAngle(MS_ANGLE_HIGH); // sets the mainscreen angle to high
    Box := intToBox(278, 175, 298, 143); // creates a box of the following coordinates.
    end; // ends the procedure/function
    i suppose we all ended up doing that lol. Although my code is really, really ugly to read.. even though its properly indented heh, i found that making a properly written, fully functional, antiban + breaking script in 250 is just impossible for me at this time.. spent hours trying to make things small but just couldnt

  17. #142
    Join Date
    Oct 2006
    Location
    Netherlands
    Posts
    3,285
    Mentioned
    105 Post(s)
    Quoted
    494 Post(s)

    Default

    Code blocks in front of functions etc are just part of the documentation. I am pretty sure those don't count.

    This is a bad comment since it is a syntax explanation comment:
    begin // begins the procedure/function

    This is a bad comment because the line itself already says what it does:
    minimap.clickCompass; // Clicks the compass

    Though maybe you want to show explicitly it is a function by adding parenthesisses:
    minimap.clickCompass();

    With smart variable and function naming, the code should be readable without that many comments.
    Working on: Tithe Farmer

  18. #143
    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 Wooty View Post
    I just finished my first fully working script!!
    It's just under 250 lines, but if I want to add some comments in the code, are those lines counted as actual lines or can I have more lines than 250 then?
    Gongrats! 250 lines is max. The last end. cannot be past line 250. You've got 2 more week to refine it. I'm going to send out the 2 week reminder today.


    Quote Originally Posted by sparkyownage View Post
    just comment at the end of the line?

    Simba Code:
    begin // begins the procedure/function
    minimap.clickCompass;  // Clicks the compass
    wait(gaussRangeInt(300, 500)); // waits a certain amount of time
    mainScreen.setAngle(MS_ANGLE_HIGH); // sets the mainscreen angle to high
    Box := intToBox(278, 175, 298, 143); // creates a box of the following coordinates.
    end; // ends the procedure/function
    As masterBB said, you dont need to comment stuff that is obvious. In your code example, you might want to say what your box actually is (as the reader can't tell).

    Quote Originally Posted by undorak7 View Post
    i suppose we all ended up doing that lol. Although my code is really, really ugly to read.. even though its properly indented heh, i found that making a properly written, fully functional, antiban + breaking script in 250 is just impossible for me at this time.. spent hours trying to make things small but just couldnt
    I don't think breaking was necessary, but if you've squeezed it in, nice work!


    E:
    Quote Originally Posted by Markus View Post
    Are we allowed to create new accounts to participate with those ?
    If I see anything that resembles an ess miner I will be highly suspicious
    Last edited by The Mayor; 10-26-2014 at 08:28 PM.

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

  20. #145
    Join Date
    Jun 2012
    Posts
    586
    Mentioned
    112 Post(s)
    Quoted
    296 Post(s)

    Default

    Heh, I'll get in on this. .

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

  22. #147
    Join Date
    Dec 2011
    Posts
    2,147
    Mentioned
    221 Post(s)
    Quoted
    1068 Post(s)

    Default

    Quote Originally Posted by Obscurity View Post
    Heh, I'll get in on this. .
    It's SRL-6, not OGL you dummy.

    Edit: Or I guess @The Mayor should clarify because you can use SRL-6 with OGL if you put {$DEFINE SRLCOMPATIBILITY}, although I assume no other entrants are using OGL so it might be unfair.
    Last edited by Clarity; 10-27-2014 at 10:36 AM.

  23. #148
    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 Clarity View Post
    It's SRL-6, not OGL you dummy.

    Edit: Or I guess @The Mayor should clarify because you can use SRL-6 with OGL if you put {$DEFINE SRLCOMPATIBILITY}, although I assume no other entrants are using OGL so it might be unfair.
    I said you can use SRL6. I didn't say you can use OGL

  24. #149
    Join Date
    Jun 2012
    Posts
    586
    Mentioned
    112 Post(s)
    Quoted
    296 Post(s)

    Default

    Buuut you didn't say you couldn't! .

  25. #150
    Join Date
    Oct 2014
    Location
    Europe
    Posts
    98
    Mentioned
    4 Post(s)
    Quoted
    55 Post(s)

    Default

    Hello! I would like to enter the competition!

Page 6 of 11 FirstFirst ... 45678 ... 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
  •