Chances of winning:
1/number of entries in the giveaway you entered. I'M A GENIUS
Comment has been collapsed.
This. Your in college but you cant do division or pull up a calculator?
Edit: or just look and see that a giveaway has 1000 entries. That means you have a 1 in 1000 chance to win. If there are multiple copies then divide that by the entries <_<
Comment has been collapsed.
... but that makes no fucking sense whatsoever. You still calculate it individually.
Comment has been collapsed.
Then your odds are 1/14 and 1/358. It's really not hard to figure out. I really hope you dropped maths already, because you're going to fail the next exam at this rate.
Comment has been collapsed.
"Take the number of giveaways (while also being mindful of multiple copies) and divide by the sum of all the entries in said giveaways."
Wrong, the formula isn't that easy. I don't know how to explain it in English though.
For example you enter 3 giveaways, each has 3 entie. With your formula your chance to win would be 100% but in reality you can loose all giveaways.
Comment has been collapsed.
Had a bit of spare time after reading your post. When you're using Google Chrome, create a new text document, name it whateveryoulike.user.js (the user.js is important, also check that you really renamed it that way and didn't forget to delete ".txt") and copy the following code in it:
// ==UserScript==
// @name Steamgifts probabilities
// @description
// @version 1.0
// @namespace 0x442E472E
// @author 0x442E472E
// @run-at document-end
// @include http://www.steamgifts.com/giveaway/
// ==/UserScript==
if(window.top == window) {
var load,execute,loadAndExecute;load=function(a,b,c){var d;d=document.createElement("script"),d.setAttribute("src",a),b!=null&&d.addEventListener("load",b),c!=null&&d.addEventListener("error",c),document.body.appendChild(d);return d},execute=function(a){var b,c;typeof a=="function"?b="("+a+")();":b=a,c=document.createElement("script"),c.textContent=b,document.body.appendChild(c);return c},loadAndExecute=function(a,b){return load(a,function(){return execute(b)})};
loadAndExecute("//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js", function() {
var entries = parseInt($('.rounded.entries').html().split(" ")[0].replace(/,/g, ""));
var regexp = $('h1.title').html().match(/((\d+) .+)/);
var copies = regexp != null && regexp.length >= 2?parseInt(regexp[regexp.length - 1]):1;
$('.rounded.entries').html($('.rounded.entries').html() + " "+ (parseInt(((copies/entries)1000000))/10000)+"%");
});
}
Save the file, open the extension tab in Chrome and drag&drop the file into it. You should be asked to install that script. That's it. It shows the probability at the giveaway detail page (not "featured" at the top of the page and also not at the quickview of the enhancement addon). And please no complaints about the code, i wrote it only quickndirty :P
Comment has been collapsed.
Well this code is rather safe since it's very short and simple :D. Also, i only wrote the 4 lines that calculate the result. The rest is taken from an example of how to include jQuery. Theoretically, this is not needed since Steamgifts already includes jQuery but (i think) this script is parsed before page load (but executed at the end) where jQuery is not included. The Enhancement Addon solves this by reducing the script to a few lines that include the real script (hosted at Google Code) at the end of the page code. Another possibility could be creating a real addon that consists of an include-script and the real script where the first includes the latter at the end of the page, but i was not in the mood to make things complicated :D
Comment has been collapsed.
You could also say this about the "Enter to win" text.
Comment has been collapsed.
84 Comments - Last post 2 minutes ago by xeos23
0 Comments - Created 48 minutes ago by Sadsnake
11 Comments - Last post 1 hour ago by anditsung
259 Comments - Last post 3 hours ago by Wok
39 Comments - Last post 8 hours ago by Chris76de
14 Comments - Last post 11 hours ago by sensualshakti
179 Comments - Last post 11 hours ago by ashtwo
30 Comments - Last post 1 minute ago by tungmapu
78 Comments - Last post 2 minutes ago by Mayanaise
6,439 Comments - Last post 26 minutes ago by imsaleh0
52 Comments - Last post 1 hour ago by herbesdeprovence
17,039 Comments - Last post 2 hours ago by Operations
45 Comments - Last post 2 hours ago by Moogal
42 Comments - Last post 2 hours ago by skadogg
Comment has been collapsed.