So we havent even decided on a name yet.. when is this game going to start???
Announcement
Collapse
No announcement yet.
What shall be our name (final?)
Collapse
X
-
Locutus, you could ask MarkG to decide for us. I believe he is the one missing. The other is probably Aias which we dont hear from him in a long time."Kill a man and you are a murder.
Kill thousands and you are a conquer.
Kill all and you are a God!"
-Jean Rostand
Comment
-
I'm fed up with the whole thing. Delete Kass' vote, change mine to Lemuria, and close the poll.Concrete, Abstract, or Squoingy?
"I don't believe in giving scripting languages because the only additional power they give users is the power to create bugs." - Mike Breitkreutz, Firaxis
Comment
-
Originally posted by Immortal Wombat
I'm fed up with the whole thing. Delete Kass' vote, change mine to Lemuria, and close the poll.
But hadnt we decide long before that it was Apolymuria!!! Most of the people was used to it. Damn! I am starting to dicuss about this again, Lets make Lemuria then and end this once and for all"Kill a man and you are a murder.
Kill thousands and you are a conquer.
Kill all and you are a God!"
-Jean Rostand
Comment
-
Ok, I've tossed a coin, it came up heads. you win.Concrete, Abstract, or Squoingy?
"I don't believe in giving scripting languages because the only additional power they give users is the power to create bugs." - Mike Breitkreutz, Firaxis
Comment
-
A bit off-topic but still: it seems solved now, but this situation of a total lockdown might occur again in the future. It would be good to have a way of dealing with it.
In a case where the entire community is divided 50-50, the only proper way out IMHO is to roll a dice (even after several rounds ). But of course, if one of us actually rolled a dice, the rest of us would not be physicially present when this happens, making it impossible to check the dice-roller is not abusing the situation to just go with whatever he likes best. And even if he doesn't do this, others might still accuse him of doing so. So we need a reliable, objective way to pick a random option.
That's why I wrote a little PHP script to do this for us: it picks a random number, using the thread ID as a seed. When you post a poll, the thread ID that your poll will get is very hard to predict, so it's more or less random (for a randomize seed a difference in the seed of 1 is just as unpredictable as a difference of 10,000). The fixed seed ensures that you always get the same result, so there can't be any dispute on the outcome as everyone can double-check it for himself.
I've written and uploaded this script, you can find it here. Simply type in the thread ID of the poll (e.g. 66740 for this thread) and the number of options that can be voted for (e.g. 2 for this thread - Abstain option doesn't count of course) and hit submit. It will return the number of the option that wins the poll if there is a tie and there are no alternative solutions available (e.g. for this poll the winning option is option number 1, which would be Lemuria). For all those weird people who don't start counting at zero as they should (and like I do), I made one the first option rather than zero).
I'm attaching the code of the script here for all to see, so anyone (with at least rudimentary programming skills) can check for himself there's nothing suspicious about it or whatever:
PHP Code:$seed = $_POST['thread'] + ???;
$range = $_POST['options'];
if ($range < 2) { $range = 2; } // avoids an error when someone enters crap input
srand($seed);
$randval = rand(1, $range);
echo "$randval";
The only note here is the '???' part: this is actually a number which I will never reveal. Should anyone somehow manage to find a way to predict what the thread ID of a future poll thread will be, this number will make sure it will remain impossible to predict what the winning option of this randomize script is going to be. The only person who knows this number is yours truly, but I'm sure noone will object to the official mod knowing it, especially since even with that number it's practically impossible to predict the outcome...Last edited by Locutus; December 4, 2002, 18:41.
Comment
-
Yay!!
LONG LIVE LEMURIA!!
Concrete, Abstract, or Squoingy?
"I don't believe in giving scripting languages because the only additional power they give users is the power to create bugs." - Mike Breitkreutz, Firaxis
Comment
Comment