Announcement

Collapse
No announcement yet.

What shall be our name (final?)

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #76
    So we havent even decided on a name yet.. when is this game going to start???
    Attached Files

    Comment


    • #77
      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


      • #78
        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


        • #79
          Originally posted by Immortal Wombat
          I'm fed up with the whole thing. Delete Kass' vote, change mine to Lemuria, and close the poll.
          We all are!

          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


          • #80
            This is fast deterring into a spam thread. I can't be stuffed with this anymore, and quite frankly I couldn't give a stuff about the name.

            Comment


            • #81
              yeah hurry up
              people are already making threads that needs the name

              Comment


              • #82
                Looks like the people missing don't want to vote??????

                But I must say, I am afraid to restart this poll............

                Comment


                • #83
                  Well it looks that we have to toss a coin in the end.

                  -Martin
                  Civ2 military advisor: "No complaints, Sir!"

                  Comment


                  • #84
                    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


                    • #85
                      This sucks how are we ever going to get this thing started if we cant even decide a name in 5 weeks, we will be years to decide goverment position!!!!
                      When it all comes to it, life is nothing more than saltfish - Salka Valka

                      Comment


                      • #86
                        i say leave it to the judges to vote, there's only three of them once elections are over.

                        of course, as a candidate for being a judge, it is entirely possible that my opinion is a bit biased

                        Comment


                        • #87
                          I was gonna propose a solution but nevermind: look at the 'scoreboard': 14-13 I say we close the poll right now
                          Administrator of WePlayCiv -- Civ5 Info Centre | Forum | Gallery

                          Comment


                          • #88
                            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"
                            You can view the source of the HTML code by visiting the link above and selecting Source from the menu View (in IE at least, for other browsers it's very similar).

                            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.
                            Administrator of WePlayCiv -- Civ5 Info Centre | Forum | Gallery

                            Comment


                            • #89
                              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


                              • #90
                                Hot Damn!!

                                Close the poll, close the Poll !!!

                                Comment

                                Working...
                                X