View Poll Results: Sword or guns?

Voters
0. You may not vote on this poll
  • derp

    0 0%
  • herp

    0 0%
Page 5 of 23 FirstFirst ... 3456715 ... LastLast
Results 41 to 50 of 224
  1. #41
    Sparks's Avatar Freestyler

    Join Date
    Jul 2009
    Posts
    765
    Thanked
    146
    Thanks
    420
    Originally Posted by affairs View Post
    What do you mean with brackets? Who fights who?
    If so, I will do a PHP script that randomly selects the pairs, obviously this is just a pseudo-random algorithm, best I can do.
    obviously there's no such thing as a true definition of random, it's all algorithms, but thats wut i meant <_<

  2. #42
    Donator

    Join Date
    Jun 2011
    Posts
    606
    Thanked
    101
    Thanks
    317
    PHP Code:
    <?php
        $numberOfPlayers 
    26;
        
    $picked = array();
        
    $counter 0;
    while(
    $numberOfPlayers 0){
        
    retry:
        
    $player1 mt_rand(1$numberOfPlayers);
        
    $player2 mt_rand(1$numberOfPlayers);
        if(
    $player1 == $player2){
            goto 
    retry;
            }
        if(
    in_array($player1$picked) or in_array($player2$picked)){
            goto 
    retry;
            }
        else{
            echo 
    $player1 " VS " $player2 "<br>";
            
    array_push($picked$player1);
            
    array_push($picked$player2);

            }
        }
    ?>
    Will be using that to select the fights, did it fast so don't expect beauty, it works though.

  3. #43
    Steph's Avatar Flourish

    Join Date
    Dec 2009
    Posts
    1,032
    Thanked
    143
    Thanks
    169
    I would like to join, ^5Gingerfan^9
    Originally Posted by Untouchable View Post
    SIIII I love coockies^_^



  4. #44
    Jaay's Avatar Freestyler

    Join Date
    Jan 2012
    Country
    Posts
    851
    Thanked
    682
    Thanks
    211
    Map ; Town
    Rounds ; 20
    Weaponry ; 10s or 11s
    HP/AP ; [V].



  5. #45
    Demure's Avatar aka Pallas.

    Join Date
    Jun 2009
    Posts
    1,101
    Thanked
    290
    Thanks
    105
    ign: ^2Pallas

  6. #46
    Donator

    Join Date
    Jun 2011
    Posts
    606
    Thanked
    101
    Thanks
    317
    Added
    ^5Gingerfan^9
    ^2Pallas

  7. #47
    Banned

    Join Date
    Dec 2010
    Posts
    777
    Thanked
    186
    Thanks
    153
    ign: Messi

    guns

  8. #48
    Flora's Avatar LD King

    Join Date
    Oct 2010
    Posts
    702
    Thanked
    159
    Thanks
    264
    Guns

    IGN: Maze

  9. #49
    Banned

    Join Date
    Mar 2011
    Posts
    1,729
    Thanked
    1,197
    Thanks
    554
    Charles CarMichael

  10. #50
    Donator

    Join Date
    Jun 2011
    Posts
    606
    Thanked
    101
    Thanks
    317
    Added
    Messi
    Maze
    Charles CarMichael

Page 5 of 23 FirstFirst ... 3456715 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)