[Release] GamesForPoints menu

User Tag List

Page 1 of 3 123 LastLast
Results 1 to 15 of 31
  1. #1
    Derision's Avatar Contributor
    Reputation
    165
    Join Date
    Dec 2007
    Posts
    176
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Release] GamesForPoints

    GamesForPoints





    A simple console application coded by me (Derision) in C++.

    Simply type in the total number of games your team has played this week and it will tell you how many games you need for 30% (in other words, enough games to get points).

    I've included a download for the source as well, for anyone who is interested.

    Downloads and Virus Scans:
    GamesForPoints.rar: RapidShare: 1-Click Webhosting
    GamesForPoints.rar Virus Scan: http://i34.photobucket.com/albums/d1..._Virus_Sca.jpg

    GamesForPoints_Source.rar: RapidShare: 1-Click Webhosting
    GamesForPoints_Source.rar Virus Scan: http://i34.photobucket.com/albums/d1...Virus_Scan.jpg
    Last edited by Derision; 01-17-2008 at 06:18 PM. Reason: adding a second screenshot of the actual program's output

    [Release] GamesForPoints
  2. #2
    1337asusual's Avatar Member
    Reputation
    18
    Join Date
    Jan 2008
    Posts
    107
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    uhhhhhhhhhhhhhhh....im lost

  3. #3
    Derision's Avatar Contributor
    Reputation
    165
    Join Date
    Dec 2007
    Posts
    176
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by 1337asusual View Post
    uhhhhhhhhhhhhhhh....im lost
    For an arena team to get points on Tuesday, you must have 2 conditions met:
    • Team has played at least 10 games
    • Each member wanting points needs to have played 30% of the total games
    So if your team has played games already and you want to know the minimum amount of games needed for you to get points, you can use this tool for simple calculation of how many games are needed.

  4. #4
    xkrim's Avatar Active Member
    Reputation
    47
    Join Date
    Jan 2008
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    (I'm assuming this is arena)
    i think you screwed up the maths in your example


    1) if your team has played 20 games and you need to play 30% of the TOTAL games played this week

    20 + 7 = 27
    27 * 0.3 = 8.1
    8.1 <> 7


    2) or the alternative, assuming that the program calculates IF you will get your points from the total games played
    20 * 0.3 = 6
    6 <> 7



    After looking at the second option i think you meant to calculate the second one in which case you should divide the total games played by "0.3" instead of "1/3" since you end up with different results and you only need 30% of the games played not 33.3333
    Last edited by xkrim; 01-17-2008 at 06:33 PM.

  5. #5
    Derision's Avatar Contributor
    Reputation
    165
    Join Date
    Dec 2007
    Posts
    176
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xkrim View Post
    (I'm assuming this is arena)
    i think you screwed up the maths in your example


    1) if your team has played 20 games and you need to play 30&#37; of the TOTAL games played this week

    20 + 7 = 27
    27 * 0.3 = 8.1
    8.1 <> 7


    2) or the alternative, assuming that the program calculates IF you will get your points from the total games played
    20 * 0.3 = 6
    6 <> 7



    After looking at those i think you meant to calculate the second one in which case you should divide the total games played by "0.3" instead of "1/3" since you end up with different results and you only need 30% of the games played not 33.3333
    What happens is at 20 games played, you need 6 games, but because you're doing arena, there's more total games so you have to take that into account.
    Look at the source, it will be easier to explain if you look at that.
    Last edited by Derision; 01-17-2008 at 06:34 PM. Reason: forgot mah col0rz!

  6. #6
    xkrim's Avatar Active Member
    Reputation
    47
    Join Date
    Jan 2008
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Derision View Post
    What happens is at 20 games played, you need 6 games, but because you're doing arena, there's more total games so you have to take that into account.
    Look at the source, it will be easier to explain if you look at that.
    thats what the first example was

    the team has 20 games done so far.
    you said you must do 7 additional games for you to get the points
    thats 27 games in total
    27 times 0.3 = 8.1 games

    so you need to do 9 games (8.1 rounded up) out of the 27 games played which is impossible as your team has already done 20 games

  7. #7
    Derision's Avatar Contributor
    Reputation
    165
    Join Date
    Dec 2007
    Posts
    176
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xkrim View Post
    thats what the first example was

    the team has 20 games done so far.
    you said you must do 7 additional games for you to get the points
    thats 27 games in total
    27 times 0.3 = 8.1 games

    so you need to do 9 games (8.1 rounded up) out of the 27 games played which is impossible as your team has already done 20 games
    If you were to just do 27 * 0.3 that would be 30% of 27 which isn't correct.
    Your percent would build up as you did games (for example: 20 games: 0%, 21 games: x%, 22 games: >x%, etc).


  8. #8
    xkrim's Avatar Active Member
    Reputation
    47
    Join Date
    Jan 2008
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Each member wanting points needs to have played 30% of the total games
    total games = 27
    30% of 27 = 8.1

    yea i know that wouldn't work either as
    (27+ 8.1) * 0.3 = 10.51

    but my point is that 7 games wouldn't work if you had 20 games played by other people (your example) so you would need another way to work out the % (cant think of one now :P)


    From trial and error
    if your team had played 20 games
    you would need to play 9 games to get points

    (20 + 9) * 0.3 = 8.7
    8.7 < 9



    now i hope i'm not making an idiot of myself but thats what i'm thinking :X

  9. #9
    Derision's Avatar Contributor
    Reputation
    165
    Join Date
    Dec 2007
    Posts
    176
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xkrim View Post
    total games = 27
    30% of 27 = 8.1

    yea i know that wouldn't work either as
    (27+ 8.1) * 0.3 = 10.51

    but my point is that 7 games wouldn't work if you had 20 games played by other people (your example) so you would need another way to work out the % (cant think of one now :P)


    From trial and error
    if your team had played 20 games
    you would need to play 9 games to get points

    (20 + 9) * 0.3 = 8.7
    8.7 < 9



    now i hope i'm not making an idiot of myself but thats what i'm thinking :X
    You don't need 30% of the total games after YOU have played because you raise your percent going from 20-27 in this example.

  10. #10
    xkrim's Avatar Active Member
    Reputation
    47
    Join Date
    Jan 2008
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok you've confused the hell out of me now, ill just +rep ya and run >P
    (if i can)

  11. #11
    Derision's Avatar Contributor
    Reputation
    165
    Join Date
    Dec 2007
    Posts
    176
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xkrim View Post
    Ok you've confused the hell out of me now, ill just +rep ya and run >P
    (if i can)
    Thanks.

  12. #12
    Phase228's Avatar Member
    Reputation
    352
    Join Date
    Jan 2007
    Posts
    1,502
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    you mean this counts the number of points you have earned or how many you need till you get a certain amount of points?

    interesting
    Hey Piggy



  13. #13
    Derision's Avatar Contributor
    Reputation
    165
    Join Date
    Dec 2007
    Posts
    176
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Phase228 View Post
    you mean this counts the number of points you have earned or how many you need till you get a certain amount of points?

    interesting
    How many games you need to get points from your team if you haven't done games yet but other members of the team have.

  14. #14
    Grezdo's Avatar Member
    Reputation
    74
    Join Date
    Oct 2006
    Posts
    156
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This is how it works.

    3 People are in a 2v2.

    2 people do 10 games in a row, each have 50&#37; of total played games.

    ----

    This program tells you how many TOTAL games the team will need completed for that 3rd member to get points (and for everyone to at atleast have 30%)

    ....i think? lol
    Soon to come, a fancy signature! =O

  15. #15
    Starmanian's Avatar Member
    Reputation
    4
    Join Date
    Jul 2006
    Posts
    73
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    calculator addons do this itselfs... no use and just simple programing doesn't deserve +rep
    :wave: Duh, me is pro!

Page 1 of 3 123 LastLast

Similar Threads

  1. [Release] Herbs to flag
    By Dave-evad in forum World of Warcraft Model Editing
    Replies: 9
    Last Post: 11-26-2006, 03:31 PM
  2. Burning Crusdade Release Date!
    By codydude815 in forum World of Warcraft General
    Replies: 22
    Last Post: 10-30-2006, 01:59 PM
  3. Burning Crusdade Release Date!
    By codydude815 in forum World of Warcraft Guides
    Replies: 15
    Last Post: 10-28-2006, 12:15 PM
  4. anti-warden Release #1
    By zhPaul in forum World of Warcraft Bots and Programs
    Replies: 40
    Last Post: 10-21-2006, 01:40 AM
  5. Burning Crusade Release
    By KOLOSSAL in forum World of Warcraft General
    Replies: 3
    Last Post: 10-10-2006, 12:33 AM
All times are GMT -5. The time now is 12:13 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search