Poll: Which progress report looks best?

Be advised that this is a public poll: other users can see the choice(s) you selected.

Results 1 to 23 of 23

Thread: Competition Proggy :cool:

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

    Cool Competition Proggy :cool:

    I have just made too much awesomeness of proggys and cant choose cause of my pr0 photoshop skills ! help choosing pl0x ("none" is NOT an option) :

    1:


    2:


    3:


    4:

  2. #2
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    Four

  3. #3
    Join Date
    Sep 2010
    Posts
    87
    Mentioned
    3 Post(s)
    Quoted
    25 Post(s)

    Default

    Looks like you took the cabbage part quite literally ^^

    I agree with BMWxi on four!

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

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

    Default

    Quote Originally Posted by BMWxi View Post
    Four
    Thanks!

    Quote Originally Posted by keff View Post
    Looks like you took the cabbage part quite literally ^^

    I agree with BMWxi on four!
    Yeeah, i made an Awesome powerminer but then decided to throw it away and do something more fun/rare . Thx for the input!

    Quote Originally Posted by Clarity View Post
    I like 3. Nice work making the paint!
    Thank youu sir, i used your Tutorial for the simba part, i knew sth about photoshop already

    Im between 3 and 4 currentlyy

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

    Default

    Added poll
    Working on: Tithe Farmer

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

    Default

    Quote Originally Posted by masterBB View Post
    Added poll
    Many thanks

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

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

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

    Default

    2 or 3 for sure.

    This looks like it's going to be frickin' awesome, 10/10 will use!
    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

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

    Default

    Quote Originally Posted by KeepBotting View Post
    2 or 3 for sure.

    This looks like it's going to be frickin' awesome, 10/10 will use!
    Sure! scripts awesome specially because its so useful !

    Thanks for choosing guise, it looks like 3 is gonna win!

  12. #12
    Join Date
    Dec 2011
    Location
    The Netherlands
    Posts
    1,631
    Mentioned
    47 Post(s)
    Quoted
    254 Post(s)

    Default

    Three or four, picked four in the end.

    Script source code available here: Github

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

    Default

    Thank's everybody for the help 4 it is then!

  14. #14
    Join Date
    Jan 2012
    Posts
    1,596
    Mentioned
    78 Post(s)
    Quoted
    826 Post(s)

    Default

    Id swap the cabbages and the per hour position, as the cabbages is more likely to overflow onto the next than the per hour.

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

    Default

    Quote Originally Posted by Turpinator View Post
    Id swap the cabbages and the per hour position, as the cabbages is more likely to overflow onto the next than the per hour.
    Just a random solution:

    Simba Code:
    var StrCabbages As String;

    if(cabbages< 10000) then
      StrCabbages := IntToStr(cabbages)
    else if(cabbages < 10000000) then
      StrCabbages := IntToStr(cabbages/ 1000) + "k"
    else then
      StrCabbages := IntToStr(cabbages/ 1000000) + "m";
    Working on: Tithe Farmer

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

    Default

    Quote Originally Posted by Turpinator View Post
    Id swap the cabbages and the per hour position, as the cabbages is more likely to overflow onto the next than the per hour.
    good thinking :P

    Quote Originally Posted by masterBB View Post
    Just a random solution:

    Simba Code:
    var StrCabbages As String;

    if(cabbages< 10000) then
      StrCabbages := IntToStr(cabbages)
    else if(cabbages < 10000000) then
      StrCabbages := IntToStr(cabbages/ 1000) + "k"
    else then
      StrCabbages := IntToStr(cabbages/ 1000000) + "m";
    I would do that if i had the lines to spare heheh, nice solution though!

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

    Default

    Sick code ahead, not for the weak brains: <- I am exaggerating

    Quote Originally Posted by undorak7 View Post
    good thinking :P



    I would do that if i had the lines to spare heheh, nice solution though!
    Got you covered!

    Simba Code:
    StrCabbages := IntToStr(floor(amount / Pow(10, 3 * Min(Floor((log10(amount)-1)/3), 2)))) + TCharArray([' ', 'K', 'M'])[Min(Floor((log10(amount)-1)/3, 2))];

    or if you want to account for 0 cabbages:

    Simba Code:
    StrCabbages := IntToStr(floor(amount / Pow(10, 3 * Min(Floor((log10(Max(amount, 1))-1)/3), 2)))) + TCharArray([' ', 'K', 'M'])[Min(Floor((log10(Max(amount, 1))-1)/3), 2)];
    Working on: Tithe Farmer

  18. #18
    Join Date
    May 2014
    Posts
    59
    Mentioned
    0 Post(s)
    Quoted
    23 Post(s)

    Default

    I personally like two, but four is nice too

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

    Default

    Quote Originally Posted by masterBB View Post
    Sick code ahead, not for the weak brains: <- I am exaggerating

    Got you covered!

    Simba Code:
    StrCabbages := IntToStr(floor(amount / Pow(10, 3 * Min(Floor((log10(amount)-1)/3), 2)))) + TCharArray([' ', 'K', 'M'])[Min(Floor((log10(amount)-1)/3, 2))];

    or if you want to account for 0 cabbages:

    Simba Code:
    StrCabbages := IntToStr(floor(amount / Pow(10, 3 * Min(Floor((log10(Max(amount, 1))-1)/3), 2)))) + TCharArray([' ', 'K', 'M'])[Min(Floor((log10(Max(amount, 1))-1)/3), 2)];
    Wow. thats some sick maths right there, i suck at maths. Will try it thx!

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

    Default

    Quote Originally Posted by undorak7 View Post
    Wow. thats some sick maths right there, i suck at maths. Will try it thx!
    I just tested it myself, I made a mistake:

    Simba Code:
    IntToStr(floor(amount / Pow(10, 3 * Max(Min(Floor((log10(Max(amount, 1))-1)/3), 2),0)))) + TCharArray([' ', 'K', 'M'])[Min(Floor((log10(Max(amount, 1))-1)/3), 2)];
    Working on: Tithe Farmer

  21. #21
    Join Date
    Jan 2012
    Posts
    1,596
    Mentioned
    78 Post(s)
    Quoted
    826 Post(s)

    Default

    Quote Originally Posted by masterBB View Post
    I just tested it myself, I made a mistake:

    Simba Code:
    IntToStr(floor(amount / Pow(10, 3 * Max(Min(Floor((log10(Max(amount, 1))-1)/3), 2),0)))) + TCharArray([' ', 'K', 'M'])[Min(Floor((log10(Max(amount, 1))-1)/3), 2)];

  22. #22
    Join Date
    Mar 2013
    Posts
    49
    Mentioned
    0 Post(s)
    Quoted
    17 Post(s)

    Default

    Four, for sure.

  23. #23
    Join Date
    Jul 2012
    Posts
    181
    Mentioned
    4 Post(s)
    Quoted
    67 Post(s)

    Default

    I voted for number 3, I like the background best in that one.

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
  •