Juggernaut [V2.0]

Discussion in 'Review' started by Epikhairz, Apr 20, 2013.

Thread Status:
Not open for further replies.
  1. Epikhairz

    Epikhairz Delta Stream

    Joined:
    Mar 15, 2013
    Messages:
    929
    Likes Received:
    102
    PO Trainer Name:
    Epikhairz
    This is my new non-peak theme...Juggernaut! This is my first theme that has gone up for Review, so I hope you guys will like it! Big thanks to IceKirby for coding 99% of the theme (I did the summary :P).

    Story:
    A local city-state has been left with a ruthless and powerful ruler, the Juggernaut! However, the only villagers left are the powerful Gunners, who are hell-bent on getting rid of the Juggernaut! Each night, the Juggernaut gets to max priority kill a Gunner, but the Gunners each get one kill too (immune to X-fire)! However, if a Gunner kills the Juggernaut, he assumes his role and corrupts, making him the new Juggernaut![/HIDE]

    Code (RAW):
    http://dl.dropboxusercontent.com/u/10065307/Mafia/JuggernautC.js[/HIDE]

    Roles:
    Juggernaut:
    Most of the peaceful villagers have fled to neighboring villages, and every night, you get a chance to /kill [name] one of the violent Gunners at maximum priority and assert control of the village!

    Gunner:
    As a Gunner, you are fed up with the totalitarian rule of the Juggernaut and get to /shoot [name] once per night in an attempt to kill the Juggernaut. If you manage to kill the Juggernaut, you will become the new Juggernaut! Gunners are immune to crossfire, so shoot away![/HIDE]

    Code for the lazy:
    Code (text):
    1. {
    2.     "name": "Juggernaut",
    3.     "author": "Epikhairz0603",
    4.     "summary": "For years, the Juggernaut has ruled the village with an iron fist, but as the population dwindled, a violent war between the Juggernaut and the Gunners began. The one to kill the Juggernaut becomes his successor! If the Juggernaut is lynched, it will rampage and take Hostages, so Gunners will need to work together to take them down! If you have any suggestions, PM Epikhairz0603.",
    5.     "sides": [
    6.         {
    7.             "side": "mafia",
    8.             "translation": "Juggernaut"
    9.         },
    10.         {
    11.             "side": "gunners",
    12.             "translation": "Gunners"
    13.         },
    14.         {
    15.             "side": "hostage",
    16.             "translation": "Hostages"
    17.         }
    18.     ],
    19.     "roles": [
    20.         {
    21.             "role": "mafia1",
    22.             "translation": "Juggernaut",
    23.             "side": "mafia",
    24.             "help": "Most of the peaceful villagers have fled to neighboring villages, and every night, you get a chance to /kill [name] one of the violent Gunners at maximum priority and assert control of the village! You can also use /protect [yourname] to guard yourself, but with a chance of failing!",
    25.             "info": "Can kill 1 person during the night. Can kill more persons as nights passes. Can self protect with a chance of failing. Becomes enraged if lynched. Sided with Juggernaut. ",
    26.             "actions": {
    27.                 "night": {
    28.                     "kill": {
    29.                         "target": "AnyButTeam",
    30.                         "common": "Self",
    31.                         "priority": 1
    32.                     },
    33.                     "protect": {
    34.                         "command": ["safeguard", "protect"],
    35.                         "target": "OnlySelf",
    36.                         "common": "Self",
    37.                         "priority": 2,
    38.                         "failChance": 0.2
    39.                     }
    40.                 },
    41.                 "lynch": {
    42.                     "convertTo": "enraged_mafia",
    43.                     "convertmsg": "The Juggernaut goes mad! How to stop them now?"
    44.                 },
    45.                 "initialCondition": {
    46.                     "curse": {
    47.                         "cursedRole": "mafia2",
    48.                         "curseCount": 2,
    49.                         "curseConvertMessage": "The Juggernaut keeps going!"
    50.                     }
    51.                 }
    52.             }
    53.         },
    54.         {
    55.             "role": "mafia1b",
    56.             "translation": "Juggernaut",
    57.             "side": "mafia",
    58.             "help": "Most of the peaceful villagers have fled to neighboring villages, and every night, you get a chance to /kill [name] one of the violent Gunners at maximum priority and assert control of the village! You can also use /protect [yourname] to guard yourself, but with a chance of failing!",
    59.             "hide": true,
    60.             "actions": {
    61.                 "night": {
    62.                     "kill": {
    63.                         "target": "AnyButTeam",
    64.                         "common": "Self",
    65.                         "priority": 1,
    66.                         "hide": true
    67.                     },
    68.                     "protect": {
    69.                         "command": ["safeguard", "protect"],
    70.                         "target": "OnlySelf",
    71.                         "common": "Self",
    72.                         "priority": 2,
    73.                         "failChance": 0.2,
    74.                         "hide": true
    75.                     }
    76.                 },
    77.                 "initialCondition": {
    78.                     "curse": {
    79.                         "cursedRole": "mafia2",
    80.                         "curseCount": 3,
    81.                         "curseConvertMessage": "The Juggernaut keeps going!"
    82.                     }
    83.                 },
    84.                 "lynch": {
    85.                     "convertTo": "enraged_mafia",
    86.                     "convertmsg": "The Juggernaut goes mad! How to stop them now?"
    87.                 }
    88.             }
    89.         },
    90.         {
    91.             "role": "mafia2",
    92.             "translation": "Juggernaut",
    93.             "side": "mafia",
    94.             "help": "You are stronger now! Every night, you can /kill [name] up to 2 Gunners at maximum priority to assert control of the village! You can also use /protect [yourname] to guard yourself, but with a chance of failing!",
    95.             "hide": true,
    96.             "actions": {
    97.                 "night": {
    98.                     "kill": {
    99.                         "target": "AnyButTeam",
    100.                         "common": "Self",
    101.                         "priority": 1,
    102.                         "limit": 2,
    103.                         "hide": true
    104.                     },
    105.                     "protect": {
    106.                         "command": ["safeguard", "protect"],
    107.                         "target": "OnlySelf",
    108.                         "common": "Self",
    109.                         "priority": 2,
    110.                         "failChance": 0.4,
    111.                         "hide": true
    112.                     }
    113.                 },
    114.                 "initialCondition": {
    115.                     "curse": {
    116.                         "cursedRole": "mafia3",
    117.                         "curseCount": 2,
    118.                         "curseConvertMessage": "The Juggernaut keeps going!"
    119.                     }
    120.                 },
    121.                 "lynch": {
    122.                     "convertTo": "enraged_mafia",
    123.                     "convertmsg": "The Juggernaut goes mad! How to stop them now?"
    124.                 }
    125.             }
    126.         },
    127.         {
    128.             "role": "mafia3",
    129.             "translation": "Juggernaut",
    130.             "side": "mafia",
    131.             "help": "You are stronger now! Every night, you can /kill [name] up to 3 Gunners at maximum priority to assert control of the village! You can also use /protect [yourname] to guard yourself, but with a chance of failing!",
    132.             "hide": true,
    133.             "actions": {
    134.                 "night": {
    135.                     "kill": {
    136.                         "target": "AnyButTeam",
    137.                         "common": "Self",
    138.                         "priority": 1,
    139.                         "limit": 3,
    140.                         "hide": true
    141.                     },
    142.                     "protect": {
    143.                         "command": ["safeguard", "protect"],
    144.                         "target": "OnlySelf",
    145.                         "common": "Self",
    146.                         "priority": 2,
    147.                         "failChance": 0.6,
    148.                         "hide": true
    149.                     }
    150.                 },
    151.                 "lynch": {
    152.                     "convertTo": "enraged_mafia",
    153.                     "convertmsg": "The Juggernaut goes mad! How to stop them now?"
    154.                 }
    155.             }
    156.         },
    157.         {
    158.             "role": "enraged_mafia",
    159.             "translation": "Enraged Juggernaut",
    160.             "side": "mafia",
    161.             "help": "You are now going on a rampage! You can use /kidnap [name] up to 4 times during the game to make someone a hostage (vote a hostage to survive a lynch). You still can use /kill [name] twice per night, and you now evade 98% of the kills!",
    162.             "info": "Can kill 2 persons during the night. Can convert a Gunner into a Hostage (3 charges). Has a 98% chance of evading kills. Sided with Juggernaut. ",
    163.             "actions": {
    164.                 "night": {
    165.                     "kill": {
    166.                         "target": "AnyButTeam",
    167.                         "common": "Self",
    168.                         "priority": 1,
    169.                         "limit": 1,
    170.                         "hide": true
    171.                     },
    172.                     "kidnap": {
    173.                         "command": "convert",
    174.                         "target": "AnyButTeam",
    175.                         "common": "Self",
    176.                         "priority": 2,
    177.                         "newRole": "hostage",
    178.                         "canConvert": ["villager"],
    179.                         "convertmsg": "A ~Old~ was taken as a hostage by the Juggernaut!",
    180.                         "charges": 3,
    181.                         "limit": 1,
    182.                         "chargesmsg": "You can make ~Charges~ more hostages!"
    183.                     }
    184.                 },
    185.                 "kill": {
    186.                     "mode": {
    187.                         "evadeChance": 0.98
    188.                     }
    189.                 },
    190.                 "copy": {
    191.                     "mode": "ignore",
    192.                     "silent": true
    193.                 },
    194.                 "startup": {
    195.                     "revealRole": "hostage"
    196.                 },
    197.                 "initialCondition": {
    198.                     "curse": {
    199.                         "cursedRole": "enraged_mafia2",
    200.                         "curseCount": 1,
    201.                         "curseConvertMessage": "The Enraged Juggernaut keeps going!"
    202.                     }
    203.                 }
    204.             }
    205.         },
    206.         {
    207.             "role": "enraged_mafia2",
    208.             "translation": "Enraged Juggernaut",
    209.             "side": "mafia",
    210.             "help": "You are stronger now! You can use /kidnap [name] up to 4 times during the game to make someone a hostage (vote a hostage to survive a lynch). You still can use /kill [name] to defeat 2 targets per night, and you now evade 98% of the kills!",
    211.             "hide": true,
    212.             "actions": {
    213.                 "night": {
    214.                     "kill": {
    215.                         "target": "AnyButTeam",
    216.                         "common": "Self",
    217.                         "priority": 1,
    218.                         "limit": 2,
    219.                         "hide": true
    220.                     },
    221.                     "kidnap": {
    222.                         "command": "convert",
    223.                         "target": "AnyButTeam",
    224.                         "common": "Self",
    225.                         "priority": 2,
    226.                         "newRole": "hostage",
    227.                         "canConvert": ["villager"],
    228.                         "convertmsg": "A ~Old~ was taken as a hostage by the Juggernaut!",
    229.                         "limit": 2,
    230.                         "chargesmsg": "You can make ~Charges~ more hostages!",
    231.                         "hide": true
    232.                     }
    233.                 },
    234.                 "kill": {
    235.                     "mode": {
    236.                         "evadeChance": 0.98
    237.                     }
    238.                 },
    239.                 "copy": {
    240.                     "mode": "ignore",
    241.                     "silent": true
    242.                 },
    243.                 "startup": {
    244.                     "revealRole": "hostage"
    245.                 },
    246.                 "initialCondition": {
    247.                     "curse": {
    248.                         "cursedRole": "enraged_mafia3",
    249.                         "curseCount": 1,
    250.                         "curseConvertMessage": "The Enraged Juggernaut keeps going!"
    251.                     }
    252.                 }
    253.             }
    254.         },
    255.         {
    256.             "role": "enraged_mafia3",
    257.             "translation": "Enraged Juggernaut",
    258.             "side": "mafia",
    259.             "help": "You are now going on a rampage! You can use /kidnap [name] up to 4 times during the game to make someone a hostage (vote a hostage to survive a lynch). You still can use /kill [name] to defeat 3 targets per night, and you now evade 98% of the kills!",
    260.             "hide": true,
    261.             "actions": {
    262.                 "night": {
    263.                     "kill": {
    264.                         "target": "AnyButTeam",
    265.                         "common": "Self",
    266.                         "priority": 1,
    267.                         "limit": 3,
    268.                         "hide": true
    269.                     },
    270.                     "kidnap": {
    271.                         "command": "convert",
    272.                         "target": "AnyButTeam",
    273.                         "common": "Self",
    274.                         "priority": 2,
    275.                         "newRole": "hostage",
    276.                         "canConvert": ["villager"],
    277.                         "convertmsg": "A ~Old~ was taken as a hostage by the Juggernaut!",
    278.                         "limit": 1,
    279.                         "chargesmsg": "You can make ~Charges~ more hostages!",
    280.                         "hide": true
    281.                     }
    282.                 },
    283.                 "kill": {
    284.                     "mode": {
    285.                         "evadeChance": 0.98
    286.                     }
    287.                 },
    288.                 "copy": {
    289.                     "mode": "ignore",
    290.                     "silent": true
    291.                 },
    292.                 "startup": {
    293.                     "revealRole": "hostage"
    294.                 }
    295.             }
    296.         },
    297.         {
    298.             "role": "hostage",
    299.             "translation": "Hostage",
    300.             "side": "hostage",
    301.             "help": "You have been taken as a hostage by the Juggernaut! You will die if you receive any vote, but you can become a gunner again by typing /escape [yourname] during the night (20% chance of working). As a hostage, you can win both with the Juggernaut or the Gunners!",
    302.             "winningSides": "*",
    303.             "info": "Lynched with any vote. Can escape and become a Gunner again (20% chance). Sided with Hostages, can win with anyone.",
    304.             "actions": {
    305.                 "voteshield": 50,
    306.                 "night": {
    307.                     "escape": {
    308.                         "command": "convert",
    309.                         "target": "OnlySelf",
    310.                         "common": "Self",
    311.                         "priority": 4,
    312.                         "newRole": "villager",
    313.                         "canConvert": ["hostage"],
    314.                         "convertmsg": "A Hostage has escaped!",
    315.                         "failChance": 0.8
    316.                     }
    317.                 }
    318.             }
    319.         },
    320.         {
    321.             "role": "villager",
    322.             "translation": "Gunner",
    323.             "side": "gunners",
    324.             "help": "As a Gunner, you are fed up with the totalitarian rule of the Juggernaut and get to /kill [name] once per night in an attempt to kill the Juggernaut. If you manage to kill the Juggernaut, you will become the new Juggernaut! Gunners are immune to crossfire, so shoot away!",
    325.             "info": "Can kill 1 person during the night. Can't kill other Gunners. Become the Juggernaut if it kills the Juggernaut. Sided with Gunners.",
    326.             "actions": {
    327.                 "night": {
    328.                     "kill": {
    329.                         "command": [
    330.                             "copy",
    331.                             "kill"
    332.                         ],
    333.                         "target": "AnyButSelf",
    334.                         "common": "Self",
    335.                         "priority": 3,
    336.                         "copyAs": "mafia1b",
    337.                         "canCopy": [
    338.                             "mafia1",
    339.                             "mafia1b",
    340.                             "mafia2",
    341.                             "mafia3"
    342.                         ],
    343.                         "copymsg": "A new Juggernaut was born!"
    344.                     }
    345.                 },
    346.                 "kill": {
    347.                     "mode": {
    348.                         "ignore": [
    349.                             "villager"
    350.                         ]
    351.                     }
    352.                 },
    353.                 "copy": {
    354.                     "mode": "ignore",
    355.                     "silent": true
    356.                 }
    357.             }
    358.         }
    359.     ],
    360.     "roles1": [
    361.         "mafia1",
    362.         "villager",
    363.         "villager",
    364.         "villager",
    365.         "villager",
    366.         "villager",
    367.         "villager",
    368.         "villager",
    369.         "villager",
    370.         "villager",
    371.         "villager",
    372.         "villager",
    373.         "villager",
    374.         "villager",
    375.         "villager",
    376.         "villager",
    377.         "villager",
    378.         "villager",
    379.         "villager",
    380.         "villager",
    381.         "villager",
    382.         "villager",
    383.         "villager",
    384.         "villager",
    385.         "villager",
    386.         "villager",
    387.         "villager",
    388.         "villager",
    389.         "villager",
    390.         "villager"
    391.     ],
    392.     "ticks": {
    393.         "night": 30,
    394.         "standby": 15
    395.     },
    396.     "killmsg": "Game: ~Player~ (~Role~) was killed!",
    397.     "killusermsg": "±Game: You died!"
    398. }
    [/HIDE]

    Strategy:
    Gunners:
    As a Gunner, you want to clean fellow Gunners and find the Juggernaut ASAP. If your /kill target evades, your target was a Gunner and you should say they are clean. If your target protected, he is the Juggernaut. This is where you have to make a decision: should you lynch Juggernaut or attempt to kill and succeed him? If you feel that there are not enough Gunners for support when you want to Enrage the Juggernaut, or you have a "hunch" that you could win as Juggernaut, then attempt for the kill. However, if you feel that there are enough Gunners to take down the Juggernaut, reveal him and he will be lynched. Once the Juggernaut is Enraged, you can devote your nights to killing him (2% chance of success), or you can attempt to /kill Gunners and hope that they die as Hostage. In the vote phase, attempt to lynch the Juggernaut, but he will probably vote a Hostage as a shield, so once you get through all the Hostages, you are free to lynch the Juggernaut.

    Juggernaut:
    As the Juggernaut, you have one main focus: kill, kill, and kill. Kill anyone who seems to be onto you. Once you are Enraged, it is in your best interest to create Hostages to keep you alive. If you are being targeted in the lynch (which will most likely happen), vote a Hostage and he will be lynched, leaving you free to kill. You can also frame others for being Juggernaut by using /protect on someone else. [/HIDE]

    History of EDITs:

    EDIT: Night phase is now 30 seconds and day phase is now 20 seconds

    EDIT2: Juggernaut now has a kill starting n1 and gains 1 extra kill each passing night (max 5). He also has a self-protect that has a 40% chance of success and that chance goes down 10% every passing turn.

    EDIT3: Due to increased number of kills with Juggernaut, player cap is now 30 players, making this a peak theme.

    EDIT4: /shoot is now /kill for Gunners.

    EDIT5: MAJOR changes for strategy. Lynch phase is now added. When Juggernaut is lynched, he remains as a permanent Enraged Juggernaut with a 95% evade chance and 2 kills. He also has 4 charges of /capture to turn Gunners into Hostages, who are conspirators with a +50 voteshield and a 20% chance to /escape and become Gunner again.

    EDIT6: Enraged Juggernaut evade chance has been bumped up to 98%

    EDIT7: Juggernaut now gets 2 uses of /protect per night to be used on anyone including himself. This is to promote framing in the theme.[/HIDE]
     
    Last edited: Apr 29, 2013
  2. Fuzzysqurl

    Fuzzysqurl baa baa mareep I do what I want Server Owner Developer I do what I want Server Owner Developer

    Joined:
    Sep 12, 2012
    Messages:
    2,096
    Likes Received:
    967
    I see your theme and raise you [1] Test


    However, I'm not quite seeing a coherent strategy necessarily, just more of randing until you get the Juggernaut, then hope no one targets you back. I could be completely wrong, hence why I offered the test, I want to see this played with legit players.
     
  3. Ezio da Firenze

    Ezio da Firenze New Member

    Joined:
    Apr 10, 2013
    Messages:
    10
    Likes Received:
    0
    PO Trainer Name:
    Ezio da Firenze
    The concept is interesting, i would like to see it tested, but since i'm not a QC :)
     
  4. Slowkii

    Slowkii Banned

    Joined:
    Jan 28, 2013
    Messages:
    603
    Likes Received:
    0
    Looks great o:

    Unique idea, would love to test this.
     
  5. Katia

    Katia Haxy Haxy!

    Joined:
    Apr 17, 2012
    Messages:
    261
    Likes Received:
    0
    Hmm so essentially a juggernaut will always win, tho almost certainly not the poor dork that started with it. It seems to me that no one half intelligent would want to kill the juggernaut in the beginning since doing so would be like signing your own death warrant. Then likely a mad rush to kill the juggernaut at the end when you would have a better chance of living as it.

    Eh, I'll give this a Test [2] so we can see what happens.
     
  6. Not L

    Not L Fairy Princess

    Joined:
    Jan 9, 2012
    Messages:
    193
    Likes Received:
    0
    Test [3]

    Very simple and a concept I would love to give a try!
     
  7. IceKirby

    IceKirby A.K.A. RiceKirby

    Joined:
    Apr 26, 2011
    Messages:
    2,176
    Likes Received:
    635
    PO Trainer Name:
    RiceKirby
    After reading some commentaries about the theme, I thought about 2 possibilities that could be done to make the Juggernaut role more interesting:
    -Multiples 'Gunner' roles: Instead of having 1 Gunner, 3 or more duplicates could be added to better control the priority each Gunner gets. With everyone having the same Gunner role, Priority will be defined by Joining order. With a more controlled priority, Juggernaut's priority would be a little more useful.
    -Giving Juggernaut a second kill: I think this could be more useful than having 1st priority. Juggernaut with the fastest kill only means it can survive longer by killing the person that was about to kill them, but those situations will rarely occur. They would be more likely to happen if Juggernaut had a second kill, possibly giving more chances to the person who starts as that role.

    Also, you should think about how this game would work if it started with a 2nd Juggernaut when there are enough players (possibly becoming a Peak theme too).
     
  8. Scene

    Scene reverie

    Joined:
    Dec 16, 2012
    Messages:
    365
    Likes Received:
    5
    Yeah, this theme looks quite fun to play. I agree with RiceKirby about kill priority and giving the Juggernaut an extra kill, I think it'd balance out the theme more.

    Seems like a theme which requires a lot of strategy to win - kill the Juggernaut too early and you're kind of screwed. In console games with a mode like this, this problem isn't a factor because deaths aren't permanent. I'd really like to see this team in action though!
     
  9. Fuzzysqurl

    Fuzzysqurl baa baa mareep I do what I want Server Owner Developer I do what I want Server Owner Developer

    Joined:
    Sep 12, 2012
    Messages:
    2,096
    Likes Received:
    967
    You could technically turn every gunner into a Vepix-clone role. Each new player spawns as a new role, so priority is determined randomly by spawn as opposed to by join order.
     
  10. Zeromare

    Zeromare OUTRAGE EVERYTHING!

    Joined:
    Sep 13, 2011
    Messages:
    16
    Likes Received:
    0
    It's been uploaded for testing. Time uploaded is 10:54:46 PM EDT [GMT-4] @ 4-21-2013

    (22:54:46) ±Murkrow: Loaded theme Juggernaut
     
  11. Epikhairz

    Epikhairz Delta Stream

    Joined:
    Mar 15, 2013
    Messages:
    929
    Likes Received:
    102
    PO Trainer Name:
    Epikhairz
    Log (bolded satisfied players for convenience.)

    (20:22:29) ***************************************************************************************
    (20:22:29) ±Game: SnakeWrangler started a game with theme Juggernaut!
    (20:22:29) ±Game: Type /Join to enter the game!
    (20:22:29) ***************************************************************************************

    A Juggernaut-themed mafia game is starting, Epikhairz0603!
    (20:22:29) ±Game: For years, the Juggernaut has ruled the village with an iron fist, but as the population dwindled, a violent war between the Juggernaut and the Gunners began. The one to kill the Juggernaut becomes his successor, but just remember: absolute power corrupts absolutely. Be the last one standing! If you have any suggestions, PM Epikhairz0603.
    (20:22:30) ±Game: kdagger joined the game!
    (20:22:31) ±Game: Pokemaster131 joined the game!
    (20:22:32) ±Game: Steam Baron joined the game!
    (20:22:32) ±Game: SpeederRiley joined the game!
    (20:22:33) ±Game: Epikhairz0603 joined the game!
    (20:22:34) ±Game: Katia joined the game!
    (20:22:34) Epikhairz0603: YAAAAAh
    (20:22:35) ±Game: Turky Bacon joined the game!
    (20:22:36) ±Game: McStarley joined the game!
    (20:22:36) ±Game: PKMN_Bellossom joined the game!
    (20:22:36) ±Game: Riika joined the game!
    (20:22:37) SnakeWrangler: there we go
    (20:22:38) ±Game: Dept. Heaven joined the game!
    (20:22:38) ±Game: haygurl joined the game!
    (20:22:40) ±Game: Regirocker joined the game!
    (20:22:41) ±Game: Mai-hime joined the game!
    (20:22:43) Chaos Inferno: well, I was going to start a zelda for everyone
    (20:22:43) Mai-hime: new theme
    (20:22:44) Epikhairz0603: Sebastian Hummel join
    (20:22:44) Turky Bacon: Juggernaut! Awesome! XD
    (20:22:45) ±Game: Sweetless joined the game!
    (20:22:48) SnakeWrangler: anyway gotta love AFK luigis
    (20:22:48) Chaos Inferno: (20:22:26) ±Game: Sorry, you have started a game 2 games ago, let someone else have a chance!
    (20:22:49) Pokemaster131: never played this before
    (20:22:50) Chaos Inferno: but this
    (20:22:50) ±Game: Lizz joined the game!
    (20:22:51) ***************************************************************************************
    (20:22:51) Times Up! :
    (20:22:51) The Roles have been Decided! :
    (20:22:51) ±Game: You are a Gunner!
    (20:22:51) ±Game: As a Gunner, you are fed up with the totalitarian rule of the Juggernaut and get to /shoot [name] once per night in an attempt to kill the Juggernaut. If you manage to kill the Juggernaut, you will become the new Juggernaut! Gunners are immune to crossfire, so shoot away!
    (20:22:51) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:22:51) Current Players: Dept. Heaven, Epikhairz0603, Katia, Lizz, Mai-hime, McStarley, PKMN_Bellossom, Pokemaster131, Regirocker, Riika, SpeederRiley, Steam Baron, Sweetless, Turky Bacon, haygurl, kdagger.
    (20:22:51) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (20:22:51) Time: Night 1
    (20:22:51) Make your moves, you only have 35 seconds! :
    (20:22:51) ***************************************************************************************
    (20:22:52) Riika: EPIK. i have a suggestion!
    (20:22:53) Turky Bacon: Can I NOT be an important character..?
    (20:22:57) Dept. Heaven: we're definitely capping this
    (20:22:59) ±Game: You have chosen to shoot Riika!
    (20:23:02) Epikhairz0603: yes, Riika?
    (20:23:14) Sweetless: derp.
    (20:23:15) kdagger: This theme looks silly
    (20:23:17) Riika: This theme cannot be improved. Too awesome. ouo
    (20:23:18) kdagger: is there a vote?
    (20:23:18) Dept. Heaven: LOL, we get to shoot randomly
    (20:23:21) Pokemaster131: lol
    (20:23:22) Dept. Heaven: too awesome.
    (20:23:26) ***************************************************************************************
    (20:23:26) Times Up! :
    (20:23:26) Game: Riika (Gunner) was killed!
    (20:23:26) ±Game: A new Juggernaut was born!
    (20:23:26) Game: Sweetless (Juggernaut) was killed!
    (20:23:26) ***************************************************************************************
    (20:23:26) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:23:26) Current Players: Dept. Heaven, Epikhairz0603, Katia, Lizz, Mai-hime, McStarley, PKMN_Bellossom, Pokemaster131, Regirocker, SpeederRiley, Steam Baron, Turky Bacon, haygurl, kdagger.
    (20:23:26) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (20:23:26) Time: Day 1
    (20:23:26) You have 10 seconds to debate who are the bad guys! :
    (20:23:26) ***************************************************************************************
    (20:23:36) ***************************************************************************************
    (20:23:36) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:23:36) Current Players: Dept. Heaven, Epikhairz0603, Katia, Lizz, Mai-hime, McStarley, PKMN_Bellossom, Pokemaster131, Regirocker, SpeederRiley, Steam Baron, Turky Bacon, haygurl, kdagger.
    (20:23:36) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (20:23:36) Time: Night 2
    (20:23:36) Make your moves, you only have 35 seconds! :
    (20:23:36) ***************************************************************************************
    (20:23:38) Dept. Heaven: oh
    (20:23:41) Dept. Heaven: I had aimed right, too
    (20:23:43) Dept. Heaven: prio :(
    (20:23:43) ±CommandBot: The command kill doesn't exist
    (20:23:48) ±Game: You have chosen to shoot Dept. Heaven!
    (20:23:50) Pokemaster131: almost
    (20:23:56) McStarley: ehh
    (20:23:58) Katia: I missed
    (20:24:03) Pokemaster131: i shot u katia
    (20:24:06) SpeederRiley: meh
    (20:24:08) Pokemaster131: no offense
    (20:24:10) Katia: luckily
    (20:24:11) ***************************************************************************************
    (20:24:11) Times Up! :
    (20:24:11) Game: Katia (Gunner) was killed!
    (20:24:11) ±Game: Your target (Dept. Heaven) evaded your shoot!
    (20:24:11) ***************************************************************************************
    (20:24:11) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:24:11) Current Players: Dept. Heaven, Epikhairz0603, Lizz, Mai-hime, McStarley, PKMN_Bellossom, Pokemaster131, Regirocker, SpeederRiley, Steam Baron, Turky Bacon, haygurl, kdagger.
    (20:24:11) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (20:24:11) Time: Day 2
    (20:24:11) You have 10 seconds to debate who are the bad guys! :
    (20:24:11) ***************************************************************************************
    (20:24:15) Mai-hime: All gunners
    (20:24:16) Katia: you can't teamkill
    (20:24:17) Steam Baron: wtf
    (20:24:19) Mai-hime: what do you do
    (20:24:21) ***************************************************************************************
    (20:24:21) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:24:21) Current Players: Dept. Heaven, Epikhairz0603, Lizz, Mai-hime, McStarley, PKMN_Bellossom, Pokemaster131, Regirocker, SpeederRiley, Steam Baron, Turky Bacon, haygurl, kdagger.
    (20:24:21) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (20:24:21) Time: Night 3
    (20:24:21) Make your moves, you only have 35 seconds! :
    (20:24:21) ***************************************************************************************
    (20:24:21) Katia: gee thanks juggr
    (20:24:21) Pokemaster131: lol i didn't
    (20:24:23) PKMN_Bellossom: this theme is perfect
    (20:24:24) Dept. Heaven: you SHOOT
    (20:24:25) Epikhairz0603: MA h8 classic
    (20:24:27) ±Game: You have chosen to shoot PKMN_Bellossom!
    (20:24:42) Mai-hime: oh reallly
    (20:24:56) ***************************************************************************************
    (20:24:56) Times Up! :
    (20:24:56) Game: Pokemaster131 (Gunner) was killed!
    (20:24:56) ±Game: Your target (PKMN_Bellossom) evaded your shoot!
    (20:24:56) ***************************************************************************************
    (20:24:56) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:24:56) Current Players: Dept. Heaven, Epikhairz0603, Lizz, Mai-hime, McStarley, PKMN_Bellossom, Regirocker, SpeederRiley, Steam Baron, Turky Bacon, haygurl, kdagger.
    (20:24:56) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (20:24:56) Time: Day 3
    (20:24:56) You have 10 seconds to debate who are the bad guys! :
    (20:24:57) ***************************************************************************************
    (20:24:57) PKMN_Bellossom: lag
    (20:24:59) Dept. Heaven: ya rly
    (20:25:05) ***************************************************************************************
    (20:25:06) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:25:06) Current Players: Dept. Heaven, Epikhairz0603, Lizz, Mai-hime, McStarley, PKMN_Bellossom, Regirocker, SpeederRiley, Steam Baron, Turky Bacon, haygurl, kdagger.
    (20:25:06) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (20:25:06) Time: Night 4
    (20:25:06) Make your moves, you only have 35 seconds! :
    (20:25:06) ***************************************************************************************
    (20:25:07) Katia: so much for my stradedgy
    (20:25:07) Dept. Heaven: cmon guys, no one hitting this jugga nigga
    (20:25:14) haygurl: only 10 secs to discuss who bad guy is
    (20:25:16) ±Game: You have chosen to shoot Steam Baron!
    (20:25:17) haygurl: need moar time
    (20:25:40) ***************************************************************************************
    (20:25:41) Times Up! :
    (20:25:41) Game: Dept. Heaven (Gunner) was killed!
    (20:25:41) ±Game: Your target (Steam Baron) evaded your shoot!
    (20:25:41) ***************************************************************************************
    (20:25:41) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:25:41) Current Players: Epikhairz0603, Lizz, Mai-hime, McStarley, PKMN_Bellossom, Regirocker, SpeederRiley, Steam Baron, Turky Bacon, haygurl, kdagger.
    (20:25:41) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (20:25:41) Time: Day 4
    (20:25:41) You have 10 seconds to debate who are the bad guys! :
    (20:25:41) ***************************************************************************************
    (20:25:49) Lizz: that awkward moment when we still dont succeed
    (20:25:49) McStarley: Okay.
    (20:25:50) ***************************************************************************************
    (20:25:51) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:25:51) Current Players: Epikhairz0603, Lizz, Mai-hime, McStarley, PKMN_Bellossom, Regirocker, SpeederRiley, Steam Baron, Turky Bacon, haygurl, kdagger.
    (20:25:51) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (20:25:51) Time: Night 5
    (20:25:51) Make your moves, you only have 35 seconds! :
    (20:25:51) ***************************************************************************************
    (20:25:51) Turky Bacon: Well...
    (20:25:52) Epikhairz0603: Crap someone get dat Juggernaut
    (20:25:56) ±Game: You have chosen to shoot Turky Bacon!
    (20:26:08) SpeederRiley: that jug is good
    (20:26:15) Katia: More like lucky
    (20:26:19) SpeederRiley: -.^
    (20:26:19) Epikhairz0603: ^
    (20:26:25) ***************************************************************************************
    (20:26:26) Times Up! :
    (20:26:26) Game: Turky Bacon (Gunner) was killed!
    (20:26:26) ±Game: A new Juggernaut was born!
    (20:26:26) Game: SpeederRiley (Juggernaut) was killed!
    (20:26:26) ±Game: A new Juggernaut was born!
    (20:26:26) Game: McStarley (Juggernaut) was killed!
    (20:26:26) ***************************************************************************************
    (20:26:26) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:26:26) Current Players: Epikhairz0603, Lizz, Mai-hime, PKMN_Bellossom, Regirocker, Steam Baron, haygurl, kdagger.
    (20:26:26) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (20:26:26) Time: Day 5
    (20:26:26) You have 10 seconds to debate who are the bad guys! :
    (20:26:26) ***************************************************************************************
    (20:26:31) Epikhairz0603: -.-
    (20:26:32) kdagger: Lol
    (20:26:33) Katia: lol
    (20:26:34) Lizz: wow
    (20:26:35) Steam Baron: lol
    (20:26:36) ***************************************************************************************
    (20:26:36) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:26:36) Current Players: Epikhairz0603, Lizz, Mai-hime, PKMN_Bellossom, Regirocker, Steam Baron, haygurl, kdagger.
    (20:26:36) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (20:26:36) Time: Night 6
    (20:26:36) Make your moves, you only have 35 seconds! :
    (20:26:36) ***************************************************************************************
    (20:26:37) Mai-hime: cool
    (20:26:42) ±Game: You have chosen to shoot Mai-hime!
    (20:27:10) ***************************************************************************************
    (20:27:11) Times Up! :
    (20:27:11) Game: kdagger (Gunner) was killed!
    (20:27:11) ±Game: A new Juggernaut was born!
    (20:27:11) Game: haygurl (Juggernaut) was killed!
    (20:27:11) ±Game: Your target (Mai-hime) evaded your shoot!
    (20:27:11) ***************************************************************************************
    (20:27:11) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:27:11) Current Players: Epikhairz0603, Lizz, Mai-hime, PKMN_Bellossom, Regirocker, Steam Baron.
    (20:27:11) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner
    (20:27:11) Time: Day 6
    (20:27:11) You have 10 seconds to debate who are the bad guys! :
    (20:27:11) ***************************************************************************************
    (20:27:21) ***************************************************************************************
    (20:27:21) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:27:21) Current Players: Epikhairz0603, Lizz, Mai-hime, PKMN_Bellossom, Regirocker, Steam Baron.
    (20:27:21) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner
    (20:27:21) Time: Night 7
    (20:27:21) Make your moves, you only have 35 seconds! :
    (20:27:21) ***************************************************************************************
    (20:27:26) Mai-hime: lol
    (20:27:26) ±Game: You have chosen to shoot Lizz!
    (20:27:54) Epikhairz0603: I might make night phases shorter
    (20:27:55) ***************************************************************************************
    (20:27:56) Times Up! :
    (20:27:56) Game: Lizz (Gunner) was killed!
    (20:27:56) ±Game: A new Juggernaut was born!
    (20:27:56) Game: Steam Baron (Juggernaut) was killed!
    (20:27:56) ***************************************************************************************
    (20:27:56) Current Roles: Gunner, Gunner, Gunner, Juggernaut.
    (20:27:56) Current Players: Epikhairz0603, Mai-hime, PKMN_Bellossom, Regirocker.
    (20:27:56) Current Team: Gunner, Gunner, Gunner
    (20:27:56) Time: Day 7
    (20:27:57) You have 10 seconds to debate who are the bad guys! :
    (20:27:57) ***************************************************************************************
    (20:28:06) ***************************************************************************************
    (20:28:06) Current Roles: Gunner, Gunner, Gunner, Juggernaut.
    (20:28:06) Current Players: Epikhairz0603, Mai-hime, PKMN_Bellossom, Regirocker.
    (20:28:06) Current Team: Gunner, Gunner, Gunner
    (20:28:06) Time: Night 8
    (20:28:06) Make your moves, you only have 35 seconds! :
    (20:28:06) ***************************************************************************************
    (20:28:07) ±Game: You have chosen to shoot Mai-hime!
    (20:28:20) Epikhairz0603: *it's so quiet...*
    (20:28:26) PKMN_Bellossom: been afk
    (20:28:28) PKMN_Bellossom: lol
    (20:28:40) ***************************************************************************************
    (20:28:41) Times Up! :
    (20:28:41) Game: PKMN_Bellossom (Gunner) was killed!
    (20:28:41) ±Game: A new Juggernaut was born!
    (20:28:41) ±Game: You copied someone and changed roles!
    (20:28:41) ±Game: You are a Juggernaut!
    (20:28:41) ±Game: Most of the peaceful villagers have fled to neighboring villages, and every night, you get a chance to /kill [name] one of the violent Gunners at maximum priority and assert control of the village!
    (20:28:41) Game: Mai-hime (Juggernaut) was killed!
    (20:28:41) ***************************************************************************************
    (20:28:41) Current Roles: Gunner, Juggernaut.
    (20:28:42) Current Players: Epikhairz0603, Regirocker.
    (20:28:42) Current Team: Juggernaut
    (20:28:42) Time: Day 8
    (20:28:42) You have 10 seconds to debate who are the bad guys! :
    (20:28:42) ***************************************************************************************
    (20:28:46) Epikhairz0603: gg
    (20:28:50) Epikhairz0603: Juggernaut here
    (20:28:51) ***************************************************************************************
    (20:28:51) Current Roles: Gunner, Juggernaut.
    (20:28:51) Current Players: Epikhairz0603, Regirocker.
    (20:28:51) Current Team: Juggernaut
    (20:28:51) Time: Night 9
    (20:28:51) Make your moves, you only have 35 seconds! :
    (20:28:51) ***************************************************************************************
    (20:28:55) ±Game: You have chosen to kill Regirocker!
    (20:28:59) Epikhairz0603: :D
    (20:29:05) Epikhairz0603: I won first time playing my own theme :P
    (20:29:26) ***************************************************************************************
    (20:29:26) Times Up! :
    (20:29:26) Game: Regirocker (Gunner) was killed!
    (20:29:26) ±Game: The Juggernaut (Epikhairz0603) wins!
    (20:29:26) ***************************************************************************************
    (20:29:27) Mai-hime: Epik you WWhore
    (20:29:27) McStarley: Fun theme. +1
    (20:29:29) SnakeWrangler: why does the person who started a game not automatically join it?
    (20:29:31) Sebastian Hummel: lol
    (20:29:32) Steve Johns: LOL
    (20:29:33) Steve Johns: gg
    (20:29:35) SnakeWrangler: That made me sad :C
    (20:29:36) Steam Baron: Haha, I liked this Juggernaut thing
    (20:29:40) Turky Bacon: ?
    (20:29:40) Lucariowd: i am new 2 this[/HIDE]


    May make night phases shorter and day phases longer...

    EDIT: Aaaaaand DONE. Now night phases are 25 seconds and day phases are 20.
     
    Last edited: Apr 22, 2013
  12. Roild

    Roild Member

    Joined:
    Jul 21, 2012
    Messages:
    861
    Likes Received:
    11
    PO Trainer Name:
    Roild
    The idea is well and fine, but the game doesn't work with the Juggernaut's current standing. 16 might be too much, because staying hidden as a Juggernaut is incredibly difficult. If you start out as a Juggernaut, or become one too early, your chances of winning are very low. A Juggernaut should be given a one-time (or more, maybe recharging?) kill in order to thin the crowd out faster as well as possibly win late-game. Maybe a one charge kill which curses back to him every X turns (so that way, it will be a pseudo recharge, but can use two nights in a row.)


    (10:28:28) ***************************************************************************************
    (10:28:28) Times Up! :
    (10:28:28) The Roles have been Decided! :
    (10:28:28) ±Game: You are a Gunner!
    (10:28:28) ±Game: As a Gunner, you are fed up with the totalitarian rule of the Juggernaut and get to /shoot [name] once per night in an attempt to kill the Juggernaut. If you manage to kill the Juggernaut, you will become the new Juggernaut! Gunners are immune to crossfire, so shoot away!
    (10:28:28) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (10:28:28) Current Players: Current Team, Martial Army, Mikau Zora, Roild, SixtyZero, Soarin, Stocke, ashero, packy, tyrant, xxLiamxx.
    (10:28:28) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (10:28:28) Time: Night 1
    (10:28:28) Make your moves, you only have 35 seconds! :
    (10:28:28) ***************************************************************************************
    (10:28:31) xxLiamxx: gj
    (10:28:31) packy: juggernaut here, do i claim?
    (10:28:35) xxLiamxx: gunn
    (10:28:37) Current Team: not killing anyone
    (10:28:39) SixtyZero: lol
    (10:28:40) Roild: I see.
    (10:28:44) won against Sandbag.
    (10:28:44) ±CommandBot: The command kill doesn't exist
    (10:28:46) xxLiamxx: shooting packy :D
    (10:28:47) ashero: gunner
    (10:28:48) ashero: here
    (10:28:51) ±Game: You have chosen to shoot ashero!
    (10:28:52) ashero: dont kill me gunner
    (10:28:56) Roild: Juggernaut here, GG
    (10:28:57) Mikau Zora: I am...
    (10:28:59) ashero: you will wasting your night
    (10:29:01) Battle between Sandbag and started.
    (10:29:03) ***************************************************************************************
    (10:29:03) Times Up! :
    (10:29:03) ±Game: Your target (ashero) evaded your shoot!
    (10:29:03) No one died! :
    (10:29:03) ***************************************************************************************
    (10:29:03) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (10:29:03) Current Players: Current Team, Martial Army, Mikau Zora, Roild, SixtyZero, Soarin, Stocke, ashero, packy, tyrant, xxLiamxx.
    (10:29:03) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (10:29:03) Time: Day 1
    (10:29:03) You have 10 seconds to debate who are the bad guys! :
    (10:29:03) ***************************************************************************************
    (10:29:09) xxLiamxx: packy is gunner
    (10:29:11) ashero: lol
    (10:29:12) Current Team: wow, juggernaut's not killing
    (10:29:12) SixtyZero: lol
    (10:29:13) ***************************************************************************************
    (10:29:13) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (10:29:13) Current Players: Current Team, Martial Army, Mikau Zora, Roild, SixtyZero, Soarin, Stocke, ashero, packy, tyrant, xxLiamxx.
    (10:29:13) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (10:29:13) Time: Night 2
    (10:29:13) Make your moves, you only have 35 seconds! :
    (10:29:13) ***************************************************************************************
    (10:29:14) xxLiamxx: w0w
    (10:29:14) Roild: Hmmm
    (10:29:15) tyrant: xx
    (10:29:16) ashero: dat gunner
    (10:29:18) tyrant: no one died
    (10:29:20) Current Team: see? stall
    (10:29:21) xxLiamxx: im jugg
    (10:29:22) Mikau Zora: Well then... what now?
    (10:29:26) Soarin: .roles :Jugernaut
    (10:29:27) xxLiamxx: uheuheuhe
    (10:29:28) ±Game: You have chosen to shoot Stocke!
    (10:29:30) packy: pro jugg stalling
    (10:29:32) SixtyZero: xD
    (10:29:34) ±CommandBot: The command roles: doesn't exist
    (10:29:36) *** *********************************************************************** ***
    (10:29:36) ±Role: Juggernaut
    (10:29:36) ±Ability: Can kill one person during the night. Sided with Juggernaut.
    (10:29:36) ±Game: 1-16 Players
    (10:29:36) *** *********************************************************************** ***

    (10:29:41) Stocke: To be honest, the problem I see with this game is that the first juggernaut is almost bound to lose
    (10:29:41) ashero: the first one who get juggenaut roles never win xD
    (10:29:44) Roild: semi-msmall game
    (10:29:46) ashero: lol
    (10:29:47) Current Team: yeah, Stocke
    (10:29:48) ashero: ninja'd
    (10:29:48) ***************************************************************************************
    (10:29:48) Times Up! :
    (10:29:48) Game: packy (Gunner) was killed!
    (10:29:48) ±Game: Your target (Stocke) evaded your shoot!
    (10:29:48) ***************************************************************************************
    (10:29:48) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (10:29:48) Current Players: Current Team, Martial Army, Mikau Zora, Roild, SixtyZero, Soarin, Stocke, ashero, tyrant, xxLiamxx.
    (10:29:48) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (10:29:48) Time: Day 2
    (10:29:48) You have 10 seconds to debate who are the bad guys! :
    (10:29:48) ***************************************************************************************
    (10:29:53) xxLiamxx: lel
    (10:29:55) Nintendobender won against .
    (10:29:58) xxLiamxx: wasnt me i swear
    (10:29:58) ***************************************************************************************
    (10:29:58) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (10:29:58) Current Players: Current Team, Martial Army, Mikau Zora, Roild, SixtyZero, Soarin, Stocke, ashero, tyrant, xxLiamxx.
    (10:29:58) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (10:29:58) Time: Night 3
    (10:29:58) Make your moves, you only have 35 seconds! :
    (10:29:58) ***************************************************************************************
    (10:29:59) Battle between Nintendobender and started.
    (10:30:08) Soarin: Oh right
    (10:30:15) Soarin: Another Vanilla based theme.
    (10:30:19) Player Marvel (IP 108.46.183.120) is being overactive.
    (10:30:20) ashero: obv lose who got jugger now
    (10:30:28) ashero: xD
    (10:30:33) ***************************************************************************************
    (10:30:33) Times Up! :
    (10:30:33) Game: Mikau Zora (Gunner) was killed!
    (10:30:33) ***************************************************************************************
    (10:30:33) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (10:30:33) Current Players: Current Team, Martial Army, Roild, SixtyZero, Soarin, Stocke, ashero, tyrant, xxLiamxx.
    (10:30:33) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (10:30:33) Time: Day 3
    (10:30:33) You have 10 seconds to debate who are the bad guys! :
    (10:30:33) ***************************************************************************************
    (10:30:35) Roild: ah, this theme is in testing
    (10:30:41) Roild: It's also non-peak
    (10:30:43) ***************************************************************************************
    (10:30:43) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (10:30:43) Current Players: Current Team, Martial Army, Roild, SixtyZero, Soarin, Stocke, ashero, tyrant, xxLiamxx.
    (10:30:43) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (10:30:43) Time: Night 4
    (10:30:43) Make your moves, you only have 35 seconds! :
    (10:30:43) ***************************************************************************************
    (10:30:44) xxLiamxx: ashero is gunner
    (10:30:46) ashero: btw nice theme
    (10:30:54) Player Im not Ddog (IP 24.94.73.119) is being overactive.
    (10:30:54) Stocke: It should be even nonpeaker
    (10:30:55) xxLiamxx: whose is it
    (10:30:56) ±Game: You have chosen to shoot SixtyZero!
    (10:30:59) SixtyZero: hm
    (10:31:01) Current Team: it takes a while :/
    (10:31:03) Roild: 16 max
    (10:31:04) forfeited against Nintendobender.
    (10:31:05) Current Team: noit shooting
    (10:31:07) Battle between Nintendobender and started.
    (10:31:08) Current Team: not*
    (10:31:15) Stocke: 16 max sounds too many for a non peak game
    (10:31:17) Roild: Is this mafia? Possibly.
    (10:31:18) ***************************************************************************************
    (10:31:18) Times Up! :
    (10:31:18) Game: ashero (Gunner) was killed!
    (10:31:18) ±Game: Your target (SixtyZero) evaded your shoot!
    (10:31:18) ***************************************************************************************
    (10:31:18) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (10:31:18) Current Players: Current Team, Martial Army, Roild, SixtyZero, Soarin, Stocke, tyrant, xxLiamxx.
    (10:31:18) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (10:31:18) Time: Day 4
    (10:31:18) You have 10 seconds to debate who are the bad guys! :
    (10:31:18) ***************************************************************************************
    (10:31:20) SixtyZero: This is going longer than expected
    (10:31:28) xxLiamxx: SixtyZero is gunner
    (10:31:28) ***************************************************************************************
    (10:31:28) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (10:31:28) Current Players: Current Team, Martial Army, Roild, SixtyZero, Soarin, Stocke, tyrant, xxLiamxx.
    (10:31:28) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (10:31:28) Time: Night 5
    (10:31:28) Make your moves, you only have 35 seconds! :
    (10:31:28) ***************************************************************************************
    (10:31:29) tyrant: no randing in this theme
    (10:31:32) Roild: I'll say to lower to ~12
    (10:31:38) Mikau Zora won against .
    (10:31:38) SixtyZero: Yeah...
    (10:31:41) Current Team: it's Roild? idk
    (10:31:42) Roild: min 3, eh
    (10:31:44) Current Team: not shooting
    (10:31:45) Roild: prolly 4
    (10:31:47) Avatar Roku joined the channel.
    (10:31:48) ±Game: You have chosen to shoot Current Team!
    (10:31:50) Martial Army: xxLiamxx or Stocke
    (10:31:51) ±Game: You have chosen to shoot tyrant!
    (10:31:51) Martial Army: Or Tyrany.
    (10:31:58) Stocke: AFAIK, everyone
    (10:31:59) SixtyZero: idk
    (10:32:01) IP 218.89.49.160 is being overactive.
    (10:32:03) ***************************************************************************************
    (10:32:03) Times Up! :
    (10:32:03) Game: SixtyZero (Gunner) was killed!
    (10:32:03) ±Game: A new Juggernaut was born!
    (10:32:03) ±Game: You copied someone and changed roles!
    (10:32:03) ±Game: You are a Juggernaut!
    (10:32:03) ±Game: Most of the peaceful villagers have fled to neighboring villages, and every night, you get a chance to /kill [name] one of the violent Gunners at maximum priority and assert control of the village!
    (10:32:03) Game: tyrant (Juggernaut) was killed!
    (10:32:03) ***************************************************************************************
    (10:32:03) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (10:32:03) Current Players: Current Team, Martial Army, Roild, Soarin, Stocke, xxLiamxx.
    (10:32:03) Current Team: Juggernaut
    (10:32:03) Time: Day 5
    (10:32:03) You have 10 seconds to debate who are the bad guys! :
    (10:32:03) ***************************************************************************************
    (10:32:13) ***************************************************************************************
    (10:32:13) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (10:32:13) Current Players: Current Team, Martial Army, Roild, Soarin, Stocke, xxLiamxx.
    (10:32:13) Current Team: Juggernaut
    (10:32:13) Time: Night 6
    (10:32:13) Make your moves, you only have 35 seconds! :
    (10:32:13) ***************************************************************************************
    (10:32:16) Sandbag forfeited against .
    (10:32:16) xxLiamxx: yup the guy that cleans all the gunners
    (10:32:18) xxLiamxx: is jugg
    (10:32:18) Soarin: A neeew Jugger
    (10:32:18) Roild: So someone killed him?
    (10:32:27) Soarin: Yeah
    (10:32:28) ±Game: You have chosen to kill Martial Army!
    (10:32:31) Stocke: The tyrant being a tyrant is almost funny
    (10:32:44) Roild: Stocke, stfu and give me mana crystals.
    (10:32:48) ***************************************************************************************
    (10:32:48) Times Up! :
    (10:32:48) Game: Martial Army (Gunner) was killed!
    (10:32:48) ***************************************************************************************
    (10:32:48) Current Roles: Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (10:32:48) Current Players: Current Team, Roild, Soarin, Stocke, xxLiamxx.
    (10:32:48) Current Team: Juggernaut
    (10:32:48) Time: Day 6
    (10:32:48) You have 10 seconds to debate who are the bad guys! :
    (10:32:48) ***************************************************************************************
    (10:32:54) xxLiamxx: soarin is gunner
    (10:32:56) xxLiamxx: l0l
    (10:32:56) Martial Army logged out.
    (10:32:56) ~Unknown~ left the channel.
    (10:32:57) Roild: xxLiamxx is clean.
    (10:32:58) Stocke: Mana crystals?
    (10:32:58) ***************************************************************************************
    (10:32:58) Current Roles: Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (10:32:58) Current Players: Current Team, Roild, Soarin, Stocke, xxLiamxx.
    (10:32:58) Current Team: Juggernaut
    (10:32:58) Time: Night 7
    (10:32:58) Make your moves, you only have 35 seconds! :
    (10:32:58) ***************************************************************************************
    (10:33:07) Current Team: lol I haven't fired a single shot all game- I can be afk and still get pretty far
    (10:33:07) Roild: o_o Your name isn't based on the game?
    (10:33:08) Mikau Zora left the channel.
    (10:33:10) xxLiamxx: yeah ty captain obvious
    (10:33:14) Stocke: I'm clean as well, I bathed only yesterday
    (10:33:19) ±Game: You have chosen to kill Stocke!
    (10:33:26) ±Game: You have chosen to kill Current Team!
    (10:33:33) ***************************************************************************************
    (10:33:33) Times Up! :
    (10:33:33) Game: Current Team (Gunner) was killed!
    (10:33:33) ***************************************************************************************
    (10:33:33) Current Roles: Gunner, Gunner, Gunner, Juggernaut.
    (10:33:33) Current Players: Roild, Soarin, Stocke, xxLiamxx.
    (10:33:33) Current Team: Juggernaut
    (10:33:33) Time: Day 7
    (10:33:33) You have 10 seconds to debate who are the bad guys! :
    (10:33:33) ***************************************************************************************
    (10:33:40) Roild: Cleaned one more.
    (10:33:43) ***************************************************************************************
    (10:33:43) Current Roles: Gunner, Gunner, Gunner, Juggernaut.
    (10:33:43) Current Players: Roild, Soarin, Stocke, xxLiamxx.
    (10:33:43) Current Team: Juggernaut
    (10:33:43) Time: Night 8
    (10:33:43) Make your moves, you only have 35 seconds! :
    (10:33:43) ***************************************************************************************
    (10:33:46) Steve Johns joined the channel.
    (10:33:54) ±Game: You have chosen to kill Stocke!
    (10:33:59) 9898 joined the channel.
    (10:34:02) Roild: This game in endgame seems really bad though
    (10:34:05) Stocke: Well, I know liam is clean... for now
    (10:34:07) xxLiamxx: lol
    (10:34:18) ***************************************************************************************
    (10:34:18) Times Up! :
    (10:34:18) Game: Stocke (Gunner) was killed!
    (10:34:18) ***************************************************************************************
    (10:34:18) Current Roles: Gunner, Gunner, Juggernaut.
    (10:34:18) Current Players: Roild, Soarin, xxLiamxx.
    (10:34:18) Current Team: Juggernaut
    (10:34:18) Time: Day 8
    (10:34:18) You have 10 seconds to debate who are the bad guys! :
    (10:34:18) ***************************************************************************************
    (10:34:22) Soarin: ....
    (10:34:28) ***************************************************************************************
    (10:34:28) Current Roles: Gunner, Gunner, Juggernaut.
    (10:34:28) Current Players: Roild, Soarin, xxLiamxx.
    (10:34:28) Current Team: Juggernaut
    (10:34:28) Time: Night 9
    (10:34:28) Make your moves, you only have 35 seconds! :
    (10:34:28) ***************************************************************************************
    (10:34:29) xxLiamxx: umm
    (10:34:31) ±Game: You have chosen to kill xxLiamxx!
    (10:34:32) Roild: Idk
    (10:34:42) xxLiamxx: who wins
    (10:34:48) Battle between Sandbag and started.
    (10:34:48) Roild: I also dk
    (10:34:51) Soarin: Whoever doesn't die
    (10:34:51) xxLiamxx: ._.
    (10:34:52) Soarin: Wins
    (10:34:53) Roild: Probably Soarin
    (10:35:01) xxLiamxx: yeah
    (10:35:03) ***************************************************************************************
    (10:35:03) Times Up! :
    (10:35:03) Game: xxLiamxx (Gunner) was killed!
    (10:35:03) ±Game: A new Juggernaut was born!
    (10:35:03) ±Game: You died!
    (10:35:03) Game: Roild (Juggernaut) was killed!
    (10:35:03) ±Game: The Juggernaut (Soarin) wins!
    (10:35:03) ***************************************************************************************
    (10:35:06) Roild: Yep
    (10:35:06) Soarin: Mhm
    (10:35:09) Current Team: obv
    (10:35:10) Roild: Really bad in end game.

    [/HIDE]
     
  13. citro

    citro CRYING LIGHTNING

    Joined:
    Jan 29, 2013
    Messages:
    82
    Likes Received:
    0
    I'm edgy on this to be honest. It just seems like luck of the draw since the village don't want to help each other, so they won't share info on who the Juggernaut is until that info is worthless. The Juggernaut at the start will never (99%) win, which is a severe balance issue. I would try adding more than one Juggernaut and see how that changes things up; the process of cleaning people might help you have a clear shot at guessing Juggernauts I guess? however in its current state this theme really doesn't appeal to me or incorporate much strategy at all =/

    Decline [1]

    feel free to PM me if you make changes and I'll re-review.
     
  14. Shazan

    Shazan Obey to Kyubey

    Joined:
    Jan 21, 2013
    Messages:
    591
    Likes Received:
    14
    PO Trainer Name:
    Obey to Kyubey
    i have to congratulate with epik and ice, because me and great part of the others players that played it tonight have found it really fun, and it works well with the max of 16 players too, i have to say i wuoldn't have expected that.
    The only problem is that, as Citro too said, the first players that becames juggernauts have a low chance to win, maybe you can give him an auto-protect every 3 nights or as citro said add more jugger in greater games or you could make that juggernauts has 2 versions of himself that every night he can choose to became, one is immune(or has an evade chance i am not sure) to half of the gunners and the other form is immune or has an evade chance to the other one. I have other solutions in mind but this are the one that i found more likeable and simply to realize.
     
    Last edited: Apr 22, 2013
  15. Roy Mustang

    Roy Mustang HOMOSEXUAL UNICORN

    Joined:
    Jan 30, 2011
    Messages:
    786
    Likes Received:
    23
    PO Trainer Name:
    Roy Mustang
    First of all, I want to say that I love the concept of this theme. I've played it on the server multiple times and I enjoyed it.

    2 things I noticed though. A gunner can kill Jugger, become Jugger, and get killed in the same night. That seems a little unfair to me, maybe that should be fixed. Also, the first Juggernaut has no chance of winning. I think it might be interesting if he could pass off the Juggernaut status and become a gunner. Knowing who you gave juggernaut to could be problematic, so maybe maybe limit the number of times per game this can happen, give only a chance of passing it off, or make it result in passing it off to a random person rather than a selected target. That's just the first solution that came to mind in fixing the problem for the first jugger, you may find a different one.
     
  16. Epikhairz

    Epikhairz Delta Stream

    Joined:
    Mar 15, 2013
    Messages:
    929
    Likes Received:
    102
    PO Trainer Name:
    Epikhairz
    OK, for all those saying that Juggernaut #1 is screwed from the start (which is almost everyone) - fear not! For I have a solution!

    Do you think it would balance the game better if Juggernaut 1 (or all Juggernauts) started with an evade chance of around 30-50% and have it go down 10% every time Juggernaut killed? Also, for games of 8+ I could add a daykill for the Juggernaut.

    What do you guys say?
     
  17. Shazan

    Shazan Obey to Kyubey

    Joined:
    Jan 21, 2013
    Messages:
    591
    Likes Received:
    14
    PO Trainer Name:
    Obey to Kyubey
    I think that your decreasing dodge idea is really nice and adapt for the problem. For the daykill instead i don't think it is really necessary i played a game with 15 or 16 persons and it worked fast enough so i don't think that the daykill is really necessary, but if you think it's necessary to make the game faster then it can work.
     
  18. Epikhairz

    Epikhairz Delta Stream

    Joined:
    Mar 15, 2013
    Messages:
    929
    Likes Received:
    102
    PO Trainer Name:
    Epikhairz
    Actually, me and Rice were discussing it and we've decided that instead of a daykill, Juggernaut can start with one kill and gain 1 more kill each passing night (max 5).

    EDIT: Rice can't do evades, so instead it's selfbg with a gradual chance of failure (starts at 40% goes down 10% each passing night). This makes it so that Gunners wont copy an evading Juggernaut and have 2 Juggs

    EDIT2: Because of the increased amount of kills, we are testing it at 30 players instead of 16

    EDIT3: Night phase is now 30 seconds as opposed to 25 due to increased amount of kills for Juggernaut.
     
    Last edited: Apr 23, 2013
  19. Fuzzysqurl

    Fuzzysqurl baa baa mareep I do what I want Server Owner Developer I do what I want Server Owner Developer

    Joined:
    Sep 12, 2012
    Messages:
    2,096
    Likes Received:
    967
    You'll need to add "safeguard" to your self protect, otherwise your BG idea will NOT work and would be no better than the evade chance.
    It does, nevermind.


    Regardless, the first Juggernaut is still kind of screwed and there's still a lack of strategy involved in this theme. I'll say it now, I'm borderline decline, but I'll give you at least until the testing period is over and see what comes out of that.

    EDIT2:
    Log
    (20:19:45) ***************************************************************************************
    (20:19:45) Times Up! :
    (20:19:45) The Roles have been Decided! :
    (20:19:45) ±Game: You are a Gunner!
    (20:19:45) ±Game: As a Gunner, you are fed up with the totalitarian rule of the Juggernaut and get to /shoot [name] once per night in an attempt to kill the Juggernaut. If you manage to kill the Juggernaut, you will become the new Juggernaut! Gunners are immune to crossfire, so shoot away!
    (20:19:45) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:19:45) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Fuzzy, Goten, Haris Dragneel, Light Wizard, Luigi, PlatinumFTW, RiceKirby, Rosalina, Sebastian Hummel, Steerclearz, SuddenDeath5, Turky Bacon, Wasabi121, Zeromare, bbyJesus, packy, quetips.
    (20:19:46) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (20:19:46) Time: Night 1
    (20:19:46) Make your moves, you only have 30 seconds! :
    (20:19:46) ***************************************************************************************
    (20:19:48) Dept. Heaven: decreasing protectchance? so he is almost invuln first night?
    (20:19:49) quetips: DAmnit
    (20:19:52) RiceKirby: Yes, blame RiceKirby
    (20:19:52) bbyJesus: WTF
    (20:19:53) Sebastian Hummel: maybe
    (20:19:54) Nintendobender left the channel.
    (20:19:55) bbyJesus: What is this
    (20:19:56) Light Wizard: I jugger
    (20:19:57) quetips: Holy fuck
    (20:20:00) Haris Dragneel: Only one shot !
    (20:20:01) quetips: HOLY
    (20:20:04) MewtwoHidden000 left the channel.
    (20:20:04) PlatinumFTW: dont kill me
    (20:20:08) Roy Mustang: GOAL is to kill jugger
    (20:20:13) PlatinumFTW: do you not kill n1
    (20:20:14) Roy Mustang: last person who has jugger at the end of the game
    (20:20:15) Roy Mustang: wins
    (20:20:15) ***************************************************************************************
    (20:20:15) Times Up! :
    (20:20:15) Game: Turky Bacon (Gunner) was killed!
    (20:20:15) ±Game: A new Juggernaut was born!
    (20:20:15) Game: Luigi (Juggernaut) was killed!
    (20:20:15) ***************************************************************************************
    (20:20:15) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:20:15) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Fuzzy, Goten, Haris Dragneel, Light Wizard, PlatinumFTW, RiceKirby, Rosalina, Sebastian Hummel, Steerclearz, SuddenDeath5, Wasabi121, Zeromare, bbyJesus, packy, quetips.
    (20:20:15) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (20:20:15) Time: Day 1
    (20:20:15) You have 20 seconds to debate who are the bad guys! :
    (20:20:15) ***************************************************************************************
    (20:20:20) quetips: LOL
    (20:20:20) Roy Mustang: gunners cannot kill gunners
    (20:20:21) Light Wizard: lol
    (20:20:21) Zeromare: lol
    (20:20:23) Barao a Vapor: Imma Jugger bwahaha
    (20:20:23) quetips: allready
    (20:20:25) Barao a Vapor: Too awesome
    (20:20:30) SuddenDeath5: image gunners killing gunners
    (20:20:33) SuddenDeath5: O:
    (20:20:33) Dept. Heaven: inb4 barao trolls
    (20:20:35) Haris Dragneel: SuddenDeath5 is gunner
    (20:20:35) ***************************************************************************************
    (20:20:35) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:20:35) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Fuzzy, Goten, Haris Dragneel, Light Wizard, PlatinumFTW, RiceKirby, Rosalina, Sebastian Hummel, Steerclearz, SuddenDeath5, Wasabi121, Zeromare, bbyJesus, packy, quetips.
    (20:20:35) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (20:20:35) Time: Night 2
    (20:20:35) Make your moves, you only have 30 seconds! :
    (20:20:35) ***************************************************************************************
    (20:20:36) Zeromare: u realize now you die
    (20:20:36) Sebastian Hummel: if jugger survives it gets more kills
    (20:20:38) bbyJesus: oh i get it
    (20:20:40) Goten: o-o
    (20:20:40) Light Wizard: lol
    (20:20:41) Sebastian Hummel: not shooting atm
    (20:20:42) Haris Dragneel: Gunner is immune at xfire
    (20:20:42) bbyJesus: this should be interesting
    (20:20:43) Light Wizard: awesome
    (20:20:51) SuddenDeath5: WHAT IF WE RAND JUGGER?
    (20:20:53) bbyJesus: OMG no voting??!?
    (20:20:55) SuddenDeath5: oh wait no vote
    (20:20:55) Zeromare: you can't
    (20:20:56) Roy Mustang: There is no voting
    (20:20:57) Zeromare: no voting
    (20:20:59) Kurosaki left the channel.
    (20:21:00) RiceKirby: BRB randing SuddenDeath5
    (20:21:00) Zeromare: it's just killing
    (20:21:00) Roy Mustang: you kill
    (20:21:01) Roy Mustang: every night
    (20:21:05) ***************************************************************************************
    (20:21:05) Times Up! :
    (20:21:05) Game: PlatinumFTW (Gunner) was killed!
    (20:21:05) ±Game: The Juggernaut keeps going!
    (20:21:05) ***************************************************************************************
    (20:21:05) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:21:05) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Fuzzy, Goten, Haris Dragneel, Light Wizard, RiceKirby, Rosalina, Sebastian Hummel, Steerclearz, SuddenDeath5, Wasabi121, Zeromare, bbyJesus, packy, quetips.
    (20:21:05) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (20:21:05) Time: Day 2
    (20:21:05) You have 20 seconds to debate who are the bad guys! :
    (20:21:05) ***************************************************************************************
    (20:21:09) Light Wizard: wow
    (20:21:11) quetips: oh shit..
    (20:21:11) SuddenDeath5: oh shit
    (20:21:15) packy: oh snap
    (20:21:18) Zeromare: barao not juggers
    (20:21:19) Haris Dragneel: who's the jugger
    (20:21:20) Haris Dragneel: :c
    (20:21:21) Roy Mustang: Juggernaut wins 100% no matter what
    (20:21:22) Roy Mustang: the question is
    (20:21:24) bbyJesus: juggernaut kills too?
    (20:21:25) Roy Mustang: who is the juggernaut
    (20:21:25) RiceKirby: packy not Jugger either
    (20:21:25) ***************************************************************************************
    (20:21:25) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:21:25) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Fuzzy, Goten, Haris Dragneel, Light Wizard, RiceKirby, Rosalina, Sebastian Hummel, Steerclearz, SuddenDeath5, Wasabi121, Zeromare, bbyJesus, packy, quetips.
    (20:21:25) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (20:21:25) Time: Night 3
    (20:21:25) Make your moves, you only have 30 seconds! :
    (20:21:25) ***************************************************************************************
    (20:21:27) Roy Mustang: at the end of the game
    (20:21:27) Brian Scalabrine left the channel.
    (20:21:30) Haris Dragneel: Zeromare is the guner
    (20:21:30) Zeromare: who'll have the juggs
    (20:21:31) Goten: derp
    (20:21:32) Fuzzy: im the juggernaut
    (20:21:35) Goten: obvs
    (20:21:37) Light Wizard: lol
    (20:21:37) Sebastian Hummel: Zeromare, slay the juggernaut
    (20:21:37) RiceKirby: Fuzzy sux
    (20:21:38) Roy Mustang: To become juggernaut, you kill the juggernaut
    (20:21:38) Dept. Heaven: fuzzy for jugg 2013
    (20:21:44) ump joined the channel.
    (20:21:45) Fuzzy: ive got 2 kills tonight
    (20:21:46) PlatinumFTW left the channel.
    (20:21:50) Fuzzy: using them on the 2 people that flashed me
    (20:21:52) quetips: can you shoot a gunner and lose your only bullet?
    (20:21:55) RiceKirby: :(
    (20:21:55) Light Wizard: lol
    (20:21:55) ***************************************************************************************
    (20:21:55) Times Up! :
    (20:21:55) Game: RiceKirby (Gunner) was killed!
    (20:21:55) Game: SuddenDeath5 (Gunner) was killed!
    (20:21:55) ±Game: The Juggernaut keeps going!
    (20:21:55) ***************************************************************************************
    (20:21:55) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:21:55) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Fuzzy, Goten, Haris Dragneel, Light Wizard, Rosalina, Sebastian Hummel, Steerclearz, Wasabi121, Zeromare, bbyJesus, packy, quetips.
    (20:21:55) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (20:21:55) Time: Day 3
    (20:21:55) You have 20 seconds to debate who are the bad guys! :
    (20:21:55) ***************************************************************************************
    (20:21:56) citro: fuzzy
    (20:21:58) Barao a Vapor: Cyttorak powaaaa!
    (20:22:02) Light Wizard: failed too shot
    (20:22:02) Haris Dragneel: Gunner is immune xfire
    (20:22:03) bbyJesus: rip brothers
    (20:22:03) Fuzzy: whoops, tabfailed the one
    (20:22:04) Roy Mustang: gunners have unlimited kill attempts
    (20:22:04) Light Wizard: *shoot
    (20:22:05) quetips: can you shoot a gunner and lose your only bullet? citro?
    (20:22:09) Roy Mustang: @ quetips
    (20:22:15) quetips: oj
    (20:22:15) ***************************************************************************************
    (20:22:15) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:22:15) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Fuzzy, Goten, Haris Dragneel, Light Wizard, Rosalina, Sebastian Hummel, Steerclearz, Wasabi121, Zeromare, bbyJesus, packy, quetips.
    (20:22:15) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (20:22:15) Time: Night 4
    (20:22:15) Make your moves, you only have 30 seconds! :
    (20:22:15) ***************************************************************************************
    (20:22:16) Light Wizard: no
    (20:22:17) quetips: kk
    (20:22:19) Haris Dragneel: so if a gunner shoot gunner will not dies
    (20:22:21) citro: :]
    (20:22:26) Roy Mustang: yes @ Haris Dragneel
    (20:22:27) quetips: HALLEJUHA
    (20:22:31) Light Wizard: lol
    (20:22:34) Fuzzy: so i get 3 kills now right? who wants to die :]
    (20:22:37) quetips: im going in
    (20:22:41) Dept. Heaven: fuzzy!
    (20:22:45) Light Wizard: everyone does
    (20:22:46) ***************************************************************************************
    (20:22:46) Times Up! :
    (20:22:46) ±Game: You died!
    (20:22:46) Game: Fuzzy (Gunner) was killed!
    (20:22:46) Game: Rosalina (Gunner) was killed!
    (20:22:46) Game: Goten (Gunner) was killed!
    (20:22:46) ±Game: A new Juggernaut was born!
    (20:22:46) Game: Wasabi121 (Juggernaut) was killed!
    (20:22:46) ***************************************************************************************
    (20:22:46) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:22:46) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Haris Dragneel, Light Wizard, Sebastian Hummel, Steerclearz, Zeromare, bbyJesus, packy, quetips.
    (20:22:46) Time: Day 4
    (20:22:46) You have 20 seconds to debate who are the bad guys! :
    (20:22:46) ***************************************************************************************
    (20:22:53) packy: lmao
    (20:22:55) Light Wizard: lol
    (20:22:56) bbyJesus: i keep 4getting 2 shoot
    (20:23:00) packy: juggernaut is OP
    (20:23:01) bbyJesus: poor wasabi
    (20:23:04) quetips: lol fuzzy
    (20:23:05) ***************************************************************************************
    (20:23:05) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:23:05) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Haris Dragneel, Light Wizard, Sebastian Hummel, Steerclearz, Zeromare, bbyJesus, packy, quetips.
    (20:23:05) Time: Night 5
    (20:23:05) Make your moves, you only have 30 seconds! :
    (20:23:05) ***************************************************************************************
    (20:23:06) Chinchou left the channel.
    (20:23:06) Zeromare: it's /shoot NOT /kill
    (20:23:13) Zeromare: for the gunners lol
    (20:23:17) Dept. Heaven: juggaman gets /kill tho
    (20:23:19) Light Wizard: ./Power Shoot
    (20:23:21) Haris Dragneel: ./shoot
    (20:23:21) Dept. Heaven: yeah
    (20:23:26) quetips: lol power shoot
    (20:23:32) Haris Dragneel: ./Doomblast
    (20:23:33) Haris Dragneel: :v
    (20:23:35) ***************************************************************************************
    (20:23:35) Times Up! :
    (20:23:35) Game: Steerclearz (Gunner) was killed!
    (20:23:35) ±Game: The Juggernaut keeps going!
    (20:23:35) ***************************************************************************************
    (20:23:35) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:23:35) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Haris Dragneel, Light Wizard, Sebastian Hummel, Zeromare, bbyJesus, packy, quetips.
    (20:23:35) Time: Day 5
    (20:23:35) You have 20 seconds to debate who are the bad guys! :
    (20:23:35) ***************************************************************************************
    (20:23:38) Barao a Vapor: Cyttorak powaaaa!
    (20:23:39) Roy Mustang: Zeromare, I think this theme needs a better description
    (20:23:41) Light Wizard: failed to kill lol
    (20:23:45) quetips: ./doomdesire
    (20:23:47) Zeromare: talk to epik
    (20:23:51) Barao a Vapor: ./dualheavymachinegun
    (20:23:51) bbyJesus: i think i like this theme but im not sure
    (20:23:53) Steve Johns joined the channel.
    (20:23:55) ***************************************************************************************
    (20:23:55) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:23:55) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Haris Dragneel, Light Wizard, Sebastian Hummel, Zeromare, bbyJesus, packy, quetips.
    (20:23:55) Time: Night 6
    (20:23:55) Make your moves, you only have 30 seconds! :
    (20:23:55) ***************************************************************************************
    (20:23:57) Light Wizard: ./Flash Cannon
    (20:24:09) Haris Dragneel: ./Fusion Bolt
    (20:24:11) Dept. Heaven: it's still too slow for this amount of players
    (20:24:13) Sebastian Hummel: ^
    (20:24:16) Sebastian Hummel: I'm not even killing
    (20:24:17) quetips: i guess
    (20:24:17) Light Wizard: I keep typing kill lol
    (20:24:19) Samphire left the channel.
    (20:24:19) Sebastian Hummel: and takes forever
    (20:24:25) ***************************************************************************************
    (20:24:25) Times Up! :
    (20:24:25) Game: Zeromare (Gunner) was killed!
    (20:24:25) Game: Sebastian Hummel (Gunner) was killed!
    (20:24:25) ±Game: A new Juggernaut was born!
    (20:24:25) Game: quetips (Juggernaut) was killed!
    (20:24:25) ***************************************************************************************
    (20:24:25) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:24:25) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Haris Dragneel, Light Wizard, bbyJesus, packy.
    (20:24:25) Time: Day 6
    (20:24:25) You have 20 seconds to debate who are the bad guys! :
    (20:24:25) ***************************************************************************************
    (20:24:30) Roy Mustang: juggernaut should probably keep the kills
    (20:24:31) Light Wizard: lol
    (20:24:32) Roy Mustang: even if it switches players
    (20:24:33) bbyJesus: fuckkk
    (20:24:35) Roy Mustang: imo
    (20:24:39) Barao a Vapor: ./DoomDesire
    (20:24:45) ***************************************************************************************
    (20:24:45) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:24:45) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Haris Dragneel, Light Wizard, bbyJesus, packy.
    (20:24:45) Time: Night 7
    (20:24:45) Make your moves, you only have 30 seconds! :
    (20:24:46) ***************************************************************************************
    (20:24:48) Haris Dragneel: ./Compound
    (20:24:55) bbyJesus: ./remix
    (20:25:02) Barao a Vapor: ./dubstep
    (20:25:05) Light Wizard: yay
    (20:25:11) Light Wizard: ./Zombies
    (20:25:15) ***************************************************************************************
    (20:25:15) Times Up! :
    (20:25:15) Game: Dept. Heaven (Gunner) was killed!
    (20:25:15) ±Game: The Juggernaut keeps going!
    (20:25:15) ***************************************************************************************
    (20:25:15) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:25:15) Current Players: AirLow70, Barao a Vapor, Haris Dragneel, Light Wizard, bbyJesus, packy.
    (20:25:15) Time: Day 7
    (20:25:16) You have 20 seconds to debate who are the bad guys! :
    (20:25:16) ***************************************************************************************
    (20:25:17) Jamaree left the channel.
    (20:25:18) Haris Dragneel: Plants Vs Zombiee
    (20:25:19) Barao a Vapor: 30s is too longer imo
    (20:25:26) Lag Seeing left the channel.
    (20:25:27) Light Wizard: Jugger keeps going
    (20:25:28) bbyJesus: we should b able to vote
    (20:25:31) Haris Dragneel: so this is Gunner vs Jugger
    (20:25:35) Light Wizard: yup
    (20:25:35) ***************************************************************************************
    (20:25:35) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:25:35) Current Players: AirLow70, Barao a Vapor, Haris Dragneel, Light Wizard, bbyJesus, packy.
    (20:25:35) Time: Night 8
    (20:25:35) Make your moves, you only have 30 seconds! :
    (20:25:35) ***************************************************************************************
    (20:25:37) bbyJesus: but a 15 sec timer
    (20:25:48) packy: and who decides who is next jugger
    (20:25:55) Barao a Vapor: If we vote, who would be the next Jugg?
    (20:25:57) bbyJesus: it ends
    (20:25:59) Light Wizard: the person who kills him
    (20:26:01) Roy Mustang: NO voting because
    (20:26:04) Roy Mustang: if jugger is voted out
    (20:26:05) Huck Finn joined the channel.
    (20:26:05) ***************************************************************************************
    (20:26:05) Times Up! :
    (20:26:05) Game: bbyJesus (Gunner) was killed!
    (20:26:05) Game: Light Wizard (Gunner) was killed!
    (20:26:05) ±Game: The Juggernaut keeps going!
    (20:26:05) ***************************************************************************************
    (20:26:05) Current Roles: Gunner, Gunner, Gunner, Juggernaut.
    (20:26:05) Current Players: AirLow70, Barao a Vapor, Haris Dragneel, packy.
    (20:26:05) Time: Day 8
    (20:26:05) You have 20 seconds to debate who are the bad guys! :
    (20:26:05) ***************************************************************************************
    (20:26:07) Roy Mustang: it would ruin the whole point
    (20:26:09) Roy Mustang: of the theme
    (20:26:12) Roy Mustang: lol
    (20:26:15) packy: so jugger won
    (20:26:16) packy: lawl
    (20:26:18) Roy Mustang: the goal is to be the last juggernaut standing
    (20:26:19) Haris Dragneel: Juggernaut was too pro
    (20:26:20) packy: cuz of 3 kills now
    (20:26:23) Haris Dragneel: 3 Person kills now
    (20:26:25) ***************************************************************************************
    (20:26:25) Current Roles: Gunner, Gunner, Gunner, Juggernaut.
    (20:26:25) Current Players: AirLow70, Barao a Vapor, Haris Dragneel, packy.
    (20:26:25) Time: Night 9
    (20:26:25) Make your moves, you only have 30 seconds! :
    (20:26:25) ***************************************************************************************
    (20:26:26) Roy Mustang: packy jugger ALWAYS wins
    (20:26:28) Roy Mustang: lol
    (20:26:29) Barao a Vapor: packy gg
    (20:26:30) Zeromare: and juggernaut wins period
    (20:26:31) packy: why even try
    (20:26:36) Roy Mustang: your goal
    (20:26:38) Roy Mustang: is to kill jugger
    (20:26:40) Roy Mustang: and become him
    (20:26:41) packy: i was never juggy lmao
    (20:26:45) Haris Dragneel: gg for all gunner
    (20:26:46) Haris Dragneel: c:
    (20:26:54) Haris Dragneel: and for the jugger too
    (20:26:55) ***************************************************************************************
    (20:26:55) Times Up! :
    (20:26:55) Game: AirLow70 (Gunner) was killed!
    (20:26:55) Game: Barao a Vapor (Gunner) was killed!
    (20:26:55) Game: packy (Gunner) was killed!
    (20:26:55) ±Game: The Juggernaut keeps going!
    (20:26:55) ±Game: The Juggernaut (Haris Dragneel) wins!
    (20:26:55) ***************************************************************************************


    No idea why the Gunners use /shoot and not /kill. Kill is much easier to type and remember
     
    Last edited: Apr 23, 2013
  20. IceKirby

    IceKirby A.K.A. RiceKirby

    Joined:
    Apr 26, 2011
    Messages:
    2,176
    Likes Received:
    635
    PO Trainer Name:
    RiceKirby
    Log:
    (22:19:02) ***************************************************************************************
    (22:19:02) ±Game: Sebastian Hummel started a game with theme Juggernaut!
    (22:19:02) ±Game: Type /Join to enter the game!
    (22:19:02) ***************************************************************************************

    A Juggernaut-themed mafia game is starting, RiceKirby!
    (22:19:02) ±Game: For years, the Juggernaut has ruled the village with an iron fist, but as the population dwindled, a violent war between the Juggernaut and the Gunners began. The one to kill the Juggernaut becomes his successor, but just remember: absolute power corrupts absolutely. Be the last one standing! If you have any suggestions, PM Epikhairz0603.
    (22:19:03) ±Game: Sebastian Hummel joined the game!
    (22:19:05) ±Game: Light Wizard joined the game!
    (22:19:05) Sebastian Hummel: FINALLY
    (22:19:06) Espy: lol
    (22:19:06) ±Game: AirLow70 joined the game!
    (22:19:07) ±Game: Turky Bacon joined the game!
    (22:19:07) ±Game: quetips joined the game!
    (22:19:07) ±Game: Dept. Heaven joined the game!
    (22:19:07) ±Game: packy joined the game!
    (22:19:08) ±Game: Luigi joined the game!
    (22:19:08) ±Game: SuddenDeath5 joined the game!
    (22:19:08) Light Wizard: Ninja'd again
    (22:19:10) ±Game: Wasabi121 joined the game!
    (22:19:10) Light Wizard: :c
    (22:19:11) ±Game: PlatinumFTW joined the game!
    (22:19:12) ±Game: Barao a Vapor joined the game!
    (22:19:12) ±Game: RiceKirby joined the game!
    (22:19:12) kodoku joined the channel.
    (22:19:12) Turky Bacon: Woo-hoo! Juggernaut!
    (22:19:13) ±Game: Goten joined the game!
    (22:19:14) ±Game: Rosalina joined the game!
    (22:19:14) Dept. Heaven: is this less stally now?
    (22:19:14) ±Game: bbyJesus joined the game!
    (22:19:16) kodoku left the channel.
    (22:19:18) Haris Dragneel: laugh for dat miss aim
    (22:19:18) Sebastian Hummel: We've been trying to test the new version for games now
    (22:19:19) Fuzzy: brb declining this theme
    (22:19:20) Barao a Vapor: I was a God too
    (22:19:20) ±Game: Haris Dragneel joined the game!
    (22:19:21) bbyJesus: whuttttt is juggarnaut?
    (22:19:22) Haris Dragneel: lol
    (22:19:24) Sebastian Hummel: It's been updated
    (22:19:24) RiceKirby: Poor Epik is not on for that :x
    (22:19:25) PlatinumFTW: i hope im juggernaut first
    (22:19:25) Rosalina: I have never tried marvel theme.
    (22:19:25) ±Game: Fuzzy joined the game!
    (22:19:26) Barao a Vapor: But Hummel :(
    (22:19:28) Light Wizard: Super Ninja Mode!
    (22:19:28) Haris Dragneel: Juggernaut theme is too op
    (22:19:30) SuddenDeath5: WHAT NEW VERSION

    (22:19:31) ±Game: Hurry up, you only have 30 seconds more to join!

    (22:19:34) Sebastian Hummel: jugger gets decreasing evadechance
    (22:19:34) Fuzzy: brb still declining
    (22:19:39) ±Game: Steerclearz joined the game!
    (22:19:39) Sebastian Hummel: and multiple kills
    (22:19:42) Steerclearz: :V
    (22:19:43) Haris Dragneel: Juggernaut cant be get randed
    (22:19:43) Sebastian Hummel: or decreasing protectchance
    (22:19:44) Haris Dragneel: :c
    (22:19:47) ±Game: Zeromare joined the game!
    (22:19:48) *** Rosalina flips back her hair again.
    (22:19:48) Steerclearz: BG me N1
    (22:19:49) Steerclearz: pls
    (22:19:52) Fuzzy: is the protect slashed with safeguard?
    (22:19:56) Sebastian Hummel: it should be
    (22:19:57) PlatinumFTW: i will be the first to win as original juggernaut
    (22:19:59) quetips: juggernaut here
    (22:20:00) Sebastian Hummel: if not, I blame RiceKirby
    (22:20:01) ***************************************************************************************
    (22:20:01) Times Up! :
    (22:20:01) The Roles have been Decided! :
    (22:20:01) ±Game: You are a Gunner!
    (22:20:01) ±Game: As a Gunner, you are fed up with the totalitarian rule of the Juggernaut and get to /shoot [name] once per night in an attempt to kill the Juggernaut. If you manage to kill the Juggernaut, you will become the new Juggernaut! Gunners are immune to crossfire, so shoot away!
    (22:20:01) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (22:20:01) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Fuzzy, Goten, Haris Dragneel, Light Wizard, Luigi, PlatinumFTW, RiceKirby, Rosalina, Sebastian Hummel, Steerclearz, SuddenDeath5, Turky Bacon, Wasabi121, Zeromare, bbyJesus, packy, quetips.
    (22:20:01) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (22:20:01) Time: Night 1
    (22:20:01) Make your moves, you only have 30 seconds! :
    (22:20:01) ***************************************************************************************
    (22:20:04) Dept. Heaven: decreasing protectchance? so he is almost invuln first night?
    (22:20:05) quetips: DAmnit
    (22:20:08) RiceKirby: Yes, blame RiceKirby
    (22:20:08) bbyJesus: WTF
    (22:20:09) Sebastian Hummel: maybe
    (22:20:10) Nintendobender left the channel.
    (22:20:10) bbyJesus: What is this
    (22:20:11) ±CommandBot: The command kill doesn't exist
    (22:20:12) Light Wizard: I jugger
    (22:20:13) quetips: Holy fuck
    (22:20:15) ±Game: You have chosen to shoot Turky Bacon!
    (22:20:16) Haris Dragneel: Only one shot !
    (22:20:16) quetips: HOLY
    (22:20:20) MewtwoHidden000 left the channel.
    (22:20:20) PlatinumFTW: dont kill me
    (22:20:23) Roy Mustang: GOAL is to kill jugger
    (22:20:28) PlatinumFTW: do you not kill n1
    (22:20:30) Roy Mustang: last person who has jugger at the end of the game
    (22:20:30) Roy Mustang: wins
    (22:20:31) ***************************************************************************************
    (22:20:31) Times Up! :
    (22:20:31) Game: Turky Bacon (Gunner) was killed!
    (22:20:31) ±Game: A new Juggernaut was born!
    (22:20:31) Game: Luigi (Juggernaut) was killed!
    (22:20:31) ***************************************************************************************
    (22:20:31) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (22:20:31) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Fuzzy, Goten, Haris Dragneel, Light Wizard, PlatinumFTW, RiceKirby, Rosalina, Sebastian Hummel, Steerclearz, SuddenDeath5, Wasabi121, Zeromare, bbyJesus, packy, quetips.
    (22:20:31) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (22:20:31) Time: Day 1
    (22:20:31) You have 20 seconds to debate who are the bad guys! :
    (22:20:31) ***************************************************************************************
    (22:20:35) quetips: LOL
    (22:20:36) Roy Mustang: gunners cannot kill gunners
    (22:20:37) Light Wizard: lol
    (22:20:37) Zeromare: lol
    (22:20:38) Barao a Vapor: Imma Jugger bwahaha
    (22:20:39) quetips: allready
    (22:20:41) Barao a Vapor: Too awesome
    (22:20:46) SuddenDeath5: image gunners killing gunners
    (22:20:48) SuddenDeath5: O:
    (22:20:49) Dept. Heaven: inb4 barao trolls
    (22:20:50) Haris Dragneel: SuddenDeath5 is gunner
    (22:20:51) ***************************************************************************************
    (22:20:51) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (22:20:51) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Fuzzy, Goten, Haris Dragneel, Light Wizard, PlatinumFTW, RiceKirby, Rosalina, Sebastian Hummel, Steerclearz, SuddenDeath5, Wasabi121, Zeromare, bbyJesus, packy, quetips.
    (22:20:51) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (22:20:51) Time: Night 2
    (22:20:51) Make your moves, you only have 30 seconds! :
    (22:20:51) ***************************************************************************************
    (22:20:51) Zeromare: u realize now you die
    (22:20:51) Sebastian Hummel: if jugger survives it gets more kills
    (22:20:54) bbyJesus: oh i get it
    (22:20:56) Goten: o-o
    (22:20:56) Light Wizard: lol
    (22:20:57) Sebastian Hummel: not shooting atm
    (22:20:58) Haris Dragneel: Gunner is immune at xfire
    (22:20:58) bbyJesus: this should be interesting
    (22:20:58) Light Wizard: awesome
    (22:21:02) ±Game: You have chosen to shoot packy!
    (22:21:07) SuddenDeath5: WHAT IF WE RAND JUGGER?
    (22:21:08) bbyJesus: OMG no voting??!?
    (22:21:10) SuddenDeath5: oh wait no vote
    (22:21:11) Zeromare: you can't
    (22:21:12) Roy Mustang: There is no voting
    (22:21:12) Zeromare: no voting
    (22:21:14) Kurosaki left the channel.
    (22:21:16) RiceKirby: BRB randing SuddenDeath5
    (22:21:16) Zeromare: it's just killing
    (22:21:16) Roy Mustang: you kill
    (22:21:17) Roy Mustang: every night
    (22:21:21) ***************************************************************************************
    (22:21:21) Times Up! :
    (22:21:21) Game: PlatinumFTW (Gunner) was killed!
    (22:21:21) ±Game: Your target (packy) evaded your shoot!
    (22:21:21) ±Game: The Juggernaut keeps going!
    (22:21:21) ***************************************************************************************
    (22:21:21) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (22:21:21) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Fuzzy, Goten, Haris Dragneel, Light Wizard, RiceKirby, Rosalina, Sebastian Hummel, Steerclearz, SuddenDeath5, Wasabi121, Zeromare, bbyJesus, packy, quetips.
    (22:21:21) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (22:21:21) Time: Day 2
    (22:21:21) You have 20 seconds to debate who are the bad guys! :
    (22:21:21) ***************************************************************************************
    (22:21:25) Light Wizard: wow
    (22:21:26) quetips: oh shit..
    (22:21:27) SuddenDeath5: oh shit
    (22:21:30) packy: oh snap
    (22:21:33) Zeromare: barao not juggers
    (22:21:35) Haris Dragneel: who's the jugger
    (22:21:35) Haris Dragneel: :c
    (22:21:36) Roy Mustang: Juggernaut wins 100% no matter what
    (22:21:38) Roy Mustang: the question is
    (22:21:40) bbyJesus: juggernaut kills too?
    (22:21:40) Roy Mustang: who is the juggernaut
    (22:21:41) RiceKirby: packy not Jugger either
    (22:21:41) ***************************************************************************************
    (22:21:41) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (22:21:41) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Fuzzy, Goten, Haris Dragneel, Light Wizard, RiceKirby, Rosalina, Sebastian Hummel, Steerclearz, SuddenDeath5, Wasabi121, Zeromare, bbyJesus, packy, quetips.
    (22:21:41) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (22:21:41) Time: Night 3
    (22:21:41) Make your moves, you only have 30 seconds! :
    (22:21:41) ***************************************************************************************
    (22:21:42) Roy Mustang: at the end of the game
    (22:21:43) Brian Scalabrine left the channel.
    (22:21:45) Haris Dragneel: Zeromare is the guner
    (22:21:46) Zeromare: who'll have the juggs
    (22:21:47) Goten: derp
    (22:21:47) Fuzzy: im the juggernaut
    (22:21:48) ±Game: You have chosen to shoot Haris Dragneel!
    (22:21:51) Goten: obvs
    (22:21:52) Light Wizard: lol
    (22:21:53) Sebastian Hummel: Zeromare, slay the juggernaut
    (22:21:53) RiceKirby: Fuzzy sux
    (22:21:53) Roy Mustang: To become juggernaut, you kill the juggernaut
    (22:21:54) Dept. Heaven: fuzzy for jugg 2013
    (22:22:00) ump joined the channel.
    (22:22:00) Fuzzy: ive got 2 kills tonight
    (22:22:02) PlatinumFTW left the channel.
    (22:22:06) Fuzzy: using them on the 2 people that flashed me
    (22:22:08) quetips: can you shoot a gunner and lose your only bullet?
    (22:22:10) RiceKirby: :(
    (22:22:11) Light Wizard: lol
    (22:22:11) ***************************************************************************************
    (22:22:11) Times Up! :
    (22:22:11) ±Game: You died!
    (22:22:11) Game: RiceKirby (Gunner) was killed!
    (22:22:11) Game: SuddenDeath5 (Gunner) was killed!
    (22:22:11) ±Game: The Juggernaut keeps going!
    (22:22:12) ***************************************************************************************
    (22:22:12) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (22:22:12) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Fuzzy, Goten, Haris Dragneel, Light Wizard, Rosalina, Sebastian Hummel, Steerclearz, Wasabi121, Zeromare, bbyJesus, packy, quetips.
    (22:22:12) Time: Day 3
    (22:22:12) You have 20 seconds to debate who are the bad guys! :
    (22:22:12) ***************************************************************************************
    (22:22:12) citro: fuzzy
    (22:22:13) Barao a Vapor: Cyttorak powaaaa!
    (22:22:17) Light Wizard: failed too shot
    (22:22:18) Haris Dragneel: Gunner is immune xfire
    (22:22:18) bbyJesus: rip brothers
    (22:22:19) Fuzzy: whoops, tabfailed the one
    (22:22:19) Roy Mustang: gunners have unlimited kill attempts
    (22:22:19) Light Wizard: *shoot
    (22:22:21) quetips: can you shoot a gunner and lose your only bullet? citro?
    (22:22:24) Roy Mustang: @ quetips
    (22:22:31) quetips: oj
    (22:22:31) ***************************************************************************************
    (22:22:31) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (22:22:31) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Fuzzy, Goten, Haris Dragneel, Light Wizard, Rosalina, Sebastian Hummel, Steerclearz, Wasabi121, Zeromare, bbyJesus, packy, quetips.
    (22:22:31) Time: Night 4
    (22:22:31) Make your moves, you only have 30 seconds! :
    (22:22:31) ***************************************************************************************
    (22:22:31) Light Wizard: no
    (22:22:33) quetips: kk
    (22:22:35) Haris Dragneel: so if a gunner shoot gunner will not dies
    (22:22:36) citro: :]
    (22:22:41) Roy Mustang: yes @ Haris Dragneel
    (22:22:43) quetips: HALLEJUHA
    (22:22:46) Light Wizard: lol
    (22:22:49) Fuzzy: so i get 3 kills now right? who wants to die :]
    (22:22:53) quetips: im going in
    (22:22:57) Dept. Heaven: fuzzy!
    (22:23:01) Light Wizard: everyone does
    (22:23:01) ***************************************************************************************
    (22:23:01) Times Up! :
    (22:23:01) Game: Fuzzy (Gunner) was killed!
    (22:23:01) Game: Rosalina (Gunner) was killed!
    (22:23:01) Game: Goten (Gunner) was killed!
    (22:23:01) ±Game: A new Juggernaut was born!
    (22:23:01) Game: Wasabi121 (Juggernaut) was killed!
    (22:23:01) ***************************************************************************************
    (22:23:01) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (22:23:01) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Haris Dragneel, Light Wizard, Sebastian Hummel, Steerclearz, Zeromare, bbyJesus, packy, quetips.
    (22:23:01) Time: Day 4
    (22:23:01) You have 20 seconds to debate who are the bad guys! :
    (22:23:01) ***************************************************************************************
    (22:23:09) packy: lmao
    (22:23:11) Light Wizard: lol
    (22:23:11) bbyJesus: i keep 4getting 2 shoot
    (22:23:15) packy: juggernaut is OP
    (22:23:17) bbyJesus: poor wasabi
    (22:23:19) quetips: lol fuzzy
    (22:23:21) ***************************************************************************************
    (22:23:21) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (22:23:21) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Haris Dragneel, Light Wizard, Sebastian Hummel, Steerclearz, Zeromare, bbyJesus, packy, quetips.
    (22:23:21) Time: Night 5
    (22:23:21) Make your moves, you only have 30 seconds! :
    (22:23:21) ***************************************************************************************
    (22:23:21) Chinchou left the channel.
    (22:23:22) Zeromare: it's /shoot NOT /kill
    (22:23:29) Zeromare: for the gunners lol
    (22:23:33) Dept. Heaven: juggaman gets /kill tho
    (22:23:35) Light Wizard: ./Power Shoot
    (22:23:37) Haris Dragneel: ./shoot
    (22:23:37) Dept. Heaven: yeah
    (22:23:41) quetips: lol power shoot
    (22:23:47) Haris Dragneel: ./Doomblast
    (22:23:49) Haris Dragneel: :v
    (22:23:51) ***************************************************************************************
    (22:23:51) Times Up! :
    (22:23:51) Game: Steerclearz (Gunner) was killed!
    (22:23:51) ±Game: The Juggernaut keeps going!
    (22:23:51) ***************************************************************************************
    (22:23:51) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (22:23:51) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Haris Dragneel, Light Wizard, Sebastian Hummel, Zeromare, bbyJesus, packy, quetips.
    (22:23:51) Time: Day 5
    (22:23:51) You have 20 seconds to debate who are the bad guys! :
    (22:23:51) ***************************************************************************************
    (22:23:54) Barao a Vapor: Cyttorak powaaaa!
    (22:23:55) Roy Mustang: Zeromare, I think this theme needs a better description
    (22:23:56) Light Wizard: failed to kill lol
    (22:24:00) quetips: ./doomdesire
    (22:24:03) Zeromare: talk to epik
    (22:24:07) Barao a Vapor: ./dualheavymachinegun
    (22:24:07) bbyJesus: i think i like this theme but im not sure
    (22:24:09) Steve Johns joined the channel.
    (22:24:11) ***************************************************************************************
    (22:24:11) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (22:24:11) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Haris Dragneel, Light Wizard, Sebastian Hummel, Zeromare, bbyJesus, packy, quetips.
    (22:24:11) Time: Night 6
    (22:24:11) Make your moves, you only have 30 seconds! :
    (22:24:11) ***************************************************************************************
    (22:24:13) Light Wizard: ./Flash Cannon
    (22:24:25) Haris Dragneel: ./Fusion Bolt
    (22:24:27) Dept. Heaven: it's still too slow for this amount of players
    (22:24:29) Sebastian Hummel: ^
    (22:24:32) Sebastian Hummel: I'm not even killing
    (22:24:33) quetips: i guess
    (22:24:33) Light Wizard: I keep typing kill lol
    (22:24:35) Samphire left the channel.
    (22:24:35) Sebastian Hummel: and takes forever
    (22:24:41) ***************************************************************************************
    (22:24:41) Times Up! :
    (22:24:41) Game: Zeromare (Gunner) was killed!
    (22:24:41) Game: Sebastian Hummel (Gunner) was killed!
    (22:24:41) ±Game: A new Juggernaut was born!
    (22:24:41) Game: quetips (Juggernaut) was killed!
    (22:24:41) ***************************************************************************************
    (22:24:41) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (22:24:41) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Haris Dragneel, Light Wizard, bbyJesus, packy.
    (22:24:41) Time: Day 6
    (22:24:41) You have 20 seconds to debate who are the bad guys! :
    (22:24:41) ***************************************************************************************
    (22:24:45) Roy Mustang: juggernaut should probably keep the kills
    (22:24:46) Light Wizard: lol
    (22:24:48) Roy Mustang: even if it switches players
    (22:24:49) bbyJesus: fuckkk
    (22:24:51) Roy Mustang: imo
    (22:24:54) Barao a Vapor: ./DoomDesire
    (22:25:01) ***************************************************************************************
    (22:25:01) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (22:25:01) Current Players: AirLow70, Barao a Vapor, Dept. Heaven, Haris Dragneel, Light Wizard, bbyJesus, packy.
    (22:25:01) Time: Night 7
    (22:25:01) Make your moves, you only have 30 seconds! :
    (22:25:01) ***************************************************************************************
    (22:25:04) Haris Dragneel: ./Compound
    (22:25:11) bbyJesus: ./remix
    (22:25:18) Barao a Vapor: ./dubstep
    (22:25:20) Light Wizard: yay
    (22:25:27) Light Wizard: ./Zombies
    (22:25:31) ***************************************************************************************
    (22:25:31) Times Up! :
    (22:25:31) Game: Dept. Heaven (Gunner) was killed!
    (22:25:31) ±Game: The Juggernaut keeps going!
    (22:25:31) ***************************************************************************************
    (22:25:31) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (22:25:31) Current Players: AirLow70, Barao a Vapor, Haris Dragneel, Light Wizard, bbyJesus, packy.
    (22:25:31) Time: Day 7
    (22:25:31) You have 20 seconds to debate who are the bad guys! :
    (22:25:31) ***************************************************************************************
    (22:25:33) Jamaree left the channel.
    (22:25:34) Haris Dragneel: Plants Vs Zombiee
    (22:25:35) Barao a Vapor: 30s is too longer imo
    (22:25:41) Lag Seeing left the channel.
    (22:25:42) Light Wizard: Jugger keeps going
    (22:25:43) bbyJesus: we should b able to vote
    (22:25:46) Haris Dragneel: so this is Gunner vs Jugger
    (22:25:51) Light Wizard: yup
    (22:25:51) ***************************************************************************************
    (22:25:51) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (22:25:51) Current Players: AirLow70, Barao a Vapor, Haris Dragneel, Light Wizard, bbyJesus, packy.
    (22:25:51) Time: Night 8
    (22:25:51) Make your moves, you only have 30 seconds! :
    (22:25:51) ***************************************************************************************
    (22:25:53) bbyJesus: but a 15 sec timer
    (22:26:04) packy: and who decides who is next jugger
    (22:26:10) Barao a Vapor: If we vote, who would be the next Jugg?
    (22:26:13) bbyJesus: it ends
    (22:26:15) Light Wizard: the person who kills him
    (22:26:17) Roy Mustang: NO voting because
    (22:26:19) Roy Mustang: if jugger is voted out
    (22:26:20) Huck Finn joined the channel.
    (22:26:21) ***************************************************************************************
    (22:26:21) Times Up! :
    (22:26:21) Game: bbyJesus (Gunner) was killed!
    (22:26:21) Game: Light Wizard (Gunner) was killed!
    (22:26:21) ±Game: The Juggernaut keeps going!
    (22:26:21) ***************************************************************************************
    (22:26:21) Current Roles: Gunner, Gunner, Gunner, Juggernaut.
    (22:26:21) Current Players: AirLow70, Barao a Vapor, Haris Dragneel, packy.
    (22:26:21) Time: Day 8
    (22:26:21) You have 20 seconds to debate who are the bad guys! :
    (22:26:21) ***************************************************************************************
    (22:26:23) Roy Mustang: it would ruin the whole point
    (22:26:25) Roy Mustang: of the theme
    (22:26:27) Roy Mustang: lol
    (22:26:31) packy: so jugger won
    (22:26:32) packy: lawl
    (22:26:33) Roy Mustang: the goal is to be the last juggernaut standing
    (22:26:34) Haris Dragneel: Juggernaut was too pro
    (22:26:35) packy: cuz of 3 kills now
    (22:26:39) Haris Dragneel: 3 Person kills now
    (22:26:41) ***************************************************************************************
    (22:26:41) Current Roles: Gunner, Gunner, Gunner, Juggernaut.
    (22:26:41) Current Players: AirLow70, Barao a Vapor, Haris Dragneel, packy.
    (22:26:41) Time: Night 9
    (22:26:41) Make your moves, you only have 30 seconds! :
    (22:26:41) ***************************************************************************************
    (22:26:42) Roy Mustang: packy jugger ALWAYS wins
    (22:26:43) Roy Mustang: lol
    (22:26:44) Barao a Vapor: packy gg
    (22:26:46) Zeromare: and juggernaut wins period
    (22:26:46) packy: why even try
    (22:26:52) Roy Mustang: your goal
    (22:26:54) Roy Mustang: is to kill jugger
    (22:26:55) Roy Mustang: and become him
    (22:26:57) packy: i was never juggy lmao
    (22:27:01) Haris Dragneel: gg for all gunner
    (22:27:02) Haris Dragneel: c:
    (22:27:09) Haris Dragneel: and for the jugger too
    (22:27:11) ***************************************************************************************
    (22:27:11) Times Up! :
    (22:27:11) Game: AirLow70 (Gunner) was killed!
    (22:27:11) Game: Barao a Vapor (Gunner) was killed!
    (22:27:11) Game: packy (Gunner) was killed!
    (22:27:11) ±Game: The Juggernaut keeps going!
    (22:27:11) ±Game: The Juggernaut (Haris Dragneel) wins!
    (22:27:11) ***************************************************************************************
    (22:27:12) quetips: i knew it was airlow

    (22:27:13) ***************************************************************************************
    (22:27:13) ±Game: Rosalina started a game with theme Marvel!
    (22:27:13) ±Game: Type /Join to enter the game!
    (22:27:13) ***************************************************************************************

    A Marvel-themed mafia game is starting, RiceKirby!
    (22:27:13) ±Game: http://wiki.pokemon-online.eu/wiki/Theme:Marvel
    (22:27:14) Dept. Heaven: actually your goal is to stall until there are ~6 players left.
    (22:27:15) ±Game: Light Wizard joined the game!
    (22:27:15) Sebastian Hummel: needs less day time, since the 30 seconds at night is so juggernaut can use all kills and protect
    (22:27:15) ±Game: Goten joined the game!
    (22:27:15) ±Game: quetips joined the game!
    (22:27:15) ±Game: bbyJesus joined the game!
    (22:27:16) ±Game: AirLow70 joined the game!
    (22:27:16) ±Game: Cragglez joined the game!
    (22:27:16) quetips: oh?
    (22:27:17) Light Wizard: yay
    (22:27:17) ±Game: Rosalina joined the game!
    (22:27:18) ±Game: Haris Dragneel joined the game!
    (22:27:19) ±Game: Sebastian Hummel joined the game!
    (22:27:20) quetips: NEVERMIND
    (22:27:20) ±Game: Steve Johns joined the game!
    (22:27:20) ±Game: Scizorfan1991 joined the game!
    (22:27:21) Wasabi121: the point of that theme is to become the juggernaut and win winning as gunner is not an option
    (22:27:21) ±Game: Barao a Vapor joined the game!
    (22:27:21) ±Game: Turky Bacon joined the game!
    (22:27:22) Haris Dragneel: lol
    (22:27:23) ±Game: packy joined the game!
    (22:27:23) ±Game: Huck Finn joined the game!
    (22:27:24) ±Game: Dept. Heaven joined the game!
    (22:27:26) quetips: oh yes
    (22:27:28) ±Game: Wasabi121 joined the game!
    (22:27:29) ±Game: Luigi joined the game!
    (22:27:31) Sebastian Hummel: yeah, the theme glorifies stall until the end
    (22:27:32) SuddenDeath5: OMG LETS DO ZELDA I TRIED TO START IT LIKE 10 TIMES
    (22:27:33) ±Game: SuddenDeath5 joined the game!
    (22:27:34) quetips: haris did have a grudge...
    (22:27:35) Turky Bacon: Marvel kinda sucks... Its not even the good Marvel characters
    (22:27:36) ±Game: Shadow Zero joined the game!
    (22:27:36) ±Game: Steerclearz joined the game!
    (22:27:37) Zeromare: and not a possibility
    (22:27:38) RiceKirby: Not anymore, Sebastian Hummel
    (22:27:39) ±Game: Cereal joined the game!

    (22:27:43) ±Game: Hurry up, you only have 30 seconds more to join!

    (22:27:46) Light Wizard: Marvel is still fun
    (22:27:47) ±Game: Cereal unjoined the game!
    (22:27:50) RiceKirby: If you don't get the Jugger fast, he will wipe all Gunners
    (22:27:51) quetips: startsniping because of sudden death...
    (22:27:54) Light Wizard: lol
    (22:27:55) packy: so u could just protect urself till u get like 10 kills
    (22:27:59) packy: and wipe them in 2 turns
    (22:28:02) Rosalina: Iv'e nevr played this before
    (22:28:03) Light Wizard: epic
    (22:28:04) Wasabi121: i was the pro who sniped the jugger night one
    (22:28:04) RiceKirby: Max of 5 kills :x
    (22:28:05) SuddenDeath5: wat
    (22:28:08) Light Wizard: lol
    (22:28:10) Fuzzy: Rice, why custom command for Gunners?
    (22:28:11) SuddenDeath5: spidy here
    (22:28:11) bbyJesus: #kittens
    (22:28:12) Haris Dragneel: Max 5 kils
    (22:28:13) ***************************************************************************************
    (22:28:13) Times Up! :
    (22:28:13) The Roles have been Decided! :
    (22:28:13) Current Roles: Bastion, Citizen, Citizen, Dark Phoenix, Deadpool, Dr. Doom, Dr. Doom, Dr. Doom, Dr. Doom, Dr. Doom, Dr. Strange, Galactus, Ice Man, Morph, Professor Xavier, Rogue, Shuma-Gorath, Silver Surfer, Spider-Man, Stan Lee, Stardust.
    (22:28:13) Current Players: AirLow70, Barao a Vapor, Cragglez, Dept. Heaven, Goten, Haris Dragneel, Huck Finn, Light Wizard, Luigi, Rosalina, Scizorfan1991, Sebastian Hummel, Shadow Zero, Steerclearz, Steve Johns, SuddenDeath5, Turky Bacon, Wasabi121, bbyJesus, packy, quetips.
    (22:28:13) Time: Night 1
    (22:28:13) Make your moves, you only have 30 seconds! :
    (22:28:13) ***************************************************************************************
    (22:28:19) Roy Mustang left the channel.
    (22:28:20) Sebastian Hummel: exactly, but smarter people will still not kill early on in fear of getting jugger
    (22:28:26) SuddenDeath5: SPIDY CLAIM
    (22:28:26) ±Exploud: SuddenDeath5 was muted for caps for 15 minutes.
    (22:28:26) ±Kill: SuddenDeath5 (Doombot #2) was slain by Exploud!
    (22:28:28) Steerclearz: Ziticen here
    (22:28:29) Shadow Zero: lol
    (22:28:30) Steerclearz: !!
    (22:28:30) Light Wizard: lol
    (22:28:30) quetips: Lol
    (22:28:30) bbyJesus: come @ me sluts
    (22:28:30) Scizorfan1991: lol
    (22:28:31) Zeromare: LOL
    (22:28:31) Sebastian Hummel: early nights, it's stallish
    (22:28:31) Steerclearz: lewlz
    (22:28:32) Wasabi121: well it was my first time playing Sebastian Hummel
    (22:28:33) Goten: :| lol
    (22:28:34) Scizorfan1991: pro
    (22:28:36) bbyJesus: cum hard
    (22:28:37) Sebastian Hummel: but later on, it's improved
    (22:28:39) quetips: pro exploud
    [/HIDE]
    Leaving part of the next game because of comments.
     
  21. Epikhairz

    Epikhairz Delta Stream

    Joined:
    Mar 15, 2013
    Messages:
    929
    Likes Received:
    102
    PO Trainer Name:
    Epikhairz
    I know I've gotten a couple of complaints about strategy in this theme, but I'm stumped as to what to add. So I'm going to ask you guys, if this was your theme, what would you add to this theme to add some strategy into this theme?

    Hopefully, I can collect enough opinions to get a good strategy into the theme before the testing phase is over.
     
  22. Marquis

    Marquis beez in the whazzit??

    Joined:
    Jan 26, 2013
    Messages:
    259
    Likes Received:
    47
    (20:14:49) ***************************************************************************************
    (20:14:49) ±Game: Steve Johns started a game with theme Juggernaut!
    (20:14:49) ±Game: Type /Join to enter the game!
    (20:14:49) ***************************************************************************************

    (20:14:49) ±Game: For years, the Juggernaut has ruled the village with an iron fist, but as the population dwindled, a violent war between the Juggernaut and the Gunners began. The one to kill the Juggernaut becomes his successor, but just remember: absolute power corrupts absolutely. Be the last one standing! If you have any suggestions, PM Epikhairz0603.
    (20:14:51) Arcturus: Yeah! boring villager right here
    (20:14:51) ±Game: Steve Johns joined the game!
    (20:14:52) ±Game: Steam Baron joined the game!
    (20:14:52) Soarin left the channel.
    (20:14:53) ±Game: RiceKnight joined the game!
    (20:14:53) ±Game: viashinomage joined the game!
    (20:14:53) ±Game: Alula the Rose joined the game!
    (20:14:53) ±Game: Arcturus joined the game!
    (20:14:54) Huntahs: Welp, good game, arcturus.
    (20:14:54) ±Game: Karp Karpity joined the game!
    (20:14:54) ±Game: Giovanni- joined the game!
    (20:14:55) ±Game: ngcmaster joined the game!
    (20:14:55) ±Game: xxLiamxx joined the game!
    (20:14:56) Karp Karpity: i guess
    (20:14:56) Steam Baron: Juggernaut woo!
    (20:14:57) Alula the Rose: ive not played this yet
    (20:14:59) xxLiamxx: Im mlg villy
    (20:15:00) ±Game: Huntahs joined the game!
    (20:15:02) ±Game: Zeromare joined the game!
    (20:15:06) Huntahs: Wow, lag.
    (20:15:07) ±Game: McStarley joined the game!
    (20:15:08) xxLiamxx: i carried put me on your fridge
    (20:15:13) xxLiamxx: ill send pics
    (20:15:15) Giovanni-: there is no villies in this
    (20:15:15) xxLiamxx: one secs
    (20:15:19) ±Game: EXPLOUDinator joined the game!

    (20:15:19) ±Game: Hurry up, you only have 30 seconds more to join!

    (20:15:21) xxLiamxx: i meant last game
    (20:15:21) Arcturus: I actually suspected liam until you guessed me
    (20:15:26) Zeromare: everybody kills
    (20:15:27) ±Game: matthewbny joined the game!
    (20:15:28) xxLiamxx: lolwut
    (20:15:29) matthewbny: http://pokemon-online.eu/forums/showthread.php?19662-Mt-Ember-Redux
    (20:15:29) Giovanni-: just gunners and one juggernaut to kill
    (20:15:36) xxLiamxx: I KNOW
    (20:15:37) Fynecian left the channel.
    (20:15:39) Zeromare: just remember gunners can't xfire
    (20:15:44) EXPLOUDinator: ^
    (20:15:46) Zeromare: and only the juggernaut wins
    (20:15:49) ***************************************************************************************
    (20:15:49) Times Up! :
    (20:15:49) The Roles have been Decided! :
    (20:15:49) ±Game: You are a Gunner!
    (20:15:49) ±Game: As a Gunner, you are fed up with the totalitarian rule of the Juggernaut and get to /shoot [name] once per night in an attempt to kill the Juggernaut. If you manage to kill the Juggernaut, you will become the new Juggernaut! Gunners are immune to crossfire, so shoot away!
    (20:15:49) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:15:49) Current Players: Alula the Rose, Arcturus, EXPLOUDinator, Giovanni-, Huntahs, Karp Karpity, McStarley, RiceKnight, Steam Baron, Steve Johns, Zeromare, matthewbny, ngcmaster, viashinomage, xxLiamxx.
    (20:15:49) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (20:15:49) Time: Night 1
    (20:15:49) Make your moves, you only have 30 seconds! :
    (20:15:49) ***************************************************************************************
    (20:15:49) matthewbny: Jugg get's first priority
    (20:15:53) EXPLOUDinator: juggernaut here
    (20:15:55) EXPLOUDinator: jk
    (20:15:58) Karp Karpity: gunner here
    (20:15:59) Zeromare: you have to be the juggs to win
    (20:16:01) xxLiamxx: if you start as jugg you lose
    (20:16:01) ±Game: You have chosen to shoot Zeromare!
    (20:16:03) Alula the Rose: oh jeez
    (20:16:06) Sephiroth the Qi left the channel.
    (20:16:06) Steam Baron: everyone shootin' exploud
    (20:16:08) viashinomage: oh snap
    (20:16:08) Alula the Rose: i dont want to kill a jug
    (20:16:09) McStarley: lol
    (20:16:10) ±Game: You have chosen to shoot Huntahs!
    (20:16:16) viashinomage: gunner
    (20:16:17) McStarley: killing the jug
    (20:16:17) Huntahs: This is kinda like Vepix c:
    (20:16:19) ***************************************************************************************
    (20:16:19) Times Up! :
    (20:16:19) Game: Alula the Rose (Gunner) was killed!
    (20:16:19) ±Game: Your target (Huntahs) evaded your shoot!
    (20:16:19) ±Game: A new Juggernaut was born!
    (20:16:19) Game: McStarley (Juggernaut) was killed!
    (20:16:19) ***************************************************************************************
    (20:16:19) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:16:19) Current Players: Arcturus, EXPLOUDinator, Giovanni-, Huntahs, Karp Karpity, RiceKnight, Steam Baron, Steve Johns, Zeromare, matthewbny, ngcmaster, viashinomage, xxLiamxx.
    (20:16:19) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (20:16:19) Time: Day 1
    (20:16:19) You have 20 seconds to debate who are the bad guys! :
    (20:16:19) ***************************************************************************************
    (20:16:20) xxLiamxx: tbh dont shoot anyone
    (20:16:25) xxLiamxx: just adk
    (20:16:27) EXPLOUDinator: dat juggernaut death
    (20:16:27) xxLiamxx: afk
    (20:16:27) Steam Baron: lol, fail Juss
    (20:16:28) xxLiamxx: lol
    (20:16:30) Steam Baron: Jugg
    (20:16:39) ***************************************************************************************
    (20:16:39) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (20:16:39) Current Players: Arcturus, EXPLOUDinator, Giovanni-, Huntahs, Karp Karpity, RiceKnight, Steam Baron, Steve Johns, Zeromare, matthewbny, ngcmaster, viashinomage, xxLiamxx.
    (20:16:39) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (20:16:39) Time: Night 2
    (20:16:39) Make your moves, you only have 30 seconds! :
    (20:16:39) ***************************************************************************************
    (20:16:43) ngcmaster: xD who are u jugger! LOLS
    (20:16:43) xxLiamxx: (13:16:09) xxLiamxx: if you start as jugg you lose
    (20:16:47) matthewbny: Juggernaut can self protect??
    (20:16:55) Karp Karpity: yeah
    (20:16:55) ±Game: You have chosen to shoot Karp Karpity!
    (20:16:59) EXPLOUDinator: argh
    (20:17:00) RiceKnight: failchance
    (20:17:02) Arcturus: no, he just gets prio
    (20:17:02) EXPLOUDinator: I keep using /kill
    (20:17:05) ngcmaster: iam shooting zero xD
    (20:17:08) EXPLOUDinator: forgot it's /shoot
    (20:17:09) ***************************************************************************************
    (20:17:09) Times Up! :
    (20:17:09) Game: Giovanni- (Gunner) was killed!
    (20:17:09) ±Game: Your target (Karp Karpity) evaded your shoot!
    (20:17:09) Game: Zeromare (Juggernaut) was killed!
    (20:17:09) ±Game: The Gunners (Steve Johns, Steam Baron, RiceKnight, viashinomage, Arcturus, Karp Karpity, ngcmaster, xxLiamxx, Huntahs, EXPLOUDinator and matthewbny) wins!
    (20:17:09) ***************************************************************************************(20:17:09) matthewbny: me too exploud
    (20:17:13) EXPLOUDinator: LOL
    (20:17:14) RiceKnight: ...
    (20:17:14) matthewbny: What
    (20:17:15) Steam Baron: woo
    (20:17:16) Alula the Rose: really guys? my first game tonight and you kill me? :/ asses. I didn't even get a chance to play
    (20:17:16) ngcmaster: xD
    (20:17:19) Alula the Rose: >>
    (20:17:19) RiceKnight: holy
    (20:17:19) Steam Baron: We're winners
    (20:17:19) viashinomage: :D
    (20:17:20) Zeromare: dafuq?
    (20:17:22) RiceKnight: ok
    (20:17:22) Huntahs: .-.
    (20:17:24) RiceKnight: brb checking code
    (20:17:30) ngcmaster: i got zero
    (20:17:31) ngcmaster: hahha
    (20:17:32) xxLiamxx: LOL
    (20:17:33) xxLiamxx: wut
    (20:17:37) Zeromare: whomever killed me shoulda been the new juggs

    (20:17:37) ***************************************************************************************
    (20:17:37) ±Game: Karp Karpity started a game with theme FE!
    (20:17:37) ±Game: Type /Join to enter the game!
    (20:17:37) ***************************************************************************************

    (20:17:37) ±Game: http://wiki.pokemon-online.eu/wiki/Theme:FE
    (20:17:40) ±Game: Steam Baron joined the game!
    (20:17:42) ±Game: McStarley joined the game!
    (20:17:42) ±Game: Alula the Rose joined the game!
    (20:17:42) matthewbny left the channel.
    (20:17:44) ±Game: Karp Karpity joined the game!
    (20:17:45) Arcturus: what is this? I thought it was not done until 1 was left
    (20:17:47) ±Game: Arcturus joined the game!
    (20:17:47) ±Game: xxLiamxx joined the game!
    (20:17:48) Knack Blight joined the channel.
    (20:17:51) xxLiamxx: fire emeblem i think
    (20:17:53) ngcmaster: (11:17:00) ±Game: You have chosen to shoot Zeromare!
    (20:17:53) ±Game: Knack Blight joined the game!
    (20:17:54) ±Game: ngcmaster joined the game!
    (20:17:56) ngcmaster: XD
    (20:17:56) Alula the Rose: rice is checking to code
    (20:17:58) Alula the Rose: *the
    (20:18:02) ±Game: Huntahs joined the game!
    (20:18:04) Arcturus: ok good.

    i blame rice I have no idea why it went wrong like that, except for maybe that the kill came before the copy... which doesn't make sense looking at the code. idk

    EDIT: Also, Rice:

    {
    "role": "mafia4",
    "translation": "Juggernaut",
    "side": "mafia",
    "help": "You are stronger now! Every night, you can /kill [name] up to 4 Gunners at maximum priority to assert control of the village! You can also use /protect [yourname] to guard yourself, but with a chance of failing!",
    "hide": true,
    "actions": {
    "night": {
    "kill": {
    "target": "AnyButTeam",
    "common": "Self",
    "priority": 1,
    "limit": 3 (should be 4),
     
    Last edited: Apr 23, 2013
  23. IceKirby

    IceKirby A.K.A. RiceKirby

    Joined:
    Apr 26, 2011
    Messages:
    2,176
    Likes Received:
    635
    PO Trainer Name:
    RiceKirby
  24. Epikhairz

    Epikhairz Delta Stream

    Joined:
    Mar 15, 2013
    Messages:
    929
    Likes Received:
    102
    PO Trainer Name:
    Epikhairz
    Yeah I'm on my phone and won't have access to a computer w/ effecient copy/paste for the next twenty hours so just upload icekirby's code. And icekirby, you can make yourself author if you want to.
     
  25. Shazan

    Shazan Obey to Kyubey

    Joined:
    Jan 21, 2013
    Messages:
    591
    Likes Received:
    14
    PO Trainer Name:
    Obey to Kyubey
    Well there is already a bit of strategy because you know that until the juggernaut has changed your precedents targets are gunners, the problem is that it lack the collaboration strategy between players typical of the 90% of mafia's games, the only real chance that this collaboration can be added is if there was a way to make the gunners win but i think to make so the game will change too radically so it's better not doing so.
     
  26. Angel Flonne

    Angel Flonne macaron

    Joined:
    Jan 24, 2013
    Messages:
    509
    Likes Received:
    3
    PO Trainer Name:
    Angel Flonne
    this theme is like bomb wee instant like

    But um, even though it was quite a fun theme to play, may I inquire how Gunners win?
    Because there's no vote phase and all, I'm quite curious.
     
  27. Epikhairz

    Epikhairz Delta Stream

    Joined:
    Mar 15, 2013
    Messages:
    929
    Likes Received:
    102
    PO Trainer Name:
    Epikhairz
    Gunners can't win. The goal is last Juggernaut standing wins
     
  28. Li Q. Assir

    Li Q. Assir Mindblower

    Joined:
    Jul 31, 2012
    Messages:
    498
    Likes Received:
    0
    I think this goes against the spirit of Mafia... what is the point on having a team without ANY chances to win (unless Juggernaut is slain)?
    That was the first question I asked myself when I first saw this theme under testing on the server.

    It had some fun, but I really don't see how this works as Mafia. Sorry. If I were QC, I'd decline it :/

    And yes, I felt it was necessary for me to post here.
     
  29. Epikhairz

    Epikhairz Delta Stream

    Joined:
    Mar 15, 2013
    Messages:
    929
    Likes Received:
    102
    PO Trainer Name:
    Epikhairz
    Since you call Gunners a "team" that has no chance of winning, why don't you think of it as each Gunner is their own team? That way, each Gunner has an equal chance of winning. Technically, they are bunched as a team, but really, you can't trust your fellow Gunners, as they could easily turn on you when they become Juggernaut. So to summarize, each Gunner is his own team and all the Gunner wants to do is survive until the very end.

    Hope I helped change your mind! If not, well, everyone is entitled to their own opinion and I respect yours. I also thank you for the feedback
     
  30. Fuzzysqurl

    Fuzzysqurl baa baa mareep I do what I want Server Owner Developer I do what I want Server Owner Developer

    Joined:
    Sep 12, 2012
    Messages:
    2,096
    Likes Received:
    967
    To have any hope of getting me to approve it, you need to make each gunner it's own role, otherwise, as RiceKirby said, priority will be defined by join order. Make identical roles just with different protos (gunner1, gunner2, gunner3, etc) and have them spawn like that. Add "hide": true to every gunner besides the first one, and "hide": true to the /shoot (which should be /kill) action besides the first one.
     
  31. Zzyzx Road

    Zzyzx Road Member

    Joined:
    Feb 16, 2012
    Messages:
    572
    Likes Received:
    2
    PO Trainer Name:
    Zzyzx Road
    Fix pls

    Error occurred at startup.
     
  32. Epikhairz

    Epikhairz Delta Stream

    Joined:
    Mar 15, 2013
    Messages:
    929
    Likes Received:
    102
    PO Trainer Name:
    Epikhairz
    We fixed that about a minute after that game...
     
  33. Zzyzx Road

    Zzyzx Road Member

    Joined:
    Feb 16, 2012
    Messages:
    572
    Likes Received:
    2
    PO Trainer Name:
    Zzyzx Road
    My bad. Reenabled.
     
  34. IceKirby

    IceKirby A.K.A. RiceKirby

    Joined:
    Apr 26, 2011
    Messages:
    2,176
    Likes Received:
    635
    PO Trainer Name:
    RiceKirby
    I have been helping Epikhairz with coding and suggestions to make this theme better. Since there are some complaints about the lack of strategy in this theme, we discussed some possibilities, but couldn't get a really good solution. I then came up with the following idea (didn't have much time to discuss with Epikhairz yet). Since it changes the theme too much, I'm just throwing the idea here for discussion or suggestions on how to make this theme better:
    Code: https://dl.dropboxusercontent.com/u/10065307/Mafia/JuggernautC.js
    In this version, Juggernaut gets less kills (max of 3, 2 turns between each upgrade) and a better protection, but the voting phase is enabled.
    If Juggernaut is not lynched, the game is basically the same as currently. However, if the Juggernaut gets lynched, the game basically changes completely: Juggernaut becomes Enraged Juggernaut (2 kills, evade 95% of the kills, can transform a Gunner into a Hostage (4 charges)).
    Hostages are basically Conspirator roles (separated team) that win with everyone, but have a voteshield of +50 (AKA lynched with any vote) and have a /escape to become a Gunner again (20% chance of success). When Juggernauts become Enraged, the game basically changes into a battle against a known enemy, either to hit Juggernaut with a /kill (5% chance, no more transformation into Juggernaut) or to lynch them again (but Hostages must be dealt with first).
    In theory, it solves the issues with Gunners being unable to win, while making the game more strategic and encouraging teamwork (votes, clean people, dealing with Hostages, etc).
    [/HIDE]

    Like I said, I still couldn't talk to Epikhairz about this idea, so don't take this idea as a new version unless Epikhairz approves it.
     
  35. Epikhairz

    Epikhairz Delta Stream

    Joined:
    Mar 15, 2013
    Messages:
    929
    Likes Received:
    102
    PO Trainer Name:
    Epikhairz
    If you read the History of EDITs, you will see I have added IceKirby's code for testing. Because this is massively different from the old Juggernaut when Juggernaut gets lynched, I am requesting a re-test or an extended testing period
     
    Last edited: Apr 25, 2013
  36. IceKirby

    IceKirby A.K.A. RiceKirby

    Joined:
    Apr 26, 2011
    Messages:
    2,176
    Likes Received:
    635
    PO Trainer Name:
    RiceKirby
    First log with the Vote + Hostage system:
    (01:09:43) ***************************************************************************************
    (01:09:43) ±Game: RiceKirby started a game with theme Juggernaut!
    (01:09:43) ±Game: Type /Join to enter the game!
    (01:09:43) ***************************************************************************************

    (01:09:43) ±Game: For years, the Juggernaut has ruled the village with an iron fist, but as the population dwindled, a violent war between the Juggernaut and the Gunners began. The one to kill the Juggernaut becomes his successor! If the Juggernaut is lynched, it will rampage and take Hostages, so Gunners will need to work together to take them down! If you have any suggestions, PM Epikhairz0603.
    (01:09:46) ±Game: Key of Destiny joined the game!
    (01:09:46) ±Game: RiceKirby joined the game!
    (01:09:47) ±Game: Pokemaster131 joined the game!
    (01:09:47) ±Game: GTFAN joined the game!
    (01:09:49) ±Game: Kedustealer joined the game!
    (01:09:50) ±Game: Sakamoto joined the game!
    (01:09:51) ±Game: ngcmaster joined the game!
    (01:09:51) Haris Dragneel: haters
    (01:09:52) Key of Destiny: What is love?
    (01:09:52) ±Game: Arcturus joined the game!
    (01:09:52) ±Game: lukegonz15 joined the game!
    (01:09:53) gulc5886: why didn't ray kill
    (01:09:54) ±Game: Jounoichi joined the game!
    (01:09:54) gulc5886: -.-
    (01:09:54) ±Game: Roseay joined the game!
    (01:09:55) Haris Dragneel: i'll kill u all
    (01:09:58) Haris Dragneel: for sure
    (01:09:59) ±Game: asparagus joined the game!
    (01:09:59) ±Game: gulc5886 joined the game!
    (01:10:01) Key of Destiny: Baby don't hurt me, don't hurt me, no more.
    (01:10:01) ±Game: Haris Dragneel joined the game!
    (01:10:02) ±Game: caddy joined the game!
    (01:10:02) Arcturus: hostages?
    (01:10:07) asparagus: so genesect kills shedinja with explosion
    (01:10:07) asparagus: ok
    (01:10:10) asparagus: makes sense
    (01:10:11) lukegonz15: Cuz I selected before you said steve

    (01:10:12) ±Game: Hurry up, you only have 30 seconds more to join!

    (01:10:13) Roseay: Ray killed me.
    (01:10:14) ±Game: Skitty33 joined the game!
    (01:10:17) RiceKirby: Yep, Arcturus
    (01:10:18) Roseay: Lol.
    (01:10:19) Skitty33: juggernaut is so fun xd
    (01:10:25) Haris Dragneel: To do kill : Skitty33 , Champ X , Steve Johns , Randoms
    (01:10:27) RiceKirby: THis is a bit different now
    (01:10:30) ngcmaster: xD
    (01:10:30) Skitty33: haris still
    (01:10:33) ngcmaster: dont like this
    (01:10:35) RiceKirby: There's a vote phase
    (01:10:36) Skitty33: between you and frozen ;~;
    (01:10:40) ±Game: You already joined!
    (01:10:41) ngcmaster: hope iam juggernaut
    (01:10:42) ***************************************************************************************
    (01:10:42) Times Up! :
    (01:10:42) The Roles have been Decided! :
    (01:10:42) ±Game: You are a Gunner!
    (01:10:42) ±Game: As a Gunner, you are fed up with the totalitarian rule of the Juggernaut and get to /kill [name] once per night in an attempt to kill the Juggernaut. If you manage to kill the Juggernaut, you will become the new Juggernaut! Gunners are immune to crossfire, so shoot away!
    (01:10:42) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (01:10:42) Current Players: Arcturus, GTFAN, Haris Dragneel, Jounoichi, Kedustealer, Key of Destiny, Pokemaster131, RiceKirby, Roseay, Sakamoto, Skitty33, asparagus, caddy, gulc5886, lukegonz15, ngcmaster.
    (01:10:42) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (01:10:42) Time: Night 1
    (01:10:42) Make your moves, you only have 30 seconds! :
    (01:10:42) ***************************************************************************************
    (01:10:48) ngcmaster: iam juggernaut!
    (01:10:48) ±Game: You have chosen to kill caddy!
    (01:10:54) Haris Dragneel: bcoz im mad
    (01:10:56) Haris Dragneel: madd
    (01:10:58) Haris Dragneel: lool
    (01:10:58) Kedustealer: wow
    (01:10:59) Pokemaster131: jugg here
    (01:10:59) gulc5886: what happens if we vote jugger? rand?
    (01:11:00) Skitty33: :c
    (01:11:04) gulc5886: or gunner win?
    (01:11:05) Pokemaster131: there are no votes
    (01:11:09) gulc5886: there are
    (01:11:09) Kedustealer: he becomes enraged
    (01:11:10) Haris Dragneel: No votes here
    (01:11:11) Roseay: Gunner never wins.
    (01:11:12) ***************************************************************************************
    (01:11:12) Times Up! :
    (01:11:12) ±Game: Your target (caddy) evaded your kill!
    (01:11:12) No one died! :
    (01:11:12) ***************************************************************************************
    (01:11:12) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (01:11:12) Current Players: Arcturus, GTFAN, Haris Dragneel, Jounoichi, Kedustealer, Key of Destiny, Pokemaster131, RiceKirby, Roseay, Sakamoto, Skitty33, asparagus, caddy, gulc5886, lukegonz15, ngcmaster.
    (01:11:12) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (01:11:12) Time: Day 1
    (01:11:12) You have 15 seconds to debate who are the bad guys! :
    (01:11:12) ***************************************************************************************
    (01:11:15) RiceKirby: If Jugger is lynched, he goes on a Rampage
    (01:11:17) Pokemaster131: :o
    (01:11:18) Kedustealer: arcturus clean
    (01:11:19) Skitty33: oh so
    (01:11:23) Key of Destiny: Kedustealer evaded, so he's clean. ._.
    (01:11:23) gulc5886: so we shouldn't vote then .-.
    (01:11:24) Skitty33: we dont want to vote him o.O ?
    (01:11:24) ngcmaster: ok skitty is clean
    (01:11:26) RiceKirby: And Juggernaut, y u no kill?
    (01:11:27) ***************************************************************************************
    (01:11:27) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (01:11:27) Current Players: Arcturus, GTFAN, Haris Dragneel, Jounoichi, Kedustealer, Key of Destiny, Pokemaster131, RiceKirby, Roseay, Sakamoto, Skitty33, asparagus, caddy, gulc5886, lukegonz15, ngcmaster.
    (01:11:27) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (01:11:27) Time: Day 1
    (01:11:27) It's time to vote someone off, type /Vote [name], you only have 30 seconds! :
    (01:11:27) ***************************************************************************************
    (01:11:28) Haris Dragneel: dat jugger is protecting
    (01:11:30) Roseay: Caddy evaded.
    (01:11:30) RiceKirby: caddy evaded
    (01:11:32) lukegonz15: GTFAN is clean
    (01:11:34) GTFAN: woot
    (01:11:37) Kedustealer: no vote
    (01:11:37) Jounoichi: Vote????
    (01:11:38) ngcmaster: skitty too evaded
    (01:11:38) ±Game: RiceKirby voted for Haris Dragneel!
    (01:11:39) gulc5886: apparently voting is bad
    (01:11:39) Pokemaster131: not ngcmaster
    (01:11:41) RiceKirby: Let's try this
    (01:11:43) ±Game: Roseay voted for Haris Dragneel!
    (01:11:43) ±Game: Key of Destiny voted for Haris Dragneel!
    (01:11:44) Skitty33: lol
    (01:11:45) ±Game: Arcturus voted for Haris Dragneel!
    (01:11:46) ±Game: gulc5886 voted for Haris Dragneel!
    (01:11:47) GTFAN: Haris clean lol
    (01:11:47) ±Game: Kedustealer voted for RiceKirby!
    (01:11:47) Pokemaster131: stop voting
    (01:11:48) Jounoichi: i thought juggernaut no vote?
    (01:11:48) ±Game: Skitty33 voted for Haris Dragneel!
    (01:11:48) Haris Dragneel: eh wat
    (01:11:48) ±Game: Sakamoto voted for Haris Dragneel!
    (01:11:49) Roseay: inb4gunner
    (01:11:50) Haris Dragneel: okay hater
    (01:11:51) Key of Destiny: Wynaut?
    (01:11:52) RiceKirby: Oh, he is?
    (01:11:53) ngcmaster: ....
    (01:11:54) ±Game: asparagus voted for Haris Dragneel!
    (01:11:54) Haris Dragneel: i'll kill u damn
    (01:11:56) Key of Destiny: inb4 juggernaut
    (01:11:57) Haris Dragneel: sc
    (01:12:01) ***************************************************************************************
    (01:12:01) Times Up! :
    (01:12:01) ±Game: Haris Dragneel (Gunner) was removed from the game!
    (01:12:01) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (01:12:01) Current Players: Arcturus, GTFAN, Jounoichi, Kedustealer, Key of Destiny, Pokemaster131, RiceKirby, Roseay, Sakamoto, Skitty33, asparagus, caddy, gulc5886, lukegonz15, ngcmaster.
    (01:12:01) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (01:12:01) Time: Night 2
    (01:12:01) Make your moves, you only have 30 seconds! :
    (01:12:01) ***************************************************************************************
    (01:12:02) asparagus: i shot you but idgaf
    (01:12:03) lukegonz15: Voting is stupid in this theme
    (01:12:03) GTFAN: but it takes out competition
    (01:12:04) Roseay: Gunner.
    (01:12:04) ngcmaster: lols
    (01:12:11) ±Game: You have chosen to kill Skitty33!
    (01:12:18) Frostbite left the channel.
    (01:12:21) ±Game: You have chosen to kill Key of Destiny!
    (01:12:26) gulc5886: Has a 95% chance of evading kills
    (01:12:30) Pokemaster131: wat
    (01:12:30) gulc5886: why would we ever vote
    (01:12:31) gulc5886: D:
    (01:12:31) ***************************************************************************************
    (01:12:31) Times Up! :
    (01:12:32) Game: Key of Destiny (Gunner) was killed!
    (01:12:32) ±Game: The Juggernaut keeps going!
    (01:12:32) ***************************************************************************************
    (01:12:32) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (01:12:32) Current Players: Arcturus, GTFAN, Jounoichi, Kedustealer, Pokemaster131, RiceKirby, Roseay, Sakamoto, Skitty33, asparagus, caddy, gulc5886, lukegonz15, ngcmaster.
    (01:12:32) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (01:12:32) Time: Day 2
    (01:12:32) You have 15 seconds to debate who are the bad guys! :
    (01:12:32) ***************************************************************************************
    (01:12:36) GTFAN: uhoh
    (01:12:39) Kedustealer: rice is good
    (01:12:41) ngcmaster: aspa is clean
    (01:12:41) caddy: ngcmaster evaded
    (01:12:41) lukegonz15: Kedu is clean
    (01:12:42) Pokemaster131: kedustealer is clean
    (01:12:42) Skitty33: jugger is too good ><
    (01:12:43) RiceKirby: Because Gunners now can win
    (01:12:44) GTFAN: arc is clean
    (01:12:45) Kedustealer: no votes here
    (01:12:46) ***************************************************************************************
    (01:12:46) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (01:12:46) Current Players: Arcturus, GTFAN, Jounoichi, Kedustealer, Pokemaster131, RiceKirby, Roseay, Sakamoto, Skitty33, asparagus, caddy, gulc5886, lukegonz15, ngcmaster.
    (01:12:46) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (01:12:46) Time: Day 2
    (01:12:46) It's time to vote someone off, type /Vote [name], you only have 30 seconds! :
    (01:12:46) ***************************************************************************************
    (01:12:48) ngcmaster: asparagus is clean
    (01:12:51) lukegonz15: No vote!
    (01:12:52) RiceKirby: ANd Juggernaut got my target
    (01:12:53) ngcmaster: skitty33 is clean too
    (01:12:54) Kedustealer: any votes are countered
    (01:12:58) asparagus: ngcmaster lied
    (01:12:59) asparagus: vote him
    (01:13:01) Skitty33: jounochi is clean then :3 i guess?
    (01:13:03) lukegonz15: Nobody vote at all
    (01:13:05) RiceKirby: We have to vote, js
    (01:13:06) ±Dratini: rfh was mysteriously kicked by Galblade!
    (01:13:08) Kedustealer: no
    (01:13:09) Skitty33: can jugger avoid though?
    (01:13:09) Pokemaster131: it would be funny if jugg killed himself
    (01:13:10) gulc5886: if we lynch enraged he gets out?
    (01:13:11) ±Game: RiceKirby voted for Jounoichi!
    (01:13:13) ±Game: asparagus voted for RiceKirby!
    (01:13:16) ngcmaster: what the!
    (01:13:16) ±Game: Pokemaster131 voted for RiceKirby!
    (01:13:17) ngcmaster: STOP!
    (01:13:19) ±Game: Roseay voted for Jounoichi!
    (01:13:20) RiceKirby: Fine, don't vote
    (01:13:23) ±Game: caddy voted for Skitty33!
    (01:13:24) Pokemaster131: tie it
    (01:13:24) ±Game: Kedustealer voted for Jounoichi!
    (01:13:28) ngcmaster: lols
    (01:13:28) ±Game: GTFAN voted for Jounoichi!
    (01:13:29) ngcmaster: ok
    (01:13:29) Kedustealer: yeah tied npw
    (01:13:29) Skitty33: caddy owch
    (01:13:30) Jounoichi: wow
    (01:13:30) ±Game: Arcturus voted for Skitty33!
    (01:13:33) RiceKirby: Then we will never see the Enraged working
    (01:13:35) Jounoichi: really?
    (01:13:35) ngcmaster: ok ok xD this is bad
    (01:13:36) gulc5886: srsly, why would we want to give jugger a 95% evade bonus
    (01:13:36) Skitty33: skitty hate
    (01:13:38) Kedustealer: oh damn
    (01:13:39) ***************************************************************************************
    (01:13:39) Times Up! :
    (01:13:39) ±Game: Jounoichi (Gunner) was removed from the game!
    (01:13:39) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (01:13:39) Current Players: Arcturus, GTFAN, Kedustealer, Pokemaster131, RiceKirby, Roseay, Sakamoto, Skitty33, asparagus, caddy, gulc5886, lukegonz15, ngcmaster.
    (01:13:39) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (01:13:39) Time: Night 3
    (01:13:39) Make your moves, you only have 30 seconds! :
    (01:13:39) ***************************************************************************************
    (01:13:41) GTFAN: i wanna see the enraged
    (01:13:46) Skitty33: i thought i said he was clean?
    (01:13:47) caddy: haters gonna hate <3
    (01:13:49) ±Game: You have chosen to kill gulc5886!
    (01:13:49) Skitty33: :L
    (01:13:53) RiceKirby: Was gulc5886 cleaned?
    (01:13:56) Kedustealer: Haters keep on hating
    (01:13:59) ngcmaster: nope
    (01:13:59) Roseay: It won't let me shoot :/
    (01:14:01) Skitty33: dont think so rice
    (01:14:02) gulc5886: I don't remember being
    (01:14:04) RiceKirby: It's /kill
    (01:14:05) ngcmaster: not yet cleaned
    (01:14:05) lukegonz15: was caddy clean?
    (01:14:08) ***************************************************************************************
    (01:14:08) Times Up! :
    (01:14:08) Game: Roseay (Gunner) was killed!
    (01:14:08) Game: Arcturus (Gunner) was killed!
    (01:14:08) ±Game: Your target (gulc5886) evaded your kill!
    (01:14:08) ±Game: A new Juggernaut was born!
    (01:14:08) Game: Sakamoto (Juggernaut) was killed!
    (01:14:08) ***************************************************************************************
    (01:14:08) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (01:14:08) Current Players: GTFAN, Kedustealer, Pokemaster131, RiceKirby, Skitty33, asparagus, caddy, gulc5886, lukegonz15, ngcmaster.
    (01:14:08) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (01:14:08) Time: Day 3
    (01:14:08) You have 15 seconds to debate who are the bad guys! :
    (01:14:08) ***************************************************************************************
    (01:14:13) GTFAN: lol
    (01:14:16) Kedustealer: yeah caddy is clean
    (01:14:16) RiceKirby: :o
    (01:14:17) lukegonz15: Yup, he's clean
    (01:14:19) ngcmaster: no one is clean
    (01:14:21) ngcmaster: ...
    (01:14:23) Pokemaster131: arcturus is clean
    (01:14:23) caddy: ricekirby evaded
    (01:14:24) ***************************************************************************************
    (01:14:24) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (01:14:24) Current Players: GTFAN, Kedustealer, Pokemaster131, RiceKirby, Skitty33, asparagus, caddy, gulc5886, lukegonz15, ngcmaster.
    (01:14:24) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (01:14:24) Time: Day 3
    (01:14:24) It's time to vote someone off, type /Vote [name], you only have 30 seconds! :
    (01:14:24) ***************************************************************************************
    (01:14:24) RiceKirby: No one is clean anymore
    (01:14:25) ngcmaster: no one is clean again!
    (01:14:25) Pokemaster131: well
    (01:14:27) Kedustealer: that jugga\
    (01:14:27) Pokemaster131: was clean
    (01:14:28) Skitty33: so no we start over
    (01:14:33) ngcmaster: no vote
    (01:14:38) ±Game: RiceKirby voted for ngcmaster!
    (01:14:39) lukegonz15: No vote rice
    (01:14:40) Pokemaster131: don't vote
    (01:14:40) ngcmaster: just shoot and shoot xD
    (01:14:41) ±Game: GTFAN voted for ngcmaster!
    (01:14:41) RiceKirby: We have to vote
    (01:14:42) Skitty33: lol
    (01:14:42) lukegonz15: Wow
    (01:14:42) ±Game: asparagus voted for RiceKirby!
    (01:14:42) ngcmaster: lols
    (01:14:45) ±Game: gulc5886 voted for RiceKirby!
    (01:14:46) ngcmaster: thx iam gunner
    (01:14:47) Skitty33: poor ngc
    (01:14:49) ±Game: caddy voted for ngcmaster!
    (01:14:50) Pokemaster131: tie it
    (01:14:50) RiceKirby: WHoever says no vote is obviously Juggernaut
    (01:14:51) ±Game: ngcmaster voted for RiceKirby!
    (01:14:54) ±Game: Kedustealer voted for ngcmaster!
    (01:14:55) ±Game: Pokemaster131 voted for RiceKirby!
    (01:14:56) ngcmaster: xD then vote me
    (01:14:58) Kedustealer: rice is clean
    (01:15:00) GTFAN: O.o
    (01:15:01) ngcmaster: i say vote me LOLS
    (01:15:02) ***************************************************************************************
    (01:15:02) Times Up! :
    (01:15:02) No one was voted off! :
    (01:15:02) ***************************************************************************************
    (01:15:02) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (01:15:02) Current Players: GTFAN, Kedustealer, Pokemaster131, RiceKirby, Skitty33, asparagus, caddy, gulc5886, lukegonz15, ngcmaster.
    (01:15:02) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (01:15:02) Time: Night 4
    (01:15:02) Make your moves, you only have 30 seconds! :
    (01:15:02) ***************************************************************************************
    (01:15:05) Pokemaster131: :D
    (01:15:10) ±Game: You have chosen to kill Pokemaster131!
    (01:15:21) GTFAN: i just want to see a berserk jugg
    (01:15:22) Kedustealer: is aspa clean?
    (01:15:28) ngcmaster: no one is clean as of
    (01:15:29) ngcmaster: now
    (01:15:32) Kedustealer: oh no one is clean
    (01:15:32) ***************************************************************************************
    (01:15:32) Times Up! :
    (01:15:32) ±Game: You died!
    (01:15:32) Game: RiceKirby (Gunner) was killed!
    (01:15:32) ±Game: A new Juggernaut was born!
    (01:15:32) Game: asparagus (Juggernaut) was killed!
    (01:15:32) ±Game: A new Juggernaut was born!
    (01:15:32) Game: Kedustealer (Juggernaut) was killed!
    (01:15:32) ***************************************************************************************
    (01:15:32) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (01:15:32) Current Players: GTFAN, Pokemaster131, Skitty33, caddy, gulc5886, lukegonz15, ngcmaster.
    (01:15:32) Time: Day 4
    (01:15:32) You have 15 seconds to debate who are the bad guys! :
    (01:15:32) ***************************************************************************************
    (01:15:38) GTFAN: O.O
    (01:15:38) Pokemaster131: whoa
    (01:15:39) ngcmaster: SEE!
    (01:15:44) Skitty33: oh god xD
    (01:15:45) ngcmaster: iam not jugger! hate u rice!
    (01:15:46) caddy: gtfan clean
    (01:15:47) ***************************************************************************************
    (01:15:47) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (01:15:47) Current Players: GTFAN, Pokemaster131, Skitty33, caddy, gulc5886, lukegonz15, ngcmaster.
    (01:15:47) Time: Day 4
    (01:15:47) It's time to vote someone off, type /Vote [name], you only have 30 seconds! :
    (01:15:47) ***************************************************************************************
    (01:15:50) Pokemaster131: 2 juggers died
    (01:15:52) Pokemaster131: on the same night
    (01:15:55) GTFAN: pokemaster was clean previously
    (01:15:55) ngcmaster: no is is clean!
    (01:15:56) ±Game: lukegonz15 voted for caddy!
    (01:16:00) ngcmaster: no one is clean
    (01:16:02) ngcmaster: what the
    (01:16:03) ngcmaster: tie it
    (01:16:04) ±Game: gulc5886 voted for lukegonz15!
    (01:16:08) ngcmaster: stop!
    (01:16:11) ±Game: caddy voted for lukegonz15!
    (01:16:12) ±Dratini: BKWhoppah was mysteriously kicked by Galblade!
    (01:16:13) Pokemaster131: stop
    (01:16:15) ±Game: Pokemaster131 voted for caddy!
    (01:16:17) gulc5886: my vote was a tie.
    (01:16:17) ±Game: GTFAN voted for lukegonz15!
    (01:16:18) ngcmaster: ok hope he is jugger xD
    (01:16:25) ***************************************************************************************
    (01:16:25) Times Up! :
    (01:16:25) ±Game: The Juggernaut goes mad! How to stop them now?
    (01:16:25) Current Roles: Enraged Juggernaut, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner.
    (01:16:25) Current Players: GTFAN, Pokemaster131, Skitty33, caddy, gulc5886, lukegonz15, ngcmaster.
    (01:16:25) Time: Night 5
    (01:16:25) Make your moves, you only have 30 seconds! :
    (01:16:25) ***************************************************************************************
    (01:16:26) ngcmaster: i wont vote lols hate this
    (01:16:29) Pokemaster131: ...
    (01:16:29) GTFAN: yessss
    (01:16:31) Skitty33: oh god xd
    (01:16:31) caddy: lol
    (01:16:32) ngcmaster: ok
    (01:16:34) ngcmaster: this is bad
    (01:16:39) Pokemaster131: get luke
    (01:16:44) GTFAN: all on luke lol
    (01:16:55) ***************************************************************************************
    (01:16:55) Times Up! :
    (01:16:55) Game: GTFAN (Gunner) was killed!
    (01:16:55) Game: Skitty33 (Gunner) was killed!
    (01:16:55) ±Game: A Gunner was taken as a hostage by the Juggernaut!
    (01:16:55) ***************************************************************************************
    (01:16:55) Current Roles: Enraged Juggernaut, Gunner, Gunner, Gunner, Hostage.
    (01:16:55) Current Players: Pokemaster131, caddy, gulc5886, lukegonz15, ngcmaster.
    (01:16:55) Time: Day 5
    (01:16:55) You have 15 seconds to debate who are the bad guys! :
    (01:16:55) ***************************************************************************************
    (01:16:56) ngcmaster: xD luke will die if that happens lols i guess
    (01:17:04) ngcmaster: AW?
    (01:17:05) gulc5886: everyone vote luke
    (01:17:07) ngcmaster: U jugger!
    (01:17:08) gulc5886: gogogo
    (01:17:10) ***************************************************************************************
    (01:17:10) Current Roles: Enraged Juggernaut, Gunner, Gunner, Gunner, Hostage.
    (01:17:10) Current Players: Pokemaster131, caddy, gulc5886, lukegonz15, ngcmaster.
    (01:17:10) Time: Day 5
    (01:17:10) It's time to vote someone off, type /Vote [name], you only have 30 seconds! :
    (01:17:10) ***************************************************************************************
    (01:17:12) lukegonz15: :( aw
    (01:17:19) ±Game: caddy voted for lukegonz15!
    (01:17:20) ±Game: gulc5886 voted for lukegonz15!
    (01:17:20) ±Game: ngcmaster voted for lukegonz15!
    (01:17:25) ±Game: Pokemaster131 voted for lukegonz15!
    (01:17:29) lukegonz15: Just sayin
    (01:17:30) ngcmaster: i trust them hahah hope they know it right ^_^
    (01:17:40) ***************************************************************************************
    (01:17:40) Times Up! :
    (01:17:40) ±Game: lukegonz15 (Enraged Juggernaut) was removed from the game!
    (01:17:40) ±Game: The Gunners (Pokemaster131, ngcmaster, gulc5886 and caddy) wins!
    (01:17:40) ***************************************************************************************
    (01:17:44) Pokemaster131: yay

    (01:17:44) ***************************************************************************************
    (01:17:44) ±Game: Key of Destiny started a game with theme Elements!
    (01:17:44) ±Game: Type /Join to enter the game!
    (01:17:44) ***************************************************************************************

    (01:17:44) ±Game: The basic units of matter – a theme revolving around the periodic table of elements! [Game Notes: New roles for the Mafia – Francium (Reactives) has a revealing daykill in addition to the normal kill and ionize kill – Antimony (Toxics) can safeguard TWO team members in addition to the poison! Team-reveal-with-roles has been added.]
    (01:17:45) Killjoy_Mario joined the channel.
    (01:17:45) Champ X: :o
    (01:17:45) RiceKirby: lukegonz15, y u no vote the Hostage?
    (01:17:45) ngcmaster: lolol
    (01:17:45) Pokemaster131: :D
    (01:17:45) ±Game: Key of Destiny joined the game!
    (01:17:46) Roseay: lol.
    (01:17:46) ±Game: Pokemaster131 joined the game!
    (01:17:46) caddy: !!!
    (01:17:47) Haris Dragneel: such an haters
    (01:17:47) Key of Destiny: dude
    (01:17:47) ngcmaster: hahaha
    (01:17:48) ±Game: Jounoichi joined the game!
    (01:17:48) ±Game: Roseay joined the game!
    (01:17:48) Virlomi logged out.
    (01:17:48) ~Unknown~ left the channel.
    (01:17:49) ±Game: lukegonz15 joined the game!
    (01:17:50) ±Game: Champ X joined the game!
    (01:17:50) ngcmaster: nice one xD
    (01:17:50) Key of Destiny: voting the hostage
    (01:17:51) ±Game: Sakamoto joined the game!
    (01:17:52) ±Game: CornPaste joined the game!
    (01:17:52) ±Game: Haris Dragneel joined the game!
    (01:17:53) ngcmaster: //join
    (01:17:53) Key of Destiny: means oyu live
    (01:17:54) ±Game: caddy joined the game!
    (01:17:54) ±Game: Arcturus joined the game!
    (01:17:55) ±Game: ngcmaster joined the game!
    (01:17:56) ±Game: GTFAN joined the game!
    (01:17:56) Key of Destiny: antoher day
    (01:17:57) Sebastian Hummel joined the channel.
    (01:17:57) Key of Destiny: -.-
    (01:17:58) ±Game: gulc5886 joined the game!
    (01:17:59) ±Game: Frozen Bowser joined the game!
    (01:18:00) Roseay: j/oin
    (01:18:00) RiceKirby: You know, you had to vote the Hostage to survive the lynch
    (01:18:00) ±Game: Steve Johns joined the game!
    (01:18:02) Roseay: sgbge
    (01:18:03) lukegonz15: What .-.
    (01:18:08) Sakamoto: start chinchous theme
    (01:18:08) Frozen Bowser: kill le skitty
    (01:18:09) lukegonz15: I didn't know that
    (01:18:10) RiceKirby: It says on your help description
    (01:18:11) ngcmaster: i want survivors.... i love being sniper xD
    (01:18:12) mokijuy joined the channel.
    (01:18:13) RiceKirby: Go read :x

    (01:18:13) ±Game: Hurry up, you only have 30 seconds more to join!

    (01:18:15) ±Dratini: Mouth Words was mysteriously kicked by Galblade!
    (01:18:19) Skitty33: frozen
    (01:18:22) Steve Johns: no
    (01:18:22) Chaos Inferno: well, night folks
    (01:18:22) lukegonz15: ;-; dammit
    (01:18:22) Skitty33: im not playing elements xd
    (01:18:23) Chaos Inferno: cya
    (01:18:26) Pokemaster131: galblade likes kicking people
    (01:18:27) RiceKirby: Also, opinions please
    (01:18:27) Pokemaster131: cya
    (01:18:28) ngcmaster: xD
    (01:18:29) ±Game: Sebastian Hummel joined the game!
    (01:18:30) Roseay: Let's play survivors later.
    (01:18:32) gulc5886: srs, it doesn't make sense to vote on that theme
    (01:18:33) *** lukegonz15 flips a thousand tables
    (01:18:33) ±Game: Mai-hime joined the game!
    (01:18:35) ±Game: Kogent joined the game!
    (01:18:36) ngcmaster: elements is good right
    (01:18:37) gulc5886: you just make jugger extremely OP
    (01:18:42) Champ X: Good~
    (01:18:43) ***************************************************************************************
    (01:18:43) Times Up! :
    (01:18:43) The Roles have been Decided! :
    (01:18:43) Current Roles: Carbon, Chlorine, Gold, Hydrogen, Hydrogen, Hydrogen, Hydrogen, Hydrogen, Hydrogen, Lead, Mercury, Nitrogen, Oxygen, Phosphorus, Plutonium, Radium, Sodium, Uranium, Xenon.
    (01:18:43) Current Players: Arcturus, Champ X, CornPaste, Frozen Bowser, GTFAN, Haris Dragneel, Jounoichi, Key of Destiny, Kogent, Mai-hime, Pokemaster131, Roseay, Sakamoto, Sebastian Hummel, Steve Johns, caddy, gulc5886, lukegonz15, ngcmaster.
    (01:18:43) Time: Night 1
    (01:18:43) Make your moves, you only have 30 seconds! :
    (01:18:43) ***************************************************************************************
    (01:18:44) ngcmaster: xD
    (01:18:47) Champ X: Esp if Pluto
    (01:18:49) Kogent: HI GUYS
    (01:18:50) Sebastian Hummel: RiceKirby, it looked much better and more balanced- working as a team.
    (01:18:50) Champ X: :P
    (01:18:53) caddy: hydronium
    (01:18:55) ngcmaster: ok nice iam dead
    (01:18:56) Roseay: Okkkaaay.
    (01:18:59) Roseay: So elements..
    (01:19:01) Pokemaster131: swagium here
    (01:19:01) Frozen Bowser: lame
    (01:19:02) Mai-hime: Au+Fe here
    (01:19:04) Roseay: Time to focus.
    (01:19:05) *** lukegonz15 eats a cookie
    (01:19:06) Frozen Bowser: imma die
    (01:19:06) Mai-hime: pm
    (01:19:07) gulc5886: but sebastian, why would anyone vote and give jugger a 95% evade chance
    (01:19:10) Frozen Bowser: by champ
    (01:19:13) *** Champ X eats a Bowser
    (01:19:13) ***************************************************************************************
    (01:19:13) Times Up! :
    (01:19:13) ±Universe: Sakamoto (Lead) decomposed!
    (01:19:13) ±Universe: Kogent (Hydrogen) decomposed!
    (01:19:13) ±Universe: Mai-hime (Hydrogen) decomposed!
    (01:19:13) ±Universe: ngcmaster (Oxygen) decomposed!
    (01:19:13) ***************************************************************************************
    (01:19:13) Current Roles: Carbon, Chlorine, Gold, Hydrogen, Hydrogen, Hydrogen, Hydrogen, Mercury, Nitrogen, Phosphorus, Plutonium, Radium, Sodium, Uranium, Xenon.
    (01:19:13) Current Players: Arcturus, Champ X, CornPaste, Frozen Bowser, GTFAN, Haris Dragneel, Jounoichi, Key of Destiny, Pokemaster131, Roseay, Sebastian Hummel, Steve Johns, caddy, gulc5886, lukegonz15.
    (01:19:13) Time: Day 1
    (01:19:13) You have 30 seconds to debate who are the bad guys! :
    (01:19:13) ***************************************************************************************
    (01:19:17) Key of Destiny: whoa
    (01:19:17) Sebastian Hummel: gulc, to weaken it later.
    (01:19:19) Champ X: ...You didn't die
    (01:19:19) Pokemaster131: :o
    (01:19:20) Frozen Bowser: or not
    (01:19:22) ***************************************************************************************
    (01:19:22) ±Game: A mysterious Kuiper Belt asteroid pummels the Earth, causing widespread pandemonium among the elements. In the debris, Champ X was brutally crushed, forming a large crater. Another element has vanished from the planet forever.
    (01:19:22) ±Universe: Champ X (Mercury) decomposed!
    (01:19:22) ***************************************************************************************
    (01:19:23) Pokemaster131: mucho deaths
    (01:19:25) Key of Destiny: Nice.
    (01:19:26) Frozen Browser joined the channel.
    (01:19:27) Sebastian Hummel: thx pluto
    (01:19:28) ***************************************************************************************
    (01:19:28) ±Game: Nitrogen from Jounoichi forms TNT (trinitrotoluene) and explodes on Roseay! KABOOM!
    (01:19:28) ±Universe: Roseay (Uranium) decomposed!
    (01:19:28) ***************************************************************************************
    (01:19:30) Pokemaster131: nice
    (01:19:32) Key of Destiny: Still nice.
    (01:19:34) Sebastian Hummel: PRs PM Jounoichi
    (01:19:34) GTFAN: sweet
    (01:19:36) MeowMix left the channel.
    (01:19:36) Pokemaster131: i'm liking this
    Some of the next game included due to players' feedback. It was a game with 16 players.
     
  37. Epikhairz

    Epikhairz Delta Stream

    Joined:
    Mar 15, 2013
    Messages:
    929
    Likes Received:
    102
    PO Trainer Name:
    Epikhairz
    Log with new system. Adding part of next game cuz comments:
    (21:44:43) ***************************************************************************************
    (21:44:43) ±Game: RiceKirby started a game with theme Juggernaut!
    (21:44:43) ±Game: Type /Join to enter the game!
    (21:44:43) ***************************************************************************************

    A Juggernaut-themed mafia game is starting, Epikhairz0603!
    (21:44:43) ±Game: For years, the Juggernaut has ruled the village with an iron fist, but as the population dwindled, a violent war between the Juggernaut and the Gunners began. The one to kill the Juggernaut becomes his successor! If the Juggernaut is lynched, it will rampage and take Hostages, so Gunners will need to work together to take them down! If you have any suggestions, PM Epikhairz0603.
    (21:44:45) ±Game: RiceKirby joined the game!
    (21:44:45) ±Game: Molten Bowser joined the game!
    (21:44:46) Alula the Rose: that makes sense
    (21:44:47) ±Game: McStarley joined the game!
    (21:44:47) ±Game: Roseay joined the game!
    (21:44:47) ±Game: Sebastian Hummel joined the game!
    (21:44:47) ±Game: Alula the Rose joined the game!
    (21:44:47) ±Game: Epikhairz0603 joined the game!
    (21:44:48) Epikhairz0603: YES
    (21:44:50) Sebastian Hummel: trying this out
    (21:44:50) ±Game: Skitty33 joined the game!
    (21:44:53) ±Game: Jounoichi joined the game!
    (21:44:54) Skitty33: jugger is cool
    (21:44:55) Roseay: connected all the dragons
    (21:45:02) Skitty33: roseay carried xd
    (21:45:03) RiceKirby: To reveal or to not reveal the Juggernaut?
    (21:45:03) ±Game: Champ X joined the game!
    (21:45:04) RiceKirby: !
    (21:45:07) ±Game: Always Mafia joined the game!
    (21:45:07) Sebastian Hummel: GAIZ whats ajugernot?
    (21:45:09) Molten Bowser: no
    (21:45:10) Sebastian Hummel: idk

    (21:45:12) ±Game: Hurry up, you only have 30 seconds more to join!

    (21:45:16) Sebastian Hummel: never played this theme b4 :(((
    (21:45:18) Roseay: >jugernot
    (21:45:21) Always Mafia: Mafia here
    (21:45:23) Alula the Rose: so 1 game. caddy killed endymion who was juggernaut. i killed caddy and became jugger, and then someone killed me and became jugger
    (21:45:23) Epikhairz0603: JuggerNOT :P
    (21:45:25) McStarley: rand fest
    (21:45:26) Alula the Rose: all in one night
    (21:45:27) ±Game: Sebastian Hummel unjoined the game!
    (21:45:28) ±Game: Sebastian Hummel joined the game!
    (21:45:29) ±Game: caddy joined the game!
    (21:45:30) ±Game: Steve Johns joined the game!
    (21:45:34) Sebastian Hummel: are there multiple spawns now?
    (21:45:39) Roseay: One game 5 juggers died
    (21:45:42) ***************************************************************************************
    (21:45:42) Times Up! :
    (21:45:42) The Roles have been Decided! :
    (21:45:42) ±Game: You are a Gunner!
    (21:45:42) ±Game: As a Gunner, you are fed up with the totalitarian rule of the Juggernaut and get to /kill [name] once per night in an attempt to kill the Juggernaut. If you manage to kill the Juggernaut, you will become the new Juggernaut! Gunners are immune to crossfire, so shoot away!
    (21:45:42) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (21:45:42) Current Players: Alula the Rose, Always Mafia, Champ X, Epikhairz0603, Jounoichi, McStarley, Molten Bowser, RiceKirby, Roseay, Sebastian Hummel, Skitty33, Steve Johns, caddy.
    (21:45:42) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (21:45:42) Time: Night 1
    (21:45:42) Make your moves, you only have 30 seconds! :
    (21:45:42) ***************************************************************************************
    (21:45:43) Alula the Rose: nice
    (21:45:47) caddy: hi alula
    (21:45:48) ±Game: You have chosen to kill Steve Johns!
    (21:45:51) Alula the Rose: Hi caddy
    (21:45:52) Alula the Rose: :3
    (21:45:56) Skitty33: whats happens if two people shoot jugga at once?
    (21:46:00) Alula the Rose: idk
    (21:46:02) RiceKirby: Only 1 will get it
    (21:46:09) Alula the Rose: that sucks
    (21:46:10) Champ X: >_>
    (21:46:12) ***************************************************************************************
    (21:46:12) Times Up! :
    (21:46:12) Game: caddy (Gunner) was killed!
    (21:46:12) ±Game: Your target (Steve Johns) evaded your kill!
    (21:46:12) ***************************************************************************************
    (21:46:12) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (21:46:12) Current Players: Alula the Rose, Always Mafia, Champ X, Epikhairz0603, Jounoichi, McStarley, Molten Bowser, RiceKirby, Roseay, Sebastian Hummel, Skitty33, Steve Johns.
    (21:46:12) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (21:46:12) Time: Day 1
    (21:46:12) You have 15 seconds to debate who are the bad guys! :
    (21:46:12) ***************************************************************************************
    (21:46:12) Always Mafia: I will shoot no one
    (21:46:16) McStarley: the one with prio gets jugg then slower will kill the new jugg
    (21:46:17) Epikhairz0603: Steve Johns clean
    (21:46:18) IP 109.237.239.232 is being overactive.
    (21:46:19) Champ X: kk Alula clean
    (21:46:25) RiceKirby: Jounoichi clean
    (21:46:25) Alula the Rose: lol champ
    (21:46:27) ***************************************************************************************
    (21:46:27) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (21:46:27) Current Players: Alula the Rose, Always Mafia, Champ X, Epikhairz0603, Jounoichi, McStarley, Molten Bowser, RiceKirby, Roseay, Sebastian Hummel, Skitty33, Steve Johns.
    (21:46:27) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (21:46:27) Time: Day 1
    (21:46:27) It's time to vote someone off, type /Vote [name], you only have 30 seconds! :
    (21:46:27) ***************************************************************************************
    (21:46:27) Roseay: Molten is clean
    (21:46:31) Alula the Rose: skitty is clean
    (21:46:31) RiceKirby: BRB fake revealing someone
    (21:46:33) Alula the Rose: btw
    (21:46:34) Skitty33: mcstarley is clean :3
    (21:46:35) Jounoichi: rice tried to killme
    (21:46:37) Jounoichi: lol
    (21:46:39) McStarley: we vote now?
    (21:46:41) Champ X: :o
    (21:46:43) ±Game: RiceKirby voted for Roseay!
    (21:46:44) Skitty33: i spose
    (21:46:44) RiceKirby: Yes
    (21:46:44) ±Game: McStarley voted for Roseay!
    (21:46:47) ±Game: Sebastian Hummel voted for Roseay!
    (21:46:47) Roseay: I'm a gunner.
    (21:46:48) Roseay: :/
    (21:46:49) ±Game: Champ X voted for Roseay!
    (21:46:51) Champ X: :/
    (21:46:52) ±Game: Steve Johns voted for Roseay!
    (21:46:52) Roseay: Vote out the girl .-..
    (21:46:55) Champ X: Rand it
    (21:46:56) Alula the Rose: seb, and rosea, and rice are not clean
    (21:46:56) Roseay: How nice.
    (21:46:59) ***************************************************************************************
    (21:46:59) Times Up! :
    (21:46:59) ±Game: Roseay (Gunner) was removed from the game!
    (21:46:59) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (21:46:59) Current Players: Alula the Rose, Always Mafia, Champ X, Epikhairz0603, Jounoichi, McStarley, Molten Bowser, RiceKirby, Sebastian Hummel, Skitty33, Steve Johns.
    (21:46:59) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (21:46:59) Time: Night 2
    (21:46:59) Make your moves, you only have 30 seconds! :
    (21:46:59) ***************************************************************************************
    (21:46:59) Sebastian Hummel: if Roseay is, they cleaned Molten Bowser
    (21:47:00) Alula the Rose: i think
    (21:47:02) Skitty33: naww
    (21:47:04) RiceKirby: Sowwie
    (21:47:05) Sebastian Hummel: I cleaned Molten
    (21:47:07) ±CommandBot: The command shoot doesn't exist
    (21:47:09) Alula the Rose: oh
    (21:47:10) Sebastian Hummel: but didn't need to say it
    (21:47:10) ±Game: You have chosen to kill Sebastian Hummel!
    (21:47:16) Alula the Rose: sorry i was trying to keep track
    (21:47:19) Molten Bowser: woah
    (21:47:20) Steve Johns: now this theme is a cool theme
    (21:47:21) Always Mafia: Hmm
    (21:47:22) Epikhairz0603: LOL I keep doing /shoot and forgetting its now /kill
    (21:47:25) Molten Bowser: i dont want to be cleaned
    (21:47:25) Champ X: ^
    (21:47:28) ***************************************************************************************
    (21:47:29) Times Up! :
    (21:47:29) Game: Sebastian Hummel (Gunner) was killed!
    (21:47:29) ±Game: The Juggernaut keeps going!
    (21:47:29) ***************************************************************************************
    (21:47:29) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (21:47:29) Current Players: Alula the Rose, Always Mafia, Champ X, Epikhairz0603, Jounoichi, McStarley, Molten Bowser, RiceKirby, Skitty33, Steve Johns.
    (21:47:29) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (21:47:29) Time: Day 2
    (21:47:29) You have 15 seconds to debate who are the bad guys! :
    (21:47:29) ***************************************************************************************
    (21:47:36) Champ X: kk, Skitty clean
    (21:47:36) Epikhairz0603: My /kill died :/
    (21:47:37) RiceKirby: Always Mafia is Juggernaut
    (21:47:44) ***************************************************************************************
    (21:47:44) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (21:47:44) Current Players: Alula the Rose, Always Mafia, Champ X, Epikhairz0603, Jounoichi, McStarley, Molten Bowser, RiceKirby, Skitty33, Steve Johns.
    (21:47:44) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (21:47:44) Time: Day 2
    (21:47:44) It's time to vote someone off, type /Vote [name], you only have 30 seconds! :
    (21:47:44) ***************************************************************************************
    (21:47:47) Alula the Rose: epi is not the juggernaut
    (21:47:47) ±Game: Epikhairz0603 voted for Always Mafia!
    (21:47:48) ±Game: RiceKirby voted for Always Mafia!
    (21:47:51) ±Game: Champ X voted for Always Mafia!
    (21:47:51) ±Game: Alula the Rose voted for Always Mafia!
    (21:47:53) ±Game: Skitty33 voted for Always Mafia!
    (21:47:53) Epikhairz0603: Enrage time!!!
    (21:47:54) Always Mafia: I am mafia??
    (21:47:56) Champ X: XD
    (21:47:58) Skitty33: nearly miss tabbed xd
    (21:47:59) RiceKirby: Bwahaha, I lied!
    (21:48:02) Alula the Rose: oh
    (21:48:03) McStarley: what happens if jugg gets voted out
    (21:48:05) Alula the Rose: its rice
    (21:48:06) Epikhairz0603: ...
    (21:48:08) Champ X: Enrage
    (21:48:09) RiceKirby: lolno
    (21:48:14) ***************************************************************************************
    (21:48:14) Times Up! :
    (21:48:14) ±Game: The Juggernaut goes mad! How to stop them now?
    (21:48:14) Current Roles: Enraged Juggernaut, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner.
    (21:48:14) Current Players: Alula the Rose, Always Mafia, Champ X, Epikhairz0603, Jounoichi, McStarley, Molten Bowser, RiceKirby, Skitty33, Steve Johns.
    (21:48:14) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (21:48:14) Time: Night 3
    (21:48:14) Make your moves, you only have 30 seconds! :
    (21:48:14) ***************************************************************************************
    (21:48:16) RiceKirby: Since we are testing
    (21:48:19) Epikhairz0603: shieeeeet
    (21:48:19) Champ X: :o
    (21:48:20) Alula the Rose: oh always is mafia
    (21:48:21) RiceKirby: Get a hostage
    (21:48:21) ±Game: You have chosen to kill Always Mafia!
    (21:48:34) Epikhairz0603: get 2 hostages if u want
    (21:48:38) RiceKirby: !
    (21:48:39) Alula the Rose: take m
    (21:48:41) Steve Johns: !!
    (21:48:41) Alula the Rose: e
    (21:48:43) Molten Bowser: take me
    (21:48:44) ***************************************************************************************
    (21:48:44) Times Up! :
    (21:48:44) Game: Champ X (Gunner) was killed!
    (21:48:44) ±Game: A Gunner was taken as a hostage by the Juggernaut!
    (21:48:44) ±Game: Your target (Always Mafia) evaded your kill!
    (21:48:44) ***************************************************************************************
    (21:48:44) Current Roles: Enraged Juggernaut, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Hostage.
    (21:48:44) Current Players: Alula the Rose, Always Mafia, Epikhairz0603, Jounoichi, McStarley, Molten Bowser, RiceKirby, Skitty33, Steve Johns.
    (21:48:44) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (21:48:44) Time: Day 3
    (21:48:44) You have 15 seconds to debate who are the bad guys! :
    (21:48:44) ***************************************************************************************
    (21:48:45) Alula the Rose: !! :D
    (21:48:50) Alula the Rose: Damn it
    (21:48:52) Epikhairz0603: Someone's hostageeee
    (21:48:56) RiceKirby: Ok, I have an idea
    (21:48:59) ***************************************************************************************
    (21:48:59) Current Roles: Enraged Juggernaut, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Hostage.
    (21:48:59) Current Players: Alula the Rose, Always Mafia, Epikhairz0603, Jounoichi, McStarley, Molten Bowser, RiceKirby, Skitty33, Steve Johns.
    (21:48:59) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (21:48:59) Time: Day 3
    (21:48:59) It's time to vote someone off, type /Vote [name], you only have 30 seconds! :
    (21:48:59) ***************************************************************************************
    (21:49:00) Alula the Rose: its not me -pout-
    (21:49:02) RiceKirby: Let's not vote Juggernaut
    (21:49:08) ±Game: Steve Johns voted for Skitty33!
    (21:49:09) McStarley: whynaut
    (21:49:11) Steve Johns: She is hostage
    (21:49:11) ±Game: Molten Bowser voted for Always Mafia!
    (21:49:12) Alula the Rose: skitty is gunne
    (21:49:12) Skitty33: arent we supposed to again and hes out?
    (21:49:13) ±Game: McStarley voted for Skitty33!
    (21:49:14) Alula the Rose: *gunner
    (21:49:15) ±Game: Skitty33 voted for Always Mafia!
    (21:49:18) ±Game: RiceKirby voted for Always Mafia!
    (21:49:19) ±Game: Alula the Rose voted for Always Mafia!
    (21:49:24) Epikhairz0603: not even going to vote
    (21:49:24) Steve Johns: He evaded my kill
    (21:49:25) RiceKirby: Always Mafia, vote your hostage
    (21:49:29) ***************************************************************************************
    (21:49:29) Times Up! :
    (21:49:29) ±Game: Always Mafia (Enraged Juggernaut) was removed from the game!
    (21:49:29) ±Game: The Gunners (RiceKirby, Molten Bowser, McStarley, Alula the Rose, Epikhairz0603, Skitty33, Jounoichi and Steve Johns) wins!
    (21:49:29) ***************************************************************************************

    (21:49:31) ***************************************************************************************
    (21:49:31) ±Game: Haris Dragneel started a game with theme Pokemon!
    (21:49:31) ±Game: Type /Join to enter the game!
    (21:49:31) ***************************************************************************************

    A Pokemon-themed mafia game is starting, Epikhairz0603!
    (21:49:31) ±Game: A legendary battle commences, as the legends are forced to defend themselves from Sky Peak for the good of their world! From the mysterious Unown, to the small yet vengeful Little Bugs, to even the illusionary forces of Zoroark, they will have to work together above all else or lose their hold on the world of Pokemon... (Updates: Suicune is buffed in high numbers, with a second protect every other turn and a one-use unbreakable protect. Zoroark cannot be daykilled, how fun~! (Arceus still can, so as not to overpower it in the face of Magikarp.) Finally, N's Pokemon will not always appear, sometimes a Sky Shaymin will replace them.)
    (21:49:32) ±Game: Molten Bowser joined the game!
    (21:49:32) Skitty33: done
    (21:49:33) Jounoichi: :)
    (21:49:34) ±Game: Steve Johns joined the game!
    (21:49:35) Sebastian Hummel: Can't the Juggernaut just always get a hostage, vote them once to escape a lynch, and then win with 95% evasion?
    (21:49:35) Alula the Rose: steve skitty evaded
    (21:49:36) ±Game: Haris Dragneel joined the game!
    (21:49:36) ±Game: Jounoichi joined the game!
    (21:49:36) RiceKirby: Ugh
    (21:49:37) ±Game: Frozen Bowser joined the game!
    (21:49:37) Epikhairz0603: Always Mafia, you need to vote your hostage to win...
    (21:49:38) Alula the Rose: because gunner
    (21:49:38) ±Game: McStarley joined the game!
    (21:49:39) ±Game: Skitty33 joined the game!
    (21:49:39) ±Game: Sebastian Hummel joined the game!
    (21:49:41) ±Game: Always Mafia joined the game!
    (21:49:42) ±Game: Alula the Rose joined the game!
    (21:49:43) ±Game: Killjoy_Mario joined the game!
    (21:49:43) Always Mafia: ohhhh
    (21:49:45) Killjoy_Mario: :D
    (21:49:48) RiceKirby: Hostages are limited, Sebastian Hummel
    (21:49:49) Sebastian Hummel: RiceKirby, seems pretty broken
    (21:49:49) Haris Dragneel: Arceus pls
    (21:49:51) Epikhairz0603: Sebastian Hummel, once the hostages are gone, lynch them
    (21:49:51) ±Game: Roseay joined the game!
    (21:49:51) ±Game: caddy joined the game!
    (21:49:52) ±Game: Molten Bowser unjoined the game!
    (21:49:53) Sebastian Hummel: charges
    (21:49:54) Steve Johns: But Always Mafiso evaded my kill.
    (21:49:57) RiceKirby: ALso, Gunners can kill hostages
    (21:49:57) Sebastian Hummel: but by then, -5 kills?
    (21:49:58) Always Mafia: this has changed since i last played it
    (21:49:58) Roseay: Vamola mucho!
    (21:50:00) Epikhairz0603: Sebastian Hummel, 4 charges

    (21:50:00) ±Game: Hurry up, you only have 30 seconds more to join!

    (21:50:03) ±Game: ngcmaster joined the game!
    (21:50:03) Epikhairz0603: for hostage
    (21:50:05) ±Game: ngcmaster unjoined the game!
    (21:50:05) Alula the Rose: idk then
    (21:50:06) Roseay: Kyooooruger!
    (21:50:06) ±Game: Epikhairz0603 joined the game!
    (21:50:06) ±Game: ngcmaster joined the game!
    (21:50:07) Sebastian Hummel: yeah, but do the kills increase?
    (21:50:08) ngcmaster: xD
    (21:50:16) Jounoichi: v
    (21:50:16) ngcmaster: yes for juggernaut
    (21:50:16) ±Game: RiceKirby joined the game!
    (21:50:17) ±Game: Champ X joined the game!
    (21:50:19) Frozen Bowser: i never get shaymin
    (21:50:20) ngcmaster: it becomes 2
    (21:50:20) RiceKirby: BTW, I was the Hostage
    (21:50:22) Always Mafia: 2 kills
    (21:50:23) Epikhairz0603: LOL
    (21:50:25) Always Mafia: a night
    (21:50:25) Sebastian Hummel: that's 8 kills before you can do anything
    (21:50:26) Haris Dragneel: inb4 being shaymin
    (21:50:27) Steve Johns: Arceusaso here
    (21:50:28) ±Game: Incognito Bowser joined the game!
    (21:50:28) ngcmaster: yup
    (21:50:28) Roseay: Kamen rider Wizard!
    (21:50:28) Roseay: :D
    (21:50:31) ***************************************************************************************
    (21:50:31) Times Up! :
    (21:50:31) The Roles have been Decided! :
    (21:50:31) ±Game: You are a Suicune!
    (21:50:31) ±Game: You are Suicune, beautiful cat of the aurora! Being a defensive wall, you can /protect others from attack.
    (21:50:31) Current Roles: Arceus, Articuno, Eevee, Genesect, Joltik, Meloetta, Mewtwo, Shaymin, Shaymin, Shaymin, Shaymin, Shedinja, Suicune, Tornadus, Unown, Unown, Wurmple.
    (21:50:31) Current Players: Alula the Rose, Always Mafia, Champ X, Epikhairz0603, Frozen Bowser, Haris Dragneel, Incognito Bowser, Jounoichi, Killjoy_Mario, McStarley, RiceKirby, Roseay, Sebastian Hummel, Skitty33, Steve Johns, caddy, ngcmaster.
    (21:50:31) Current Team: Arceus, Articuno, Genesect, Meloetta, Mewtwo, Shaymin, Shaymin, Shaymin, Shaymin, Suicune, Tornadus
    (21:50:31) Time: Night 1
    (21:50:31) Make your moves, you only have 30 seconds! :
    (21:50:31) ***************************************************************************************
    (21:50:32) Steve Johns: prsi pm mo
    (21:50:33) Sebastian Hummel: 4 kills at night, 4 hostages lynched
    (21:50:33) ngcmaster: 2 kill + hostage
    (21:50:34) RiceKirby: If someone had killed me at that same night, Juggernaut would be defenseless
    (21:50:35) Skitty33: so many bowsers
    (21:50:36) Haris Dragneel: duh
    (21:50:40) Always Mafia: 4 hostages
    (21:50:42) Champ X: Shaymin here
    (21:50:42) Jounoichi: fk my role
    (21:50:42) Haris Dragneel: really shitmin
    (21:50:43) Champ X: -_-
    (21:50:46) Sebastian Hummel: 8 people gone before a chance to remove it :/
    (21:50:48) RiceKirby: Yes, we will need to tweak the numbers[/HIDE]

    OK, for strategy, when you take a Gunner hostage, you will want to vote them when you're getting lynched cuz their +50 voteshield will ensure they get lynched and you stay safe. Twice, an Enraged Juggernaut did not vote their hostages and lost.
     
  38. Slowkii

    Slowkii Banned

    Joined:
    Jan 28, 2013
    Messages:
    603
    Likes Received:
    0
    More logs:

    (18:09:15) ***************************************************************************************
    (18:09:15) Times Up! :
    (18:09:15) The Roles have been Decided! :
    (18:09:15) ±Game: You are a Gunner!
    (18:09:15) ±Game: As a Gunner, you are fed up with the totalitarian rule of the Juggernaut and get to /kill [name] once per night in an attempt to kill the Juggernaut. If you manage to kill the Juggernaut, you will become the new Juggernaut! Gunners are immune to crossfire, so shoot away!
    (18:09:15) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (18:09:15) Current Players: Bacebubs., Endymion, Flashfrost, Gasai, Jimmy T., Lickitung, Magicognito, Meh, Nainil, Roild, ScorchedSwords, packy.
    (18:09:15) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (18:09:15) Time: Night 1
    (18:09:15) Make your moves, you only have 30 seconds! :
    (18:09:15) ***************************************************************************************
    (18:09:16) packy: i doubt that
    (18:09:18) Lickitung: They should be if its updated
    (18:09:23) ±Game: You have chosen to kill Gasai!
    (18:09:25) Roild: BRB, dying n1. (Hint: Kill me n1)
    (18:09:27) Bacebubs.: Shooting meh
    (18:09:34) Meh: why ;-;
    (18:09:39) Jimmy T.: Killing Gasai
    (18:09:40) Lickitung: Dm
    (18:09:42) packy: if anything the juggernaut is more OP now
    (18:09:45) ***************************************************************************************
    (18:09:45) Times Up! :
    (18:09:45) Game: Magicognito (Gunner) was killed!
    (18:09:45) ±Game: Your target (Gasai) evaded your kill!
    (18:09:45) ***************************************************************************************
    (18:09:45) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (18:09:45) Current Players: Bacebubs., Endymion, Flashfrost, Gasai, Jimmy T., Lickitung, Meh, Nainil, Roild, ScorchedSwords, packy.
    (18:09:45) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (18:09:45) Time: Day 1
    (18:09:45) You have 15 seconds to debate who are the bad guys! :
    (18:09:45) ***************************************************************************************
    (18:09:46) Meh: also I thought it was shoot
    (18:09:47) Lickitung: Can't xfire
    (18:09:47) packy: if he gets lynched
    (18:09:50) Lickitung: gasai clean
    (18:09:50) Flashfrost: bace is jugg
    (18:09:51) ScorchedSwords: there can't be xfire right?
    (18:09:52) Roild: aw
    (18:09:53) Roild: I didn't die.
    (18:09:57) Flashfrost: i fired at Bacebubs. and he was bgd
    (18:09:58) Bacebubs.: couldn't shoot meh
    (18:09:59) ScorchedSwords: packy is gunner
    (18:10:00) ***************************************************************************************
    (18:10:00) Current Roles: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Juggernaut.
    (18:10:00) Current Players: Bacebubs., Endymion, Flashfrost, Gasai, Jimmy T., Lickitung, Meh, Nainil, Roild, ScorchedSwords, packy.
    (18:10:00) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (18:10:00) Time: Day 1
    (18:10:00) It's time to vote someone off, type /Vote [name], you only have 30 seconds! :
    (18:10:00) ***************************************************************************************
    (18:10:02) Lickitung: Gasai is clean guys
    (18:10:02) Meh: you don't say
    (18:10:03) packy: im juggernaut
    (18:10:04) Roild: Oh, voting
    (18:10:05) ±Game: packy voted for Meh!
    (18:10:05) ±Game: That person is not playing!
    (18:10:06) ±Game: Flashfrost voted for Bacebubs.!
    (18:10:07) Meh: flashfrost is clean as well '-'
    (18:10:08) packy: he i jugger
    (18:10:09) ±Game: That person is not playing!
    (18:10:09) Nainil: Endymion is clean
    (18:10:09) Flashfrost: follow me
    (18:10:10) ±Game: Bacebubs. voted for Flashfrost!
    (18:10:11) ±Game: Lickitung voted for Bacebubs.!
    (18:10:13) ±Game: Roild voted for Meh!
    (18:10:15) Bacebubs.: Flashfrost is making shit up
    (18:10:15) Meh: wth
    (18:10:16) ±Game: Nainil voted for Bacebubs.!
    (18:10:16) Flashfrost: vote BACE
    (18:10:19) Bacebubs.: Why vote meh?
    (18:10:19) ±Game: Gasai voted for Bacebubs.!
    (18:10:22) Roild: Mehhhh!
    (18:10:23) Bacebubs.: I cleahed meh.
    (18:10:23) ±Game: Jimmy T. voted for Bacebubs.!
    (18:10:25) Bacebubs.: ...
    (18:10:28) Meh: .-.
    (18:10:30) packy: it was meh
    (18:10:31) ***************************************************************************************
    (18:10:31) Times Up! :
    (18:10:31) ±Game: The Juggernaut goes mad! How to stop them now?
    (18:10:31) Current Roles: Enraged Juggernaut, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner.
    (18:10:31) Current Players: Bacebubs., Endymion, Flashfrost, Gasai, Jimmy T., Lickitung, Meh, Nainil, Roild, ScorchedSwords, packy.
    (18:10:31) Current Team: Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner, Gunner
    (18:10:31) Time: Night 2
    (18:10:31) Make your moves, you only have 30 seconds! :
    (18:10:31) ***************************************************************************************
    (18:10:34) ScorchedSwords: lmao
    (18:10:35) packy: oh look
    (18:10:36) Meh: lmao
    (18:10:36) Roild: Roflwat
    (18:10:37) Meh: hahaha
    (18:10:40) ±Game: You have chosen to kill Bacebubs.!
    (18:10:40) Flashfrost: told ya lolol
    (18:10:41) Roild: I don't get it
    (18:10:42) *** *********************************************************************** ***
    (18:10:42) ±Role: Enraged Juggernaut
    (18:10:42) ±Ability: Can kill 2 persons during the night. Can convert a Gunner into a Hostage (4 charges). Has a 95% chance of evading kills. Sided with Juggernaut.
    (18:10:42) ±Game: Players
    (18:10:42) *** *********************************************************************** ***
    (18:10:42) ±Role: Gunner
    (18:10:42) ±Ability: Can kill 1 person during the night. Can't kill other Gunners. Become the Juggernaut if it kills the Juggernaut. Sided with Gunners.
    (18:10:42) ±Game: 2-30 Players
    (18:10:42) *** *********************************************************************** ***
    (18:10:42) ±Role: Hostage
    (18:10:42) ±Ability: Lynched with any vote. Can escape and become a Gunner again (20% chance). Sided with Hostages, can win with anyone.
    (18:10:42) ±Game: Players
    (18:10:42) *** *********************************************************************** ***
    (18:10:42) ±Role: Juggernaut
    (18:10:42) ±Ability: Can kill 1 person during the night. Can kill more persons as nights passes. Can self protect with a chance of failing. Becomes enraged if lynched. Sided with Juggernaut.
    (18:10:42) ±Game: 1-30 Players
    (18:10:42) *** *********************************************************************** ***
    (18:10:43) Nainil: roflmao
    (18:10:43) Flashfrost: i are smart
    (18:10:48) Flashfrost: even though i helped bace
    (18:10:56) Flashfrost: not killing him
    (18:10:58) ScorchedSwords: so, is he unlynchable?
    (18:10:59) Lickitung: everyone aim at him
    (18:11:01) ***************************************************************************************
    (18:11:01) Times Up! :
    (18:11:01) Game: Gasai (Gunner) was killed!
    (18:11:01) ±Game: A Gunner was taken as a hostage by the Juggernaut!
    (18:11:01) ±Game: You have been converted and changed roles!
    (18:11:01) ±Game: You are a Hostage!
    (18:11:01) ±Game: You have been taken as a hostage by the Juggernaut! You will die if you receive any vote, but you can become a gunner again by typing /escape [yourname] during the night (20% chance of working). As a hostage, you can win both with the Juggernaut or the Gunners!
    (18:11:01) Game: Bacebubs. (Enraged Juggernaut) was killed!
    (18:11:01) ±Game: The Gunners (Lickitung, packy, Meh, Jimmy T., Flashfrost, Endymion, ScorchedSwords, Roild and Nainil) wins!
    (18:11:01) ***************************************************************************************[/HIDE]


    Dislike this new way, I prefered the last man standing thing. Its fun for a non peak, maybe an installation of With hostages for peak and without for Non Peak? Idk...
     
  39. Epikhairz

    Epikhairz Delta Stream

    Joined:
    Mar 15, 2013
    Messages:
    929
    Likes Received:
    102
    PO Trainer Name:
    Epikhairz
    The theme looks a lot better in terms of strategy IMO. In fact, I have a whole section on strategy edited into my original post, so go check that out. If you love the old fashioned Juggernaut better, just agree to disregard the lynch altogether and the theme will be basically the exact same as before.
     
  40. Slowkii

    Slowkii Banned

    Joined:
    Jan 28, 2013
    Messages:
    603
    Likes Received:
    0
    Thats what I mean :P

    I say there should be 2 themes, one with lynch, as a peak, one with no lynch, as a non peak.
     
Thread Status:
Not open for further replies.