Neverland

Discussion in 'Review' started by ThePiggy, Mar 15, 2013.

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

    ThePiggy New Member

    Joined:
    Mar 6, 2013
    Messages:
    21
    Likes Received:
    0
    PO Trainer Name:
    ThePiggy
    So... this is my first attempt at a theme. I was inspired to make a theme that was different than any I've seen so far, and this is what I came up with.

    Think of it like a cross between capture the flag and jailbreak. It's based on Neverland/Peter Pan, obviously. Captain Hook and Peter Pan are fighting over Tiger Lily. No voting, teams capture each other to try to get Tiger Lily and to eliminate the other team. Teams also rescue the people they believe are on their team. Any hostage is in danger of being executed during the day by Hook or Pan. If one of them should happen to kill Tiger Lily by accident, their team loses automatically. A team wins when they have Tiger Lily and the other team is eliminated.

    I'm not sure what else to say about it at the moment, let me know what you think!

    Pastebin:
    http://pastebin.com/raw.php?i=HdLvW1bb[/HIDE]

    Code:
    Code (text):
    1. {
    2.     "name": "Neverland",
    3.     "author": [
    4.         "ThePiggy",
    5.         "vitamin"
    6.     ],
    7.     "summary": "Tiger Lily is being hunted by Captain Hook and his crew. Eliminate your enemy and capture Tiger Lily. Don't kill Tiger Lily or you will lose! (Peter Pan and Captain Hook should claim to connect their teams and organize an attack if they hope for victory!) Role Tutorials: http://pastebin.com/raw.php?i=d9BNxHBa",
    8.     "border": "***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***",
    9.     "killusermsg": "You have been executed!",
    10.     "minplayers": 7,
    11.     "nolynch": true,
    12.     "ticks": {
    13.         "night": 25,
    14.         "standby": 20
    15.     },
    16.     "sides": [
    17.         {
    18.             "side": "lost boy",
    19.             "translation": "Lost Boys",
    20.             "winmsg": "±Game: The Lost Boys, ~Players~, survived to play another day!"
    21.         },
    22.         {
    23.             "side": "pirate",
    24.             "translation": "Pirates",
    25.             "winmsg": "±Game: The crew of the Jolly Roger, ~Players~, have emerged from battle victorious!"
    26.         }
    27.     ],
    28.     "roles": [
    29.         {
    30.             "role": "pan",
    31.             "translation": "Peter Pan",
    32.             "side": "lost boy",
    33.             "help": "You are the leader of the Lost Boys and cannot be captured. Connect with your team to organize Tiger Lily's rescue and defeat the Pirates. You can /kill a captive during the day. Keep Tiger Lily safe at all costs!",
    34.             "info": "Leader of the Lost Boys. He can /kill captives by day.",
    35.             "actions": {
    36.                 "standby": {
    37.                     "kill": {
    38.                         "target": "AnyButSelf",
    39.                         "msg": "±Game: You may /kill a captive now.",
    40.                         "killmsg": "Peter Pan has decided to kill a hostage! ~Target~ has been executed!"
    41.                     }
    42.                 },
    43.                 "daykill": {
    44.                     "mode": {
    45.                         "evadeChance": 1,
    46.                         "silent": true
    47.                     }
    48.                 },
    49.                 "onDeath": {
    50.                     "killRoles": [
    51.                         "tink",
    52.                         "boy"
    53.                     ],
    54.                     "killmsg": "The Indian tribe killed ~Target~ out of anger!"
    55.                 }
    56.             },
    57.             "winIfDeadRoles": [
    58.                 "smee",
    59.                 "crew",
    60.                 "hostagetiger",
    61.                 "tiger2"
    62.             ]
    63.         },
    64.         {
    65.             "role": "tink",
    66.             "translation": "Tinkerbell",
    67.             "side": "lost boy",
    68.             "help": "You can /guard someone to avoid capture; guard Free Tiger Lily to keep her safe from Pirates. /capture back your captive team mates to rescue them. Capture the enemy to eliminate them. Connect with your leader for your orders.",
    69.             "info": "Guardian of the Lost Boys. She can /guard or /capture someone each night.",
    70.             "actions": {
    71.                 "initialCondition": {
    72.                     "clearPoison": true
    73.                 },
    74.                 "night": {
    75.                     "guard": {
    76.                         "command": "safeguard",
    77.                         "target": "Any",
    78.                         "common": "Self",
    79.                         "priority": 1,
    80.                         "restrict": [
    81.                             "capture"
    82.                         ]
    83.                     },
    84.                     "capture": {
    85.                         "command": [
    86.                             "convert",
    87.                             "safeguard"
    88.                         ],
    89.                         "target": "AnyButSelf",
    90.                         "common": "Self",
    91.                         "priority": 7,
    92.                         "newRole": {
    93.                             "hostagesmee": [
    94.                                 "smee"
    95.                             ],
    96.                             "hostagecrew": [
    97.                                 "crew"
    98.                             ],
    99.                             "tiger2": [
    100.                                 "hostagetiger"
    101.                             ],
    102.                             "hostageboy": [
    103.                                 "boy"
    104.                             ],
    105.                             "boy": [
    106.                                 "hostageboy"
    107.                             ],
    108.                             "smee": [
    109.                                 "hostagesmee"
    110.                             ],
    111.                             "crew": [
    112.                                 "hostagecrew"
    113.                             ]
    114.                         },
    115.                         "canConvert": [
    116.                             "smee",
    117.                             "crew",
    118.                             "tiger",
    119.                             "boy",
    120.                             "hostagesmee",
    121.                             "hostagecrew",
    122.                             "hostagetiger",
    123.                             "hostageboy"
    124.                         ],
    125.                         "convertmsg": "~Old~ has become a ~New~!",
    126.                         "restrict": [
    127.                             "guard"
    128.                         ]
    129.                     }
    130.                 },
    131.                 "daykill": {
    132.                     "mode": {
    133.                         "evadeChance": 1,
    134.                         "silent": true
    135.                     }
    136.                 }
    137.             }
    138.         },
    139.         {
    140.             "role": "boy",
    141.             "translation": "Lost Boy",
    142.             "side": "lost boy",
    143.             "help": "Help Peter Pan rescue Tiger Lily and your captive team mates with /capture at night. Capture the pirate crew to get rid of them. Connect with your leader for your orders.",
    144.             "info": "One of the lost boys. He can /capture people at night.",
    145.             "actions": {
    146.                 "initialCondition": {
    147.                     "clearPoison": true
    148.                 },
    149.                 "night": {
    150.                     "capture": {
    151.                         "command": [
    152.                             "convert",
    153.                             "safeguard"
    154.                         ],
    155.                         "target": "AnyButSelf",
    156.                         "common": "Self",
    157.                         "priority": 8,
    158.                         "newRole": {
    159.                             "hostagesmee": [
    160.                                 "smee"
    161.                             ],
    162.                             "hostagecrew": [
    163.                                 "crew"
    164.                             ],
    165.                             "tiger2": [
    166.                                 "hostagetiger"
    167.                             ],
    168.                             "hostagetink": [
    169.                                 "tink"
    170.                             ],
    171.                             "tink": [
    172.                                 "hostagetink"
    173.                             ],
    174.                             "boy": [
    175.                                 "hostageboy"
    176.                             ],
    177.                             "smee": [
    178.                                 "hostagesmee"
    179.                             ],
    180.                             "crew": [
    181.                                 "hostagecrew"
    182.                             ]
    183.                         },
    184.                         "canConvert": [
    185.                             "smee",
    186.                             "crew",
    187.                             "tiger",
    188.                             "tink",
    189.                             "hostagesmee",
    190.                             "hostagecrew",
    191.                             "hostagetiger",
    192.                             "hostagetink",
    193.                             "hostageboy"
    194.                         ],
    195.                         "convertmsg": "~Old~ has become a ~New~!"
    196.                     }
    197.                 },
    198.                 "daykill": {
    199.                     "mode": {
    200.                         "evadeChance": 1,
    201.                         "silent": true
    202.                     }
    203.                 }
    204.             }
    205.         },
    206.         {
    207.             "role": "hook",
    208.             "translation": "Captain Hook",
    209.             "side": "pirate",
    210.             "help": "You are the great Captain Hook and cannot be captured! Connect your team to secure your victory. You can /kill a captive during the day. Be sure not to accidentally kill Tiger Lily!",
    211.             "info": "Captain of the Jolly Roger and her Pirate crew. He can /kill hostages by day.",
    212.             "actions": {
    213.                 "startup": {
    214.                     "revealRole": [
    215.                         "tiger",
    216.                         "tiger2",
    217.                         "hostagetiger"
    218.                     ]
    219.                 },
    220.                 "standby": {
    221.                     "kill": {
    222.                         "target": "AnyButSelf",
    223.                         "msg": "±Game: You may /kill a captive now.",
    224.                         "killmsg": "Captain Hook has decided to kill a hostage! ~Target~ has been executed!"
    225.                     }
    226.                 },
    227.                 "daykill": {
    228.                     "mode": {
    229.                         "evadeChance": 1,
    230.                         "silent": true
    231.                     }
    232.                 },
    233.                 "onDeath": {
    234.                     "killRoles": [
    235.                         "smee",
    236.                         "crew"
    237.                     ],
    238.                     "killmsg": "The Indian tribe killed ~Target~ out of anger!"
    239.                 }
    240.             },
    241.             "winIfDeadRoles": [
    242.                 "tink",
    243.                 "boy",
    244.                 "tiger",
    245.                 "tiger2"
    246.             ]
    247.         },
    248.         {
    249.             "role": "smee",
    250.             "translation": "Smee",
    251.             "side": "pirate",
    252.             "help": "You can /guard someone to avoid capture; guard the Hostage Tiger Lily to keep the Lost Boys from rescuing her. /capture back your captive team mates to rescue them. Capture the enemy to eliminate them. Connect with your captain for orders.",
    253.             "info": "Captain Hook's second in command of the Pirates. He can /guard or /capture people at night.",
    254.             "actions": {
    255.                 "initialCondition": {
    256.                     "clearPoison": true
    257.                 },
    258.                 "night": {
    259.                     "guard": {
    260.                         "command": "safeguard",
    261.                         "target": "Any",
    262.                         "common": "Self",
    263.                         "priority": 2,
    264.                         "restrict": [
    265.                             "capture"
    266.                         ]
    267.                     },
    268.                     "capture": {
    269.                         "command": [
    270.                             "convert",
    271.                             "safeguard"
    272.                         ],
    273.                         "target": "AnyButSelf",
    274.                         "common": "Self",
    275.                         "priority": 5,
    276.                         "newRole": {
    277.                             "hostagecrew": [
    278.                                 "crew"
    279.                             ],
    280.                             "hostagetiger": [
    281.                                 "tiger2"
    282.                             ],
    283.                             "hostagetink": [
    284.                                 "tink"
    285.                             ],
    286.                             "hostageboy": [
    287.                                 "boy"
    288.                             ],
    289.                             "tiger": [
    290.                                 "hostagetiger"
    291.                             ],
    292.                             "tink": [
    293.                                 "hostagetink"
    294.                             ],
    295.                             "boy": [
    296.                                 "hostageboy"
    297.                             ],
    298.                             "crew": [
    299.                                 "hostagecrew"
    300.                             ]
    301.                         },
    302.                         "canConvert": [
    303.                             "crew",
    304.                             "tiger",
    305.                             "tiger2",
    306.                             "tink",
    307.                             "boy",
    308.                             "hostagecrew",
    309.                             "hostagetink",
    310.                             "hostageboy"
    311.                         ],
    312.                         "convertmsg": "~Old~ has become a ~New~!",
    313.                         "restrict": [
    314.                             "guard"
    315.                         ]
    316.                     }
    317.                 },
    318.                 "daykill": {
    319.                     "mode": {
    320.                         "evadeChance": 1,
    321.                         "silent": true
    322.                     }
    323.                 }
    324.             }
    325.         },
    326.         {
    327.             "role": "crew",
    328.             "translation": "Pirate Crewman",
    329.             "side": "pirate",
    330.             "help": "Help Captain Hook /capture Tiger Lily and rescue your fellow crew members from the Lost Boys. Capture the enemy to eliminate them. Connect with your captain for orders.",
    331.             "info": "A crew member of the Jolly Roger. He can /capture people at night.",
    332.             "actions": {
    333.                 "initialCondition": {
    334.                     "clearPoison": true
    335.                 },
    336.                 "night": {
    337.                     "capture": {
    338.                         "command": [
    339.                             "convert",
    340.                             "safeguard"
    341.                         ],
    342.                         "target": "AnyButSelf",
    343.                         "common": "Self",
    344.                         "priority": 6,
    345.                         "newRole": {
    346.                             "hostagesmee": [
    347.                                 "smee"
    348.                             ],
    349.                             "hostagetiger": [
    350.                                 "tiger2"
    351.                             ],
    352.                             "hostagetink": [
    353.                                 "tink"
    354.                             ],
    355.                             "hostageboy": [
    356.                                 "boy"
    357.                             ],
    358.                             "tink": [
    359.                                 "hostagetink"
    360.                             ],
    361.                             "boy": [
    362.                                 "hostageboy"
    363.                             ],
    364.                             "smee": [
    365.                                 "hostagesmee"
    366.                             ],
    367.                             "crew": [
    368.                                 "hostagecrew"
    369.                             ]
    370.                         },
    371.                         "canConvert": [
    372.                             "smee",
    373.                             "tiger",
    374.                             "tiger2",
    375.                             "tink",
    376.                             "boy",
    377.                             "hostagesmee",
    378.                             "hostagecrew",
    379.                             "hostagetink",
    380.                             "hostageboy"
    381.                         ],
    382.                         "convertmsg": "~Old~ has become a ~New~!"
    383.                     }
    384.                 },
    385.                 "daykill": {
    386.                     "mode": {
    387.                         "evadeChance": 1,
    388.                         "silent": true
    389.                     }
    390.                 }
    391.             }
    392.         },
    393.         {
    394.             "role": "tiger",
    395.             "translation": "Hiding Tiger Lily",
    396.             "side": "lost boy",
    397.             "help": "The Pirates are after you! Find Peter Pan and Tinkerbell to help them keep you safe. You can /inspect people to find out who you can trust.",
    398.             "info": "This Indian Princess is sided with the Lost Boys. She may /inspect people at night to find out who she can trust.",
    399.             "actions": {
    400.                 "night": {
    401.                     "inspect": {
    402.                         "target": "AnyButSelf",
    403.                         "common": "Self",
    404.                         "priority": 9
    405.                     }
    406.                 },
    407.                 "daykill": {
    408.                     "mode": {
    409.                         "evadeChance": 1,
    410.                         "silent": true
    411.                     }
    412.                 }
    413.             }
    414.         },
    415.         {
    416.             "role": "tiger2",
    417.             "translation": "Free Tiger Lily",
    418.             "side": "lost boy",
    419.             "help": "The Pirates are after you! Find Peter Pan and Tinkerbell to help them keep you safe. You can /inspect people to find out who you can trust.",
    420.             "info": "This Indian Princess is sided with the Lost Boys. She may /inspect people at night to find out who she can trust.",
    421.             "actions": {
    422.                 "night": {
    423.                     "inspect": {
    424.                         "target": "AnyButSelf",
    425.                         "common": "Self",
    426.                         "priority": 9
    427.                     }
    428.                 }
    429.             }
    430.         },
    431.         {
    432.             "role": "hostagetiger",
    433.             "translation": "Hostage Tiger Lily",
    434.             "side": "lost boy",
    435.             "help": "The Pirates are after you! Find Peter Pan and Tinkerbell to help them keep you safe. You are a hostage, but you may /inspect people for a chance to find out who is friend or foe.",
    436.             "info": "This Indian Princess is sided with the Lost Boys. She is the Pirate's hostage and can /inspect people for a chance to find out who she can trust.",
    437.             "actions": {
    438.                 "night": {
    439.                     "inspect": {
    440.                         "target": "AnyButSelf",
    441.                         "common": "Self",
    442.                         "priority": 9,
    443.                         "failChance": 0.5
    444.                     }
    445.                 },
    446.                 "daykill": "bomb",
    447.                 "daykillrevengemsg": "~Target~ made the mistake of attacking Tiger Lily! The Indian tribe is angered and takes revenge on ~Target~ and his team."
    448.             }
    449.         },
    450.         {
    451.             "role": "hostagetink",
    452.             "translation": "Captive Tinkerbell",
    453.             "side": "lost boy",
    454.             "help": "You are a hostage. You can't do anything.",
    455.             "info": "Hostage.",
    456.             "hide": true,
    457.             "actions": {
    458.                 "initialCondition": {
    459.                     "poison": {
    460.                         "count": 3,
    461.                         "poisonDeadMessage": "You've been killed in the crossfire!"
    462.                     }
    463.                 }
    464.             }
    465.         },
    466.         {
    467.             "role": "hostageboy",
    468.             "translation": "Captive Lost Boy",
    469.             "side": "lost boy",
    470.             "help": "You are a hostage. You can't do anything.",
    471.             "info": "Hostage.",
    472.             "hide": true,
    473.             "actions": {
    474.                 "initialCondition": {
    475.                     "poison": {
    476.                         "count": 3,
    477.                         "poisonDeadMessage": "You've been killed in the crossfire!"
    478.                     }
    479.                 }
    480.             }
    481.         },
    482.         {
    483.             "role": "hostagesmee",
    484.             "translation": "Captive Smee",
    485.             "side": "pirate",
    486.             "help": "You are a hostage. You can't do anything.",
    487.             "info": "Hostage.",
    488.             "hide": true,
    489.             "actions": {
    490.                 "initialCondition": {
    491.                     "poison": {
    492.                         "count": 3,
    493.                         "poisonDeadMessage": "You've been killed in the crossfire!"
    494.                     }
    495.                 }
    496.             }
    497.         },
    498.         {
    499.             "role": "hostagecrew",
    500.             "translation": "Captive Pirate",
    501.             "side": "pirate",
    502.             "help": "You are a hostage. You can't do anything.",
    503.             "info": "Hostage.",
    504.             "hide": true,
    505.             "actions": {
    506.                 "initialCondition": {
    507.                     "poison": {
    508.                         "count": 3,
    509.                         "poisonDeadMessage": "You've been killed in the crossfire!"
    510.                     }
    511.                 }
    512.             }
    513.         }
    514.     ],
    515.     "roles1": [
    516.         "tiger",
    517.         "pan",
    518.         "hook",
    519.         "boy",
    520.         "crew",
    521.         "boy",
    522.         "crew"
    523.     ],
    524.     "roles2": [
    525.         "tiger",
    526.         "pan",
    527.         "hook",
    528.         "tink",
    529.         "smee",
    530.         "boy",
    531.         "crew",
    532.         "boy",
    533.         "crew",
    534.         "boy",
    535.         "crew",
    536.         "boy",
    537.         "crew",
    538.         "boy",
    539.         "crew",
    540.         "boy",
    541.         "crew",
    542.         "boy",
    543.         "crew",
    544.         "boy",
    545.         "crew",
    546.         "boy",
    547.         "crew",
    548.         "boy",
    549.         "crew",
    550.         "boy",
    551.         "crew",
    552.         "boy",
    553.         "crew",
    554.         "boy",
    555.         "crew"
    556.     ]
    557. }
    [/HIDE]

    Priority List:
    [/HIDE]

    Spawn Lists:
    [/HIDE]

    Roles:
    [/HIDE]
    [/HIDE]

    Updates:
    -Hostages are now called captives to clarify things a bit more.
    -Players no longer switch sides when converted.
    -Added inspect to Tiger Lily (with a 50% failchance when she is captive) to help her identify her side and progress the game more quickly.
    -Expanded the info sections.
    -Tinkerbell and Smee can only guard or capture instead of guarding and capture.
    -Peter Pan and Captain Hook can only daykill now instead of also having capture. To reduce the amount of coverts each night.
    -Rescue was removed and added to the Capture ability to help make it simpler.
    -Tiger Lily now starts in hiding. Both teams are looking for her so there is no advantage.
    -Lost Boys and Pirate Crewmen can no longer capture their own roles to avoid conflict that breaks the game.
    -Better explanations of each role's duties in their help and more info in the summary.
    -Priorities updated.
    -Hook now starts knowing who Tiger Lily is for balance.
    -Captives become poisoned and die after 2 days if not freed in time.
    [/HIDE]
     
    Last edited: Mar 28, 2013
  2. Roild

    Roild Member

    Joined:
    Jul 21, 2012
    Messages:
    861
    Likes Received:
    11
    PO Trainer Name:
    Roild
    Is this theme working properly?
     
  3. Shazan

    Shazan Obey to Kyubey

    Joined:
    Jan 21, 2013
    Messages:
    591
    Likes Received:
    14
    PO Trainer Name:
    Obey to Kyubey
    i was thinking, shouldn't tiger lily be a neutral role at the beginning instead to be at the peter pan side?
     
  4. ThePiggy

    ThePiggy New Member

    Joined:
    Mar 6, 2013
    Messages:
    21
    Likes Received:
    0
    PO Trainer Name:
    ThePiggy
    She begins as hostage tiger lily. This will encourage her to remain a secret until she is rescued because if the pirates find out who she is, they should guard her so she can't be rescued until smee is killed/captured. The lost boys have the benefit of her being on their team, but the pirates have the benefit of her starting out as a hostage. I think it is pretty close to an even game.

    Also, I have made quite a few adjustments since I started testing it. I adjusted the priorities and I'm in the process of fixing a conflict with capture and rescue when two people go after the same target. It shouldn't take long to fix and I will edit my post here once I get to a stable fix for it. :)

    Edit: Everything has been fixed and updated :D
     
    Last edited: Mar 21, 2013
  5. Beast

    Beast I do what I want

    Joined:
    Sep 7, 2012
    Messages:
    925
    Likes Received:
    31
    Firstly, I don't like your boarder. That being said, I don't really like any border. :P
    You are missing killmsg for your theme. You have killusermsg though.
    Info is supposed to tell players what all that role does. Right now if people used /roles they would get a lot of nothing.
    Everyone being able to capture is OP. Make the common to be Team rather than Self. Same for rescue.
    Why can you rescue people who aren't on your team? That doesn't make sense.
    Being able to only kill hostages is an interesting concept.
    Tiger Lily being hidden is a bad idea because then people don't get any info on them.
    When someone is captured they should stay on their respective team otherwise what is the point of killing your hostage?
    With there not being a way to cetainly kill people this is going to take forever. Also, the team that kills Hostage lily loses automatically.

    I am going to decline [1] for now. It is an interesting idea but you are promoting team killing and this could take forever to finish.
     
  6. ThePiggy

    ThePiggy New Member

    Joined:
    Mar 6, 2013
    Messages:
    21
    Likes Received:
    0
    PO Trainer Name:
    ThePiggy
    -The killmsgs are there. There is one for Pan and one for Hook and one for Tiger Lily's revenge kill.
    -According to the How To Make a Mafia Theme forum post, I'm supposed to keep the info short, but I can expand on them, no problem.
    -All of the captures/rescues won't go through every night. That's part of how people will find out who is on their team. If a pirate attempts to capture tiger lily, it will fail since she is already captive. That will tip them off that it's her so they can get the guard on her. The first night or two will be full of action as the battle begins. It's supposed to be that way. In the testing I've done so far, it appears to be working out the way it's supposed to. Maybe you could join me when I'm testing it some time so you can have a better picture of what goes on.
    -Rescuing people, like capturing people, is a way to discover who people are.
    -When you say hidden, are you referring to "hide": true? If so, I did that for all the hostages so they wouldn't appear on the /roles because they are just place holders for each role to make sure they convert back to the correct role. The free tiger lily is not hidden.
    -The point of the game is to eliminate the other team, but keep Tiger Lily alive. The enemy team is captured so the leaders can execute them to whittle down the size of the enemy. The leaders don't HAVE to execute anyone. If a team manages to take the entire other team hostage (except the leader) then they will win that way. Either killing or taking hostage is equally as effective in winning the game. However, a hostage can be rescued. That would be the motivation for killing the hostages.
    -Yes, the team that kills Tiger Lily does lose automatically, that was purposeful since she is supposed to be the reason for the fight.

    I hope I answered all your concerns adequately. Let me know if I need to explain something more. :)
     
  7. Beast

    Beast I do what I want

    Joined:
    Sep 7, 2012
    Messages:
    925
    Likes Received:
    31
    -According to the How To Make a Mafia Theme forum post, I'm supposed to keep the info short, but I can expand on them, no problem.

    Info is supposed to be used to tell the players what that role does though. Saying "Is leader of the lost boys" tells them nothing about what the role can do. It should be something like "info": "Is able to /capture someone making them a hostage. Able to /rescue someone from being a hostage. Is able to daykill a hostage. Sided with the lost boy."

    -All of the captures/rescues won't go through every night. That's part of how people will find out who is on their team. If a pirate attempts to capture tiger lily, it will fail since she is already captive. That will tip them off that it's her so they can get the guard on her. The first night or two will be full of action as the battle begins. It's supposed to be that way. In the testing I've done so far, it appears to be working out the way it's supposed to. Maybe you could join me when I'm testing it some time so you can have a better picture of what goes on.

    If you could provide logs that would be great.

    You also seemed to skip my comment on the sides of the hostages since right now you are promoting teamkilling. The side would not effect the winifdeadroles.
     
  8. ThePiggy

    ThePiggy New Member

    Joined:
    Mar 6, 2013
    Messages:
    21
    Likes Received:
    0
    PO Trainer Name:
    ThePiggy
    Sorry, I missed that part. I'm kind of sleepy.

    Are you talking about how when someone is taken hostage they switch to the enemy's side?
    I had them switch sides as hostages to make it possible for a team to win without having to kill everyone. But I do see your point. It didn't occur to me at the time of writing the code that the winifdeadroles don't include the hostages, so switching sides isn't needed. I'll make it so converting to hostages doesn't switch their sides.

    I will post some logs as soon as I can.
     
  9. ThePiggy

    ThePiggy New Member

    Joined:
    Mar 6, 2013
    Messages:
    21
    Likes Received:
    0
    PO Trainer Name:
    ThePiggy
    I have updated things. :)

     
    Last edited: Mar 27, 2013
  10. ThePiggy

    ThePiggy New Member

    Joined:
    Mar 6, 2013
    Messages:
    21
    Likes Received:
    0
    PO Trainer Name:
    ThePiggy
    A log was asked for. I'm not sure if this is done right. If it's not, then I'm not sure how to get a log.

    Log:
    (19:40:32) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:40:32) ±Game: Human Destroyer started a game with theme Neverland!
    (19:40:32) ±Game: Type /Join to enter the game!
    (19:40:32) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***

    (19:40:32) ±Game: Tiger Lily was kidnapped by Captain Hook and his crew. Peter Pan and the lost boys must rescue Tiger Lily and eliminate the Pirates before the Pirates get them. Don't kill Tiger Lily or you will lose!
    (19:40:32) +Roild: Design it first, Fuzzysqurl. Yes.
    (19:40:34) ±Game: Human Destroyer joined the game!
    (19:40:36) ±Game: Fynecian joined the game!
    (19:40:37) ±Game: ThePiggy joined the game!
    (19:40:38) +Fuzzysqurl: well
    (19:40:40) ±Game: Roild joined the game!
    (19:40:40) +Fuzzysqurl: if i design it
    (19:40:44) +ThePiggy: we need 7 people
    (19:40:44) +Fuzzysqurl: im going to code it alone
    (19:40:46) +Roild: I'm imagining Vepix+
    (19:40:52) +Roild: But roflno
    (19:41:01) +ThePiggy: Fuzzysqurl join

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

    (19:41:15) +ThePiggy: citro join
    (19:41:25) +ThePiggy: GUYS
    (19:41:27) ±Game: citro joined the game! (pushed by Roild)
    (19:41:31) +Roild: you can push
    (19:41:33) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:41:33) Times Up! :
    (19:41:33) Well, Not Enough Players! :
    (19:41:33) You need at least 7 players to join (Current; 5).
    (19:41:33) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***

    (19:41:40) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:41:40) ±Game: ThePiggy started a game with theme Neverland!
    (19:41:40) ±Game: Type /Join to enter the game!
    (19:41:40) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***

    (19:41:40) ±Game: Tiger Lily was kidnapped by Captain Hook and his crew. Peter Pan and the lost boys must rescue Tiger Lily and eliminate the Pirates before the Pirates get them. Don't kill Tiger Lily or you will lose!
    (19:41:43) ±Game: Human Destroyer joined the game!
    (19:41:44) ±Game: ThePiggy joined the game!
    (19:41:44) ±Game: Fynecian joined the game!
    (19:41:45) Fuzzysqurl left the channel.
    (19:41:45) ±Game: citro joined the game!
    (19:41:46) ±Game: Roild joined the game!
    (19:41:48) +Roild: 5
    (19:41:49) ±Game: Prejudice joined the game!
    (19:41:52) +Roild: 1 more
    (19:41:54) +Human Destroyer: BEBBZ
    (19:41:56) ±Game: Fuzzysqurl joined the game! (pushed by ThePiggy)
    (19:41:59) ±Game: BebbZ joined the game!
    (19:42:00) +Roild: Okay
    (19:42:02) +Human Destroyer: that works too
    (19:42:03) ±Game: Fuzzysqurl unjoined the game!
    (19:42:05) Prejudice: lol
    (19:42:05) This phase will last for another 1 second because Fuzzysqurl said so!
    (19:42:06) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:42:06) Times Up! :
    (19:42:06) The Roles have been Decided! :
    (19:42:06) ±Game: You are a Hostage Tiger Lily!
    (19:42:06) ±Game: The Pirates are after you! Stay hidden as long as you can. You are a hostage, but you may /inspect people for a chance to find out who is friend or foe.
    (19:42:06) Current Roles: Captain Hook, Hostage Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman.
    (19:42:06) Current Players: BebbZ, Fynecian, Human Destroyer, Prejudice, Roild, ThePiggy, citro.
    (19:42:06) Current Team: Hostage Tiger Lily, Lost Boy, Lost Boy, Peter Pan
    (19:42:06) Time: Night 1
    (19:42:06) Make your moves, you only have 20 seconds! :
    (19:42:06) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:42:14) +Roild: pan here
    (19:42:17) +Roild: Boys, pm
    (19:42:19) +Roild: Little boys
    (19:42:19) +Roild: Pls
    (19:42:20) ±Game: You have chosen to inspect BebbZ!
    (19:42:20) +Roild: PM me
    (19:42:22) +ThePiggy: lol
    (19:42:23) +Roild: ;)
    (19:42:26) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:42:26) Times Up! :
    (19:42:26) ±Game: You couldn't inspect this night!
    (19:42:26) ±Game: Lost Boy has become a Captive Lost Boy!
    (19:42:26) No one died! :
    (19:42:26) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:42:26) Current Roles: Captain Hook, Captive Lost Boy, Hostage Tiger Lily, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman.
    (19:42:26) Current Players: BebbZ, Fynecian, Human Destroyer, Prejudice, Roild, ThePiggy, citro.
    (19:42:26) Current Team: Captive Lost Boy, Hostage Tiger Lily, Lost Boy, Peter Pan
    (19:42:26) Time: Day 1
    (19:42:26) You have 20 seconds to debate who are the bad guys! :
    (19:42:26) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:42:26) BebbZ: Are we playing this normally?
    (19:42:30) +Roild: Yes
    (19:42:31) BebbZ: k
    (19:42:34) +ThePiggy: Yes
    (19:42:44) +ThePiggy: The point is to eliminate the other team
    (19:42:46) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:42:46) Current Roles: Captain Hook, Captive Lost Boy, Hostage Tiger Lily, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman.
    (19:42:46) Current Players: BebbZ, Fynecian, Human Destroyer, Prejudice, Roild, ThePiggy, citro.
    (19:42:46) Current Team: Captive Lost Boy, Hostage Tiger Lily, Lost Boy, Peter Pan
    (19:42:46) Time: Night 2
    (19:42:46) Make your moves, you only have 20 seconds! :
    (19:42:46) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:42:47) +ThePiggy: and keep Lily alive
    (19:42:50) +Human Destroyer: ThePiggy
    (19:42:54) +Human Destroyer: make what capture and rescue do
    (19:42:55) +Human Destroyer: more clear
    (19:42:59) +Roild: You removed both rescues on captains?
    (19:43:01) +ThePiggy: What do you mean?
    (19:43:06) +Human Destroyer: like it just says
    (19:43:06) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:43:06) Times Up! :
    (19:43:07) ±Game: Lost Boy is no longer a Captive Lost Boy!
    (19:43:07) No one died! :
    (19:43:07) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:43:07) Current Roles: Captain Hook, Hostage Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman.
    (19:43:07) Current Players: BebbZ, Fynecian, Human Destroyer, Prejudice, Roild, ThePiggy, citro.
    (19:43:07) Current Team: Hostage Tiger Lily, Lost Boy, Lost Boy, Peter Pan
    (19:43:07) Time: Day 2
    (19:43:07) You have 20 seconds to debate who are the bad guys! :
    (19:43:07) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:43:07) +ThePiggy: Yes
    (19:43:15) +Human Destroyer: "You can /rescue and /capture"
    (19:43:16) +ThePiggy: Pan/Hook can only kill
    (19:43:16) Prejudice: Hai.
    (19:43:18) +Human Destroyer: not really very specific
    (19:43:19) Prejudice: Im not a hostage
    (19:43:27) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:43:27) Current Roles: Captain Hook, Hostage Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman.
    (19:43:27) Current Players: BebbZ, Fynecian, Human Destroyer, Prejudice, Roild, ThePiggy, citro.
    (19:43:27) Current Team: Hostage Tiger Lily, Lost Boy, Lost Boy, Peter Pan
    (19:43:27) Time: Night 3
    (19:43:27) Make your moves, you only have 20 seconds! :
    (19:43:27) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:43:46) +ThePiggy: capture anyone, rescue captives
    (19:43:47) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:43:47) Times Up! :
    (19:43:47) ±Game: Lost Boy has become a Captive Lost Boy!
    (19:43:47) No one died! :
    (19:43:47) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:43:47) Current Roles: Captain Hook, Captive Lost Boy, Hostage Tiger Lily, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman.
    (19:43:47) Current Players: BebbZ, Fynecian, Human Destroyer, Prejudice, Roild, ThePiggy, citro.
    (19:43:47) Current Team: Captive Lost Boy, Hostage Tiger Lily, Lost Boy, Peter Pan
    (19:43:47) Time: Day 3
    (19:43:47) You have 20 seconds to debate who are the bad guys! :
    (19:43:47) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:43:54) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:43:55) ±Game: Captain Hook has decided to kill a hostage! Human Destroyer has been executed!
    (19:43:55) ±Kill: Human Destroyer (Captive Lost Boy) died!
    (19:43:55) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:43:58) +Roild: Shit
    (19:44:02) +Roild: My team is shit.
    (19:44:03) +Roild: D:
    (19:44:05) +citro: you are shit
    (19:44:06) +ThePiggy: lol
    (19:44:07) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:44:07) Current Roles: Captain Hook, Hostage Tiger Lily, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman.
    (19:44:07) Current Players: BebbZ, Fynecian, Prejudice, Roild, ThePiggy, citro.
    (19:44:07) Current Team: Hostage Tiger Lily, Lost Boy, Peter Pan
    (19:44:07) Time: Night 4
    (19:44:07) Make your moves, you only have 20 seconds! :
    (19:44:07) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:44:11) Warning: Human Destroyer is using /showall to find everyone's role. This is for Administration purposes-only.
    (19:44:14) ±Game: You have chosen to inspect Roild!
    (19:44:28) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:44:28) Times Up! :
    (19:44:28) ±Game: You couldn't inspect this night!
    (19:44:28) No one died! :
    (19:44:28) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:44:28) Current Roles: Captain Hook, Hostage Tiger Lily, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman.
    (19:44:28) Current Players: BebbZ, Fynecian, Prejudice, Roild, ThePiggy, citro.
    (19:44:28) Current Team: Hostage Tiger Lily, Lost Boy, Peter Pan
    (19:44:28) Time: Day 4
    (19:44:28) You have 20 seconds to debate who are the bad guys! :
    (19:44:28) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:44:40) +ThePiggy: Lost boys are looking to rescue Lily and capture pirates
    (19:44:46) +ThePiggy: Pirates are looking to capture lost boys
    (19:44:48) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:44:48) Current Roles: Captain Hook, Hostage Tiger Lily, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman.
    (19:44:48) Current Players: BebbZ, Fynecian, Prejudice, Roild, ThePiggy, citro.
    (19:44:48) Current Team: Hostage Tiger Lily, Lost Boy, Peter Pan
    (19:44:48) Time: Night 5
    (19:44:48) Make your moves, you only have 20 seconds! :
    (19:44:48) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:45:00) +Roild: This is going a bit too slowly for what you want.
    (19:45:08) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:45:08) Times Up! :
    (19:45:08) ±Game: Pirate Crewman has become a Captive Pirate!
    (19:45:08) ±Game: Tiger Lily is no longer a Hostage Tiger Lily!
    (19:45:08) ±Game: You have been converted and changed roles!
    (19:45:08) ±Game: You are a Tiger Lily!
    (19:45:08) ±Game: The Pirates are after you! Stay hidden as long as you can. You can /inspect people to find out who you can trust.
    (19:45:08) No one died! :
    (19:45:08) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:45:08) Current Roles: Captain Hook, Captive Pirate, Lost Boy, Peter Pan, Pirate Crewman, Tiger Lily.
    (19:45:08) Current Players: BebbZ, Fynecian, Prejudice, Roild, ThePiggy, citro.
    (19:45:08) Current Team: Lost Boy, Peter Pan, Tiger Lily
    (19:45:08) Time: Day 5
    (19:45:09) You have 20 seconds to debate who are the bad guys! :
    (19:45:09) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:45:18) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:45:18) ±Game: Captain Hook has decided to kill a hostage! BebbZ has been executed!
    (19:45:18) ±Kill: BebbZ (Captive Pirate) died!
    (19:45:18) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:45:21) +ThePiggy: Yeah.. i thik leaders should get capture/rescue back
    (19:45:25) +Roild: Dat TK
    (19:45:26) BebbZ: Thats not what you're meant to do Hook
    (19:45:28)***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:45:28) Current Roles: Captain Hook, Lost Boy, Peter Pan, Pirate Crewman, Tiger Lily.
    (19:45:29) Current Players: Fynecian, Prejudice, Roild, ThePiggy, citro.
    (19:45:29) Current Team: Lost Boy, Peter Pan, Tiger Lily
    (19:45:29) Time: Night 6
    (19:45:29) Make your moves, you only have 20 seconds! :
    (19:45:29) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:45:40) +Roild: It's not really OP
    (19:45:43) +Roild: It's just how the game works
    (19:45:45) +Roild: IMO
    (19:45:48) +Human Destroyer: why would hook kill a hostage pirate
    (19:45:49) +Roild: There isn't OP
    (19:45:49) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:45:49) Times Up! :
    (19:45:49) ±Game: Pirate Crewman has become a Captive Pirate!
    (19:45:49) No one died! :
    (19:45:49) The Lost Boys, ThePiggy, Roild and Prejudice, survived to play another day!
    (19:45:49) ±Game: The Pirates (Fynecian and citro) lose!
    (19:45:49) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:45:50) +Human Destroyer: it seems silly
    (19:45:52) +Roild: ait
    (19:45:54) +Roild: Rofll
    (19:45:54) +Human Destroyer: oh ok
    (19:45:57) +Human Destroyer: lolol
    (19:46:00) +Human Destroyer: citro was hook
    (19:46:00) +Roild: Ty Prejudice bby
    (19:46:00) +Human Destroyer: btw
    (19:46:04) Prejudice: ;)
    (19:46:07) +Roild: Piggy was lily
    (19:46:07) Prejudice: no worries~
    (19:46:10) +ThePiggy: I was
    (19:46:10) +Roild: We figured it out after 2 fails
    (19:46:17) Prejudice: ^
    (19:46:27) +Human Destroyer: (20:46:49) *** ::: ::: Log for Neverland-themed mafia game ::: ::: *
    (19:46:27) +Human Destroyer: (20:46:49) Players: Human Destroyer (Lost Boy), ThePiggy (Hostage Tiger Lily), Fynecian (Pirate Crewman), citro (Captain Hook), Roild (Peter Pan), Prejudice (Lost Boy), BebbZ (Pirate Crewman)
    (19:46:27) +Human Destroyer: (20:46:49) *** NIGHT PHASE 1 ***
    (19:46:27) +Human Destroyer: (20:46:49) ThePiggy used: /inspect BebbZ
    (19:46:27) +Human Destroyer: (20:46:49) Prejudice used: /capture Human Destroyer
    (19:46:27) +Human Destroyer: (20:46:49) *** STANDBY PHASE 1 ***
    (19:46:27) +Human Destroyer: (20:46:49) *** NIGHT PHASE 2 ***
    (19:46:27) +Human Destroyer: (20:46:49) Prejudice used: /rescue Human Destroyer, /capture citro
    (19:46:27) +Human Destroyer: (20:46:49) *** STANDBY PHASE 2 ***
    (19:46:27) +Human Destroyer: (20:46:49) citro used: /kill Prejudice, /kill Roild
    (19:46:27) +Human Destroyer: (20:46:49) *** NIGHT PHASE 3 ***
    (19:46:27) +Human Destroyer: (20:46:49) BebbZ used: /capture Human Destroyer
    (19:46:27) +Human Destroyer: (20:46:49) Fynecian used: /capture Roild, /rescue BebbZ
    (19:46:27) +Human Destroyer: (20:46:49) Prejudice used: /capture citro
    (19:46:27) +Human Destroyer: (20:46:49) Human Destroyer used: /rescue Prejudice, /rescue Roild
    (19:46:27) +Human Destroyer: (20:46:49) *** STANDBY PHASE 3 ***
    (19:46:27) +Human Destroyer: (20:46:49) citro used: /kill Human Destroyer
    (19:46:27) +Human Destroyer: (20:46:49) *** NIGHT PHASE 4 ***
    (19:46:27) +Human Destroyer: (20:46:49) BebbZ used: /capture Fynecian, /capture Prejudice, /capture Roild, /capture citro
    (19:46:27) +Human Destroyer: (20:46:49) ThePiggy used: /inspect Roild
    (19:46:27) +Human Destroyer: (20:46:49) Fynecian used: /rescue Prejudice
    (19:46:27) +Human Destroyer: (20:46:49) Prejudice used: /capture ThePiggy
    (19:46:27) +Human Destroyer: (20:46:49) *** STANDBY PHASE 4 ***
    (19:46:27) +Human Destroyer: (20:46:49) *** NIGHT PHASE 5 ***
    (19:46:27) +Human Destroyer: (20:46:49) Prejudice used: /capture BebbZ
    (19:46:27) +Human Destroyer: (20:46:49) BebbZ used: /capture Roild
    (19:46:27) +Human Destroyer: (20:46:49) Fynecian used: /rescue ThePiggy, /capture citro
    (19:46:27) +Human Destroyer: (20:46:49) *** STANDBY PHASE 5 ***
    (19:46:27) +Human Destroyer: (20:46:49) citro used: /kill BebbZ
    (19:46:27) +Human Destroyer: (20:46:49) *** NIGHT PHASE 6 ***
    (19:46:27) +Human Destroyer: (20:46:49) Prejudice used: /capture Fynecian
    (19:46:27) +Human Destroyer: (20:46:49) Fynecian used: /capture citro
    (19:46:37) Prejudice: flood
    (19:46:40) BebbZ: I PMd Hook and he killed me instead
    (19:46:44) +Roild: Idk hy
    (19:46:44) Prejudice: xD
    (19:46:44) +ThePiggy: lol
    (19:46:48) +Roild: why*
    (19:46:48) Prejudice: LOLOL
    (19:46:50) BebbZ: (00:44) BebbZ: what role r u
    (19:46:50) BebbZ: (00:45) citro: peter pan
    (19:46:52) BebbZ: Such a liar
    (19:46:54) +Roild: My team was connected early
    (19:47:08) +Roild: We even got a rescue in
    (19:47:12) +Fynecian: Wait a sec was BebbZ in that call o.o
    (19:47:13) Prejudice: :I
    (19:47:19) +Human Destroyer: no he wasn't
    (19:47:24) +Fynecian: Ah
    (19:47:26) BebbZ: no
    (19:47:27) +Human Destroyer: it was me you citro and roild
    (19:47:34) +Roild: i didn't talk
    (19:47:34) +Fynecian: Roild didn't talk
    (19:47:36) +Human Destroyer: yeah
    (19:47:38) BebbZ: citro BSd me
    (19:47:38) +ThePiggy: There is no reason for hook/pan not to claim
    (19:47:40) +Human Destroyer: but you were in hte call
    (19:47:42) +Roild: My movie just ended
    (19:47:46) +Roild: I could talk now
    (19:47:47) +Roild: Yeah.
    (19:47:48) +Fynecian: lol
    (19:47:51) +Roild: If you want, ThePiggy
    (19:47:54) +Roild: They can be known to all
    (19:47:56) +Roild: But nah
    (19:48:00) +Roild: I like claiming so you get liars
    (19:48:00) +ThePiggy: Nah
    (19:48:03) +ThePiggy: Yea
    (19:48:15) +Fynecian: Idk maybe put it in the descrip or something
    (19:48:30) +Roild: Make sure to say what /capture and /rescue do in the help
    (19:48:32) +Roild: for everyone
    (19:48:37) +Roild: Not in info
    (19:48:39) +Roild: Just help
    (19:48:40) +ThePiggy: I'll add more descriptions on the capture/rescue and stuff
    (19:48:50) +ThePiggy: Let's try it again?
    (19:48:52) +Roild: If people know what it does, then the infos should be easy
    (19:48:53) +Roild: Sure thing

    (19:48:58) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:48:58) ±Game: Roild started a game with theme Neverland!
    (19:48:58) ±Game: Type /Join to enter the game!
    (19:48:58) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***

    (19:48:58) ±Game: Tiger Lily was kidnapped by Captain Hook and his crew. Peter Pan and the lost boys must rescue Tiger Lily and eliminate the Pirates before the Pirates get them. Don't kill Tiger Lily or you will lose!
    (19:49:00) ±Game: Roild joined the game!
    (19:49:03) +Roild: Wait
    (19:49:07) +Roild: Do you want to update it first?
    (19:49:10) +ThePiggy: citro Fuzzysqurl Fynecian Human Destroyer Prejudice Roild ThePiggy
    (19:49:13) +ThePiggy: nO
    (19:49:18) ±Game: ThePiggy joined the game!
    (19:49:20) ±Game: Prejudice joined the game!
    (19:49:21) ±Game: Fynecian joined the game! (pushed by Roild)
    (19:49:24) ±Game: Human Destroyer joined the game! (pushed by Roild)
    (19:49:26) +Human Destroyer: not right now
    (19:49:28) +Roild: :S
    (19:49:28) ±Game: Human Destroyer unjoined the game!

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

    (19:49:31) +Human Destroyer: I have to shower
    (19:49:38) ±Game: citro joined the game! (pushed by Roild)
    (19:49:47) +ThePiggy: D:
    (19:49:59) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:49:59) Times Up! :
    (19:49:59) Well, Not Enough Players! :
    (19:49:59) You need at least 7 players to join (Current; 5).
    (19:49:59) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (19:50:04) +Roild: Maybe
    (19:50:08) +Roild: You can try to edit it down to 7
    (19:50:14) +Roild: No real reason to
    (19:50:18) +ThePiggy: You mean 5?
    (19:50:18) +Roild: But if you can...
    (19:50:19) +Roild: Yeah
    (19:50:21) +Roild: Woops
    (19:50:43) +ThePiggy: Lily, Hook, Pan, Lost Boy and Crewman
    (19:50:46) +ThePiggy: But...
    (19:50:53) +Roild: Yeah nvm
    (19:50:56) +ThePiggy: that would be super minimal
    (19:50:57) +Roild: 1-1-2-2-1
    (19:50:58) +ThePiggy: and fast
    (19:50:59) +Roild: Works
    (19:51:07) +Roild: also...
    (19:51:13) +Roild: add lily on a random team?
    (19:51:18) +Roild: Er
    (19:51:23) +Roild: Random AND/OR no team
    (19:51:48) +Roild: Pirates too strong
    (19:51:50) +Roild: Just need to capture 2
    (19:52:02) +Roild: Pan needs to capture 2 and rescue 1
    (19:52:20) +ThePiggy: I was hoping Lily would help with her inspect
    (19:52:21) +Roild: Maybe make pan/hook just rescue
    (19:52:41) +Roild: Is the common self or team?
    (19:53:21) +ThePiggy: self
    (19:53:27) +ThePiggy: I don't want team commons
    (19:53:34) +Roild: alright
    (19:53:36) +Roild: Then yeah
    (19:53:38) +Roild: POTENTIALLY
    (19:53:43) +Roild: Pirates could win n1
    (19:53:46) +Roild: In 7p games
    (19:53:56) +Roild: So Lily should be solo
    (19:53:59) +Roild: Maybe make two versions
    (19:54:16) +ThePiggy: Two versions
    (19:54:17) +Roild: Uncaptured solo team in 7-13P
    (19:54:25) +Roild: and already with pirates in 14+
    (19:54:46) +ThePiggy: There is 2 versions. Free and hostage
    Fuzzysqurl kicked ~Unknown~!
    (19:55:03) +Roild: ouch
    (19:55:06) +Roild: brutal
    (19:55:07) +Roild: Don't be mean
    (19:55:12) +Roild: Not what I meant, ThePiggy.
    (19:55:20) +Fuzzysqurl: not my fault they challenged me while i was trying to review a theme or two
    (19:55:28) +Roild: ...:P
    (19:55:48) +Fuzzysqurl: im trying to find something to contribute
    (19:55:52) +Fuzzysqurl: so i can decline 3 MP8
    (19:55:52) +citro: fuzzysqurl
    (19:55:54) +citro: battle pls
    (19:56:23) +Roild: I'll decline too eventually
    (19:56:26) +Roild: ThePiggy, I meant
    (19:56:42) +Roild: Starting with no team (or a blank "side") when in 7-13
    (19:56:45) +Roild: So can be captured
    (19:56:47) +Roild: and then you see
    (19:56:55) +Roild: "Free Lily has been converted into a captured Lily"
    (19:57:02) +Roild: Or rescued lily, in pan's case
    (19:57:04) +Fuzzysqurl: lmfao
    (19:57:09) +Fuzzysqurl: KM made a wiki account
    (19:57:20) +Fuzzysqurl: 14:39 (User creation log) . . User account KM Wiki (Talk | contribs) was created ?
    (19:57:28) +Roild: KM sux
    (19:57:30) +Roild: :S
    (19:57:32) +ThePiggy: So she starts neutral and is targetable by captures and rescues?
    (19:57:49) +ThePiggy: I like that
    (19:58:12) +Roild: Just captures
    (19:58:17) +Roild: Since no one will randomly rescue anymre
    (19:58:19) +Roild: anymore*
    (19:58:25) +Roild: No point to randomly rescue...
    (19:59:03) +Fynecian: Heh
    (20:00:35) +Roild: You can allow capture to capture to a "free" form too.
    (20:00:38) +Roild: For pan's case
    (20:00:45) +Roild: It ould still make sense and not need a rescue
    (20:00:47) +Roild: would*
    [/HIDE]
     
  11. ThePiggy

    ThePiggy New Member

    Joined:
    Mar 6, 2013
    Messages:
    21
    Likes Received:
    0
    PO Trainer Name:
    ThePiggy
    Here are some more recent test play logs.

    (This one ended because of a bug that has been fixed)
    (19:38:53) *** ::: ::: Log for Neverland-themed mafia game ::: ::: ***
    (19:38:53) Players: ThePiggy (Tinkerbell), Roild (Lost Boy), Secret Service (Lost Boy), Rkar6 (Smee), citro (Captain Hook), Fynecian (Pirate Crewman), MewtwoHidden (Peter Pan), notscience (Hiding Tiger Lily)
    (19:38:53) *** NIGHT PHASE 1 ***
    (19:38:53) Roild used: /capture notscience
    (19:38:53) notscience used: /inspect citro
    (19:38:53) *** STANDBY PHASE 1 ***
    (19:38:53) *** NIGHT PHASE 2 ***
    (19:38:53) Fynecian used: /capture Roild, /capture notscience
    (19:38:53) Rkar6 used: /capture MewtwoHidden
    (19:38:53) Secret Service used: /capture citro
    (19:38:53) Roild used: /capture notscience, /capture Fynecian
    (19:38:53) notscience used: /inspect ThePiggy
    (19:38:53) *** STANDBY PHASE 2 ***
    (19:38:53) MewtwoHidden used: /kill Fynecian
    (19:38:53) citro used: /kill notscience
    (19:38:53) *** NIGHT PHASE 3 ***
    (19:38:53) Secret Service used: /capture Roild
    (19:38:53) Roild used: /capture Secret Service
    (19:38:53) Rkar6 used: /capture notscience

    (19:35:36) ***??}888888888888888888888888888888888888888888{??***
    (19:35:36) Times Up! :
    (19:35:36) The Roles have been Decided! :
    (19:35:36) ±Game: You are a Tinkerbell!
    (19:35:36) ±Game: You can /guard someone to avoid capture. /capture back Tiger Lily and your captive team mates to rescue them. Capture the enemy to eliminate them.
    (19:35:36) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Smee, Tinkerbell.
    (19:35:36) Current Players: Fynecian, MewtwoHidden, Rkar6, Roild, Secret Service, ThePiggy, citro, notscience.
    (19:35:36) Current Team: Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Tinkerbell
    (19:35:36) Time: Night 1
    (19:35:36) Make your moves, you only have 20 seconds! :
    (19:35:36) ***??}888888888888888888888888888888888888888888{??***
    (19:35:42) +citro: CAPTAIN HOOK HERE
    (19:35:43) +MewtwoHidden: PAN HERE
    (19:35:50) +Fynecian: PAN HRE
    (19:35:51) Secret Service: if ur peter pan pm me
    (19:35:52) +Fynecian: HERE*
    (19:35:53) +Fynecian: Real pan
    (19:35:54) +Fynecian: DO NOT PM HIM
    (19:35:57) ***??}888888888888888888888888888888888888888888{??***
    (19:35:57) Times Up! :
    (19:35:57) No one died! :
    (19:35:57) ***??}888888888888888888888888888888888888888888{??***
    (19:35:57) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Smee, Tinkerbell.
    (19:35:57) Current Players: Fynecian, MewtwoHidden, Rkar6, Roild, Secret Service, ThePiggy, citro, notscience.
    (19:35:57) Current Team: Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Tinkerbell
    (19:35:57) Time: Day 1
    (19:35:57) You have 20 seconds to debate who are the bad guys! :
    (19:35:57) ***??}888888888888888888888888888888888888888888{??***
    (19:36:03) +citro: uh
    (19:36:04) +citro: ok
    (19:36:09) +notscience: I'm bad
    (19:36:12) Secret Service: im good
    (19:36:17) ***??}888888888888888888888888888888888888888888{??***
    (19:36:17) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Smee, Tinkerbell.
    (19:36:17) Current Players: Fynecian, MewtwoHidden, Rkar6, Roild, Secret Service, ThePiggy, citro, notscience.
    (19:36:17) Current Team: Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Tinkerbell
    (19:36:17) Time: Night 2
    (19:36:17) Make your moves, you only have 20 seconds! :
    (19:36:17) ***??}888888888888888888888888888888888888888888{??***
    (19:36:27) +notscience: Capturing Roild
    (19:36:29) +notscience: j/s
    (19:36:37) ***??}888888888888888888888888888888888888888888{??***
    (19:36:37) Times Up! :
    (19:36:37) ±Game: Pirate Crewman has become a Captive Pirate!
    (19:36:37) No one died! :
    (19:36:37) ***??}888888888888888888888888888888888888888888{??***
    (19:36:37) Current Roles: Captain Hook, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Smee, Tinkerbell.
    (19:36:37) Current Players: Fynecian, MewtwoHidden, Rkar6, Roild, Secret Service, ThePiggy, citro, notscience.
    (19:36:37) Current Team: Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Tinkerbell
    (19:36:37) Time: Day 2
    (19:36:37) You have 20 seconds to debate who are the bad guys! :
    (19:36:37) ***??}888888888888888888888888888888888888888888{??***
    (19:36:44) ***??}888888888888888888888888888888888888888888{??***
    (19:36:44) ±Game: Peter Pan has decided to kill a hostage! Fynecian has been executed!
    (19:36:44) ±Kill: Fynecian (Captive Pirate) died!
    (19:36:44) ***??}888888888888888888888888888888888888888888{??***
    (19:36:50) +notscience: Well, I know who tinkerbell is
    (19:36:51) +notscience: LOL
    (19:36:53) +notscience: I evaded a kill
    (19:36:54) Secret Service: LOL
    (19:36:56) +Roild: Rofl
    (19:36:57) ***??}888888888888888888888888888888888888888888{??***
    (19:36:57) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Smee, Tinkerbell.
    (19:36:57) Current Players: MewtwoHidden, Rkar6, Roild, Secret Service, ThePiggy, citro, notscience.
    (19:36:57) Current Team: Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Tinkerbell
    (19:36:57) Time: Night 3
    (19:36:57) Make your moves, you only have 20 seconds! :
    (19:36:57) ***??}888888888888888888888888888888888888888888{??***
    (19:37:06) +notscience: Pirates want to know tink
    (19:37:08) +notscience: ?
    (19:37:17) ***??}888888888888888888888888888888888888888888{??***
    (19:37:17) Times Up! :
    (19:37:18) ±Game: Lost Boy has become a Captive Lost Boy!
    (19:37:18) Error occurred in mafia while handling the end of 'night' phase: TypeError: Result of expression 'player.role.actions.night' [undefined] is not an object.
    (19:37:20) +notscience: .-.
    (19:37:21) +Roild: uhhhh
    (19:37:22) ***??}888888888888888888888888888888888888888888{??***
    (19:37:22) ±Game: notscience has stopped the game!
    (19:37:22) ***??}888888888888888888888888888888888888888888{??***
    [/HIDE]

    (This one is the most recent version with no known bugs)
    (20:38:33) *** ::: ::: Log for Neverland-themed mafia game ::: ::: ***
    (20:38:33) Players: ThePiggy (Lost Boy), Fynecian (Hiding Tiger Lily), Roild (Peter Pan), MewtwoHidden (Lost Boy), Rkar6 (Smee), Secret Service 1 (Pirate Crewman), citro (Captain Hook), notscience (Tinkerbell)
    (20:38:33) *** NIGHT PHASE 1 ***
    (20:38:33) ThePiggy used: /capture Fynecian
    (20:38:33) Rkar6 used: /capture citro
    (20:38:33) notscience used: /guard Fynecian
    (20:38:33) MewtwoHidden used: /capture Secret Service 1
    (20:38:33) *** STANDBY PHASE 1 ***
    (20:38:33) Roild used: /kill Secret Service 1
    (20:38:33) *** NIGHT PHASE 2 ***
    (20:38:33) Rkar6 used: /capture Fynecian
    (20:38:33) Fynecian used: /inspect citro
    (20:38:33) notscience used: /guard Fynecian, /capture ThePiggy
    (20:38:33) ThePiggy used: /capture Fynecian
    (20:38:33) *** STANDBY PHASE 2 ***
    (20:38:33) citro used: /kill Fynecian
    (20:38:33) *** NIGHT PHASE 3 ***
    (20:38:33) notscience used: /guard Fynecian
    (20:38:33) Rkar6 used: /capture MewtwoHidden, /capture notscience
    (20:38:33) ThePiggy used: /capture Rkar6
    (20:38:33) MewtwoHidden used: /capture notscience, /capture ThePiggy
    (20:38:33) Fynecian used: /inspect Roild

    (20:34:12) *** ThePiggy in Neverland, Captain Hook and Peter Pan must claim and their team must PM them in order to connect and organize to win ***

    (20:34:12) ***??}888888888888888888888888888888888888888888{??***
    (20:34:12) ±Game: ThePiggy started a game with theme Neverland!
    (20:34:12) ±Game: Type /Join to enter the game!
    (20:34:12) ***??}888888888888888888888888888888888888888888{??***

    (20:34:12) ±Game: Tiger Lily is being hunted by Captain Hook and his crew. Eliminate your enemy and capture Tiger Lily. Don't kill Tiger Lily or you will lose! (Peter Pan and Captain Hook should claim to connect their teams and organize an attack if they hope for victory!)
    (20:34:12) ±Game: ThePiggy joined the game!
    (20:34:12) *** ThePiggy Tiger Lily PM Peter Pan!
    (20:34:14) ±Game: Fynecian joined the game!
    (20:34:15) ±Game: Roild joined the game!
    (20:34:15) ±Game: MewtwoHidden joined the game!
    (20:34:16) ±Game: Rkar6 joined the game!
    (20:34:16) ±Game: Secret Service 1 joined the game!
    (20:34:19) +Roild: ThePiggy
    (20:34:21) +ThePiggy: wat
    (20:34:21) ±Game: citro joined the game!
    (20:34:21) +Rkar6: Fynecian got slain SO MANY TIME
    (20:34:22) +Roild: Isn't that too easy?
    (20:34:27) +Fynecian: xDDDDD
    (20:34:27) +ThePiggy: what
    (20:34:29) +Fynecian: That was just lol
    (20:34:30) +Roild: lily PMs pan
    (20:34:30) *** Rkar6 love taps Fynecian
    (20:34:35) +Roild: and wins like that easier
    (20:34:35) +ThePiggy: No.
    (20:34:38) +Roild: :S Okay!
    (20:34:41) Secret Service 1: isnt peter pan a good guy

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

    (20:34:45) +ThePiggy: Pirates have capture prio
    (20:34:51) +Rkar6: every other few seconds Fynecian(castfom) was slain by (name)
    (20:34:56) +citro: tiger lily claims
    (20:34:58) +citro: js
    (20:34:58) +Fynecian: lawlllll.
    (20:34:59) +ThePiggy: No
    (20:35:01) +MewtwoHidden: in Neverland, Captain Hook and Peter Pan must claim and their team must PM them in order to connect and organize to win *** in Neverland, Captain Hook and Peter Pan must claim and their team must PM them in order to connect and organize to win *** in Neverland, Captain Hook and Peter Pan must claim and their team must PM them in order to connect and organize to win *** in Neverland, Captain Hook and Peter Pan must claim and their team must PM them in order to connect and organize to win ***
    (20:35:04) +ThePiggy: Tiger Lily does not claim
    (20:35:08) +Fynecian: Tiger Lily claims.
    (20:35:08) +citro: ThePiggy :(
    (20:35:11) ±Game: notscience joined the game!
    (20:35:12) +MewtwoHidden: REMEMBER IT
    (20:35:13) ***??}888888888888888888888888888888888888888888{??***
    (20:35:13) Times Up! :
    (20:35:13) The Roles have been Decided! :
    (20:35:13) ±Game: You are a Lost Boy!
    (20:35:13) ±Game: Help Peter Pan rescue Tiger Lily and your captive team mates with /capture at night. Capture the pirate crew to get rid of them. Connect with your leader for your orders.
    (20:35:13) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Smee, Tinkerbell.
    (20:35:13) Current Players: Fynecian, MewtwoHidden, Rkar6, Roild, Secret Service 1, ThePiggy, citro, notscience.
    (20:35:13) Current Team: Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Tinkerbell
    (20:35:13) Time: Night 1
    (20:35:13) Make your moves, you only have 20 seconds! :
    (20:35:13) ***??}888888888888888888888888888888888888888888{??***
    (20:35:13) +Fynecian: That is how it is supposed to be.
    (20:35:15) +Roild: Pan here
    (20:35:17) +Fynecian: TIGER LILY HERE
    (20:35:19) +Fynecian: I'M TEH LILY
    (20:35:19) +Roild: LITTLE BOYS PM ME
    (20:35:22) +Fynecian: CAPTURE MEH
    (20:35:22) +Roild: BOYS
    (20:35:23) +Roild: ON ME
    (20:35:24) +Fynecian: RESCUE MEH
    (20:35:28) +notscience: I /guard fynecian
    (20:35:28) +citro: Capt. Hook here
    (20:35:29) +Fynecian: DO EVERYTHING TO MEH
    (20:35:29) +citro: again
    (20:35:29) ±Game: You have chosen to capture Fynecian!
    (20:35:32) +citro: PRs PM
    (20:35:33) ***??}888888888888888888888888888888888888888888{??***
    (20:35:33) Times Up! :
    (20:35:33) ±Game: Your target (Fynecian) was guarded!
    (20:35:33) ±Game: Pirate Crewman has become a Captive Pirate!
    (20:35:33) No one died! :
    (20:35:33) ***??}888888888888888888888888888888888888888888{??***
    (20:35:33) Current Roles: Captain Hook, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Smee, Tinkerbell.
    (20:35:33) Current Players: Fynecian, MewtwoHidden, Rkar6, Roild, Secret Service 1, ThePiggy, citro, notscience.
    (20:35:33) Current Team: Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Tinkerbell
    (20:35:33) Time: Day 1
    (20:35:33) You have 20 seconds to debate who are the bad guys! :
    (20:35:33) ***??}888888888888888888888888888888888888888888{??***
    (20:35:43) ***??}888888888888888888888888888888888888888888{??***
    (20:35:43) ±Game: Peter Pan has decided to kill a hostage! Secret Service 1 has been executed!
    (20:35:43) ±Kill: Secret Service 1 (Captive Pirate) died!
    (20:35:43) ***??}888888888888888888888888888888888888888888{??***
    (20:35:45) +Fynecian: I AM TEH LILLLLLY.
    (20:35:49) +citro: excellent
    (20:35:50) +Roild: hook, kill Fynecian
    (20:35:51) +Roild: Now
    (20:35:53) ***??}888888888888888888888888888888888888888888{??***
    (20:35:53) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Smee, Tinkerbell.
    (20:35:53) Current Players: Fynecian, MewtwoHidden, Rkar6, Roild, ThePiggy, citro, notscience.
    (20:35:53) Current Team: Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Tinkerbell
    (20:35:53) Time: Night 2
    (20:35:53) Make your moves, you only have 20 seconds! :
    (20:35:53) ***??}888888888888888888888888888888888888888888{??***
    (20:35:56) +Fynecian: Btw ThePiggy ths is seriously unbalanced.
    (20:36:03) +Roild: How so, Fynecian?
    (20:36:06) +ThePiggy: That's why we're testing
    (20:36:13) ±Game: You have chosen to capture Fynecian!
    (20:36:13) ***??}888888888888888888888888888888888888888888{??***
    (20:36:13) Times Up! :
    (20:36:13) ±Game: Your target (Fynecian) was guarded!
    (20:36:13) No one died! :
    (20:36:14) ***??}888888888888888888888888888888888888888888{??***
    (20:36:14) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Smee, Tinkerbell.
    (20:36:14) Current Players: Fynecian, MewtwoHidden, Rkar6, Roild, ThePiggy, citro, notscience.
    (20:36:14) Current Team: Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Tinkerbell
    (20:36:14) Time: Day 2
    (20:36:14) You have 20 seconds to debate who are the bad guys! :
    (20:36:14) ***??}888888888888888888888888888888888888888888{??***
    (20:36:18) +Fynecian: Well I just realized that Lily was sided with the Panpeople at the beginning
    (20:36:19) +Fynecian: btw
    (20:36:21) +Fynecian: citro is Hook
    (20:36:22) +Fynecian: So kill pls
    (20:36:30) +citro: GL w/ that
    (20:36:30) +Roild: Can't. :P
    (20:36:31) +MewtwoHidden: you camn't kill hook
    (20:36:34) ***??}888888888888888888888888888888888888888888{??***
    (20:36:34) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Smee, Tinkerbell.
    (20:36:34) Current Players: Fynecian, MewtwoHidden, Rkar6, Roild, ThePiggy, citro, notscience.
    (20:36:34) Current Team: Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Tinkerbell
    (20:36:34) Time: Night 3
    (20:36:34) Make your moves, you only have 20 seconds! :
    (20:36:34) ***??}888888888888888888888888888888888888888888{??***
    (20:36:35) +Fynecian: Ew
    (20:36:41) +Fynecian: I just tried looking up the role citro.
    (20:36:43) ±Game: You have chosen to capture Rkar6!
    (20:36:54) ***??}888888888888888888888888888888888888888888{??***
    (20:36:54) Times Up! :
    (20:36:54) ±Game: Tinkerbell has become a Captive Tinkerbell!
    (20:36:54) ±Game: Smee has become a Captive Smee!
    (20:36:54) ±Game: Your target (Rkar6) has been converted and is now a Captive Smee!
    (20:36:54) No one died! :
    (20:36:54) The Lost Boys, ThePiggy, Fynecian, Roild, MewtwoHidden and notscience, survived to play another day!
    (20:36:54) ±Game: The Pirates (Rkar6 and citro) lose!
    (20:36:54) ***??}888888888888888888888888888888888888888888{??***
    [/HIDE]

    And some more logs:
    (22:03:41) *** ::: ::: Log for Neverland-themed mafia game ::: ::: ***
    (22:03:41) Players: citro (Lost Boy), valvader69 (Pirate Crewman), Rkar6 (Captain Hook), Venom (Hiding Tiger Lily), notscience (Peter Pan), Roild (Lost Boy), ThePiggy (Pirate Crewman)
    (22:03:41) *** NIGHT PHASE 1 ***
    (22:03:41) Roild used: /capture Venom
    (22:03:41) ThePiggy used: /capture Venom
    (22:03:41) citro used: /capture ThePiggy
    (22:03:41) *** STANDBY PHASE 1 ***
    (22:03:41) Rkar6 used: /kill ThePiggy
    (22:03:41) *** NIGHT PHASE 2 ***
    (22:03:41) Roild used: /capture valvader69, /capture Venom
    (22:03:41) citro used: /capture valvader69

    (21:56:06) ***??}888888888888888888888888888888888888888888{??***
    (21:56:06) Times Up! :
    (21:56:06) The Roles have been Decided! :
    (21:56:06) ±Game: You are a Captain Hook!
    (21:56:06) ±Game: You are the great Captain Hook and cannot be captured! Connect your team to secure your victory. You can /kill a captive during the day. Be sure not to accidentally kill Tiger Lily!
    (21:56:06) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Smee, Tinkerbell.
    (21:56:06) Current Players: Fynecian, MewtwoHidden, Rkar6, Roild, ThePiggy, Venom, citro, notscience.
    (21:56:06) Current Team: Captain Hook, Pirate Crewman, Smee
    (21:56:06) Time: Night 1
    (21:56:06) Make your moves, you only have 25 seconds! :
    (21:56:06) ***??}888888888888888888888888888888888888888888{??***
    (21:56:06) Fuzzysqurl: depends who was poisoned
    (21:56:07) +Sebastian Hummel: ah
    (21:56:11) +MewtwoHidden: PAN HEER
    (21:56:14) +ThePiggy: Hook here, Pirates PM
    (21:56:18) Fuzzysqurl: you essentially have X, X, Y
    (21:56:21) +notscience: Hook on me
    (21:56:23) +notscience: HOOK ON ME
    (21:56:25) Fuzzysqurl: if X is distracted, neither can act
    (21:56:31) ***??}888888888888888888888888888888888888888888{??***
    (21:56:31) Times Up! :
    (21:56:31) No one died! :
    (21:56:31) ***??}888888888888888888888888888888888888888888{??***
    (21:56:31) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Smee, Tinkerbell.
    (21:56:31) Current Players: Fynecian, MewtwoHidden, Rkar6, Roild, ThePiggy, Venom, citro, notscience.
    (21:56:31) Current Team: Captain Hook, Pirate Crewman, Smee
    (21:56:31) Time: Day 1
    (21:56:31) You have 20 seconds to debate who are the bad guys! :
    (21:56:31) You may /kill a captive now.
    (21:56:31) ***??}888888888888888888888888888888888888888888{??***
    (21:56:31) Fuzzysqurl: if Y is distracted, it cant act but X can
    (21:56:32) +Sebastian Hummel: B/c goldeen and seaking share a "poison", while lapras has "perish"
    (21:56:32) +Rkar6: who claimed hook and pan?
    (21:56:35) +Sebastian Hummel: oh
    (21:56:35) +Sebastian Hummel: ok
    (21:56:40) ±Game: Your kill was evaded!
    (21:56:40) Fuzzysqurl: lame
    (21:56:43) Fuzzysqurl: i dont like you Sebastian Hummel
    (21:56:46) +notscience: LOL
    (21:56:46) +Rkar6: hook and pan reclaim?
    (21:56:46) +Sebastian Hummel: shhh
    (21:56:46) +Roild: MewtwoHidden claimed pan and ThePiggy claime dhook
    (21:56:47) +Roild: claimed*
    (21:56:49) +notscience: Nice job there
    (21:56:51) Fuzzysqurl: you should do perish song cooler
    (21:56:51) ***??}888888888888888888888888888888888888888888{??***
    (21:56:51) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Smee, Tinkerbell.
    (21:56:51) Current Players: Fynecian, MewtwoHidden, Rkar6, Roild, ThePiggy, Venom, citro, notscience.
    (21:56:51) Current Team: Captain Hook, Pirate Crewman, Smee
    (21:56:51) Time: Night 2
    (21:56:51) Make your moves, you only have 25 seconds! :
    (21:56:51) ***??}888888888888888888888888888888888888888888{??***
    (21:56:51) +Sebastian Hummel: I'm stealing from Paranormal
    (21:56:52) +Sebastian Hummel: jk
    (21:56:55) +ThePiggy: PIRATES PM
    (21:56:58) Fuzzysqurl: give Lapras a 1 time daykill
    (21:56:59) +Roild: paranormal sux
    (21:57:00) +Venom: captain hook
    (21:57:00) +Sebastian Hummel: lapras' poisons are all n1
    (21:57:01) Fuzzysqurl: onlyself
    (21:57:03) +Venom: get notscience
    (21:57:04) +Venom: please
    (21:57:04) +Sebastian Hummel: Fuzzysqurl
    (21:57:05) +Venom: [:
    (21:57:06) +Sebastian Hummel: I asked you
    (21:57:07) Fuzzysqurl: then you get like 2-3 poisons
    (21:57:09) Fuzzysqurl: which are converts
    (21:57:11) +Sebastian Hummel: I know
    (21:57:13) +Sebastian Hummel: but
    (21:57:17) ***??}888888888888888888888888888888888888888888{??***
    (21:57:17) Times Up! :
    (21:57:17) No one died! :
    (21:57:17) ***??}888888888888888888888888888888888888888888{??***
    (21:57:17) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Smee, Tinkerbell.
    (21:57:17) Current Players: Fynecian, MewtwoHidden, Rkar6, Roild, ThePiggy, Venom, citro, notscience.
    (21:57:17) Current Team: Captain Hook, Pirate Crewman, Smee
    (21:57:17) Time: Day 2
    (21:57:17) You have 20 seconds to debate who are the bad guys! :
    (21:57:17) You may /kill a captive now.
    (21:57:17) ***??}888888888888888888888888888888888888888888{??***
    (21:57:17) Fuzzysqurl: convert to a role, then when lapras dies
    (21:57:20) +Sebastian Hummel: I want lapras to survive
    (21:57:22) Fuzzysqurl: do onDeath, Killroles
    (21:57:22) +Sebastian Hummel: ohwait
    (21:57:28) Fuzzysqurl: lern2perishsong
    (21:57:32) +Sebastian Hummel: Fuzzysqurl
    (21:57:33) +ThePiggy: Pirate crewmen PM me
    (21:57:35) +Sebastian Hummel: you said
    (21:57:36) +Rkar6: block+persih song
    (21:57:37) ***??}888888888888888888888888888888888888888888{??***
    (21:57:37) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Smee, Tinkerbell.
    (21:57:37) Current Players: Fynecian, MewtwoHidden, Rkar6, Roild, ThePiggy, Venom, citro, notscience.
    (21:57:37) Current Team: Captain Hook, Pirate Crewman, Smee
    (21:57:37) Time: Night 3
    (21:57:37) Make your moves, you only have 25 seconds! :
    (21:57:37) ***??}888888888888888888888888888888888888888888{??***
    (21:57:42) +Sebastian Hummel: if I used onDeath convertself
    (21:57:46) +citro: Sebastian Hummel
    (21:57:48) +Sebastian Hummel: convertRoles for self
    (21:57:48) +citro: what is this theme
    (21:57:51) +Sebastian Hummel: it wouldn't work
    (21:57:53) +Sebastian Hummel: Cave
    (21:57:54) Fuzzysqurl: you cant convert yourself to save yourself from death
    (21:57:58) +Sebastian Hummel: :(
    (21:57:59) +Roild: it won't work unless evade death, Sebastian Hummel
    (21:58:00) Fuzzysqurl: Perish song kills the user
    (21:58:02) Fuzzysqurl: >_>
    (21:58:02) ***??}888888888888888888888888888888888888888888{??***
    (21:58:02) Times Up! :
    (21:58:02) ±Game: Pirate Crewman has become a Captive Pirate!
    (21:58:02) ±Game: Smee has become a Captive Smee!
    (21:58:02) No one died! :
    (21:58:02) The Lost Boys, Roild, Fynecian, MewtwoHidden, notscience and citro, survived to play another day!
    (21:58:02) ±Game: The Pirates (ThePiggy, Rkar6 and Venom) lose!
    (21:58:02) ***??}888888888888888888888888888888888888888888{??***
    [/HIDE]

    (22:13:26) *** ::: ::: Log for Neverland-themed mafia game ::: ::: ***
    (22:13:26) Players: Rkar6 (Peter Pan), ThePiggy (Lost Boy), Zeo Lyra (Pirate Crewman), citro (Lost Boy), Fynecian (Hiding Tiger Lily), notscience (Pirate Crewman), Roild (Captain Hook)
    (22:13:26) *** NIGHT PHASE 1 ***
    (22:13:26) notscience used: /capture Fynecian
    (22:13:26) Zeo Lyra used: /capture Rkar6
    (22:13:26) Fynecian used: /inspect Rkar6
    (22:13:26) *** STANDBY PHASE 1 ***
    (22:13:26) *** NIGHT PHASE 2 ***
    (22:13:26) ThePiggy used: /capture Zeo Lyra
    (22:13:26) Fynecian used: /inspect citro, /inspect ThePiggy
    (22:13:26) citro used: /capture Zeo Lyra
    (22:13:26) Zeo Lyra used: /capture ThePiggy
    (22:13:26) *** STANDBY PHASE 2 ***
    (22:13:26) Rkar6 used: /kill Zeo Lyra
    (22:13:26) Roild used: /kill Rkar6
    (22:13:26) *** NIGHT PHASE 3 ***
    (22:13:26) Fynecian used: /inspect Roild
    (22:13:26) citro used: /capture notscience
    (22:13:26) notscience used: /capture ThePiggy

    (22:10:36) ***??}888888888888888888888888888888888888888888{??***
    (22:10:36) Times Up! :
    (22:10:36) The Roles have been Decided! :
    (22:10:36) ±Game: You are a Lost Boy!
    (22:10:36) ±Game: Help Peter Pan rescue Tiger Lily and your captive team mates with /capture at night. Capture the pirate crew to get rid of them. Connect with your leader for your orders.
    (22:10:36) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman.
    (22:10:36) Current Players: Fynecian, Rkar6, Roild, ThePiggy, Zeo Lyra, citro, notscience.
    (22:10:36) Current Team: Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan
    (22:10:36) Time: Night 1
    (22:10:36) Make your moves, you only have 25 seconds! :
    (22:10:36) ***??}888888888888888888888888888888888888888888{??***
    (22:10:44) +Fynecian: Come on down, guys.
    (22:10:46) +Rkar6: PAN HERE
    (22:10:53) +Rkar6: PETA PANTHER
    (22:11:01) ***??}888888888888888888888888888888888888888888{??***
    (22:11:01) Times Up! :
    (22:11:01) No one died! :
    (22:11:01) ***??}888888888888888888888888888888888888888888{??***
    (22:11:01) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman.
    (22:11:01) Current Players: Fynecian, Rkar6, Roild, ThePiggy, Zeo Lyra, citro, notscience.
    (22:11:01) Current Team: Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan
    (22:11:01) Time: Day 1
    (22:11:01) You have 20 seconds to debate who are the bad guys! :
    (22:11:01) ***??}888888888888888888888888888888888888888888{??***
    (22:11:08) +Roild: Oh
    (22:11:10) +Roild: HEY
    (22:11:11) +Roild: HOOK HERE
    (22:11:12) +Rkar6: peter pan here people pm me?
    (22:11:13) +Roild: PRS PM
    (22:11:21) ***??}888888888888888888888888888888888888888888{??***
    (22:11:21) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman.
    (22:11:21) Current Players: Fynecian, Rkar6, Roild, ThePiggy, Zeo Lyra, citro, notscience.
    (22:11:21) Current Team: Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan
    (22:11:21) Time: Night 2
    (22:11:21) Make your moves, you only have 25 seconds! :
    (22:11:21) ***??}888888888888888888888888888888888888888888{??***
    (22:11:29) ±Game: You have chosen to capture Zeo Lyra!
    (22:11:47) ***??}888888888888888888888888888888888888888888{??***
    (22:11:47) Times Up! :
    (22:11:47) ±Game: Lost Boy has become a Captive Lost Boy!
    (22:11:47) ±Game: You have been converted and changed roles!
    (22:11:47) ±Game: You are a Captive Lost Boy!
    (22:11:47) ±Game: You are a hostage. You can't do anything.
    (22:11:47) ±Game: Pirate Crewman has become a Captive Pirate!
    (22:11:47) No one died! :
    (22:11:47) ***??}888888888888888888888888888888888888888888{??***
    (22:11:47) Current Roles: Captain Hook, Captive Lost Boy, Captive Pirate, Hiding Tiger Lily, Lost Boy, Peter Pan, Pirate Crewman.
    (22:11:47) Current Players: Fynecian, Rkar6, Roild, ThePiggy, Zeo Lyra, citro, notscience.
    (22:11:47) Current Team: Captive Lost Boy, Hiding Tiger Lily, Lost Boy, Peter Pan
    (22:11:47) Time: Day 2
    (22:11:47) You have 20 seconds to debate who are the bad guys! :
    (22:11:47) ***??}888888888888888888888888888888888888888888{??***
    (22:11:48) ***??}888888888888888888888888888888888888888888{??***
    (22:11:48) ±Game: Peter Pan has decided to kill a hostage! Zeo Lyra has been executed!
    (22:11:48) ±Kill: Zeo Lyra (Captive Pirate) died!
    (22:11:48) ***??}888888888888888888888888888888888888888888{??***
    (22:11:52) +notscience: Damn
    (22:11:55) +notscience: This xfiring
    (22:12:07) ***??}888888888888888888888888888888888888888888{??***
    (22:12:07) Current Roles: Captain Hook, Captive Lost Boy, Hiding Tiger Lily, Lost Boy, Peter Pan, Pirate Crewman.
    (22:12:07) Current Players: Fynecian, Rkar6, Roild, ThePiggy, citro, notscience.
    (22:12:07) Current Team: Captive Lost Boy, Hiding Tiger Lily, Lost Boy, Peter Pan
    (22:12:07) Time: Night 3
    (22:12:07) Make your moves, you only have 25 seconds! :
    (22:12:07) ***??}888888888888888888888888888888888888888888{??***
    (22:12:32) ***??}888888888888888888888888888888888888888888{??***
    (22:12:32) Times Up! :
    (22:12:32) ±Game: Captive Lost Boy has become a Lost Boy!
    (22:12:32) ±Game: You have been converted and changed roles!
    (22:12:32) ±Game: You are a Lost Boy!
    (22:12:32) ±Game: Help Peter Pan rescue Tiger Lily and your captive team mates with /capture at night. Capture the pirate crew to get rid of them. Connect with your leader for your orders.
    (22:12:32) ±Game: Pirate Crewman has become a Captive Pirate!
    (22:12:32) No one died! :
    (22:12:32) The Lost Boys, Rkar6, ThePiggy, citro and Fynecian, survived to play another day!
    (22:12:32) ±Game: The Pirates (notscience and Roild) lose!
    (22:12:32) ***??}888888888888888888888888888888888888888888{??***
    [/HIDE]
     
    Last edited: Mar 25, 2013
  12. ThePiggy

    ThePiggy New Member

    Joined:
    Mar 6, 2013
    Messages:
    21
    Likes Received:
    0
    PO Trainer Name:
    ThePiggy
    Neverland is a strategy game.
    In the beginning, Pan and Hook should try to connect with their teams so they can give orders on who to target. Smee and Tink should be guarding themselves to avoid capture N1. Lily should contact Pan (if she trusts the person who claimed) so he can send lost boys to get her. Pirates have priority advantage with captures to make up for Lily's cooperation with the Lost Boys.
    Teams working together is vital to victory in the game.
     
  13. Hey Day

    Hey Day Argumentum ad ignorantium

    Joined:
    Jul 13, 2012
    Messages:
    138
    Likes Received:
    0
    Approve [1]

    I really love the concept, the whole "capture person x, have your team leader kill them" is a clever and interesting idea. It usually works well in practice, although sometimes the games get slow. AFK players also drastically ruin the game, but that's no surprise really, and players shouldn't be going AFK in the first place.
     
  14. 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
    The only foreseeable problem is if someone does go AFK or asks for a slay. The whole game rides on a small handful of vital roles being around. Other themes put a strong emphasis on other roles, but the team should still be able to win if the #1 role dies/gets slayed/afks. In Kirby, if Mike somehow dies, there might still be Crash Kirby. In FE, if Ike dies, there's still Lyndis and Hector. In FF if Cloud dies, well, Cloud is practically useless anyway... but if Locke dies, there's ways for village to connect and still make educated lynches.

    The other problem is it could turn into a potential stallfest where the same person just gets converted back and forth.

    I'm going to Neutral [1] this theme for now as I cannot tell if it will work successfully or not.
     
  15. Katia

    Katia Haxy Haxy!

    Joined:
    Apr 17, 2012
    Messages:
    261
    Likes Received:
    0
    I have to agree with Fuzzysqurl.
     
  16. ThePiggy

    ThePiggy New Member

    Joined:
    Mar 6, 2013
    Messages:
    21
    Likes Received:
    0
    PO Trainer Name:
    ThePiggy
    I have added the initialcondition of poison to all captive roles except Tiger Lily. So if they are not freed in time, they will die. Although, killing isn't even a vital part of the game. A team can win simply by capturing the other team minus the leader. But the captives dying off will help progress the game.

     
  17. Beast

    Beast I do what I want

    Joined:
    Sep 7, 2012
    Messages:
    925
    Likes Received:
    31
    I like the changes so I will at least do this for you. Test[1]
     
  18. 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
    Making progress, still, what prevents people from converting the same person back and forth in a literal stallfest? Am I missing something in the code that would be able to easily break the back and forth?
     
  19. ThePiggy

    ThePiggy New Member

    Joined:
    Mar 6, 2013
    Messages:
    21
    Likes Received:
    0
    PO Trainer Name:
    ThePiggy
    Yeah, converts happen at night and kills happen during the day. So a leader will kill a captive that was just captured before they ever have the chance of being rescued. I mean, there will be some back and forth, but not as much as you think, it's part of the design. People who are capturing will be using it as a tool to figure who is the enemy in addition to setting up the leader to make a kill.

    If you're thinking there will be one capturable player left and they will get converted over and over, that won't happen at all because if there is only one left and they get captured, the capturing team wins.

    Do you have a specific situation that you're worried about?
     
  20. BebbZ

    BebbZ Member

    Joined:
    Mar 22, 2012
    Messages:
    70
    Likes Received:
    0
    I've played this on a testing server. I had a few worries, they've since been sorted. In the interest of letting others see that this is a really good theme I will support:

    Test [2]
    Approve [2]

    This is the most unique theme I've seen in a while. It uses some really interesting mechanics and is a far cry from the usual copies of other themes that come through.
     
  21. citro

    citro CRYING LIGHTNING

    Joined:
    Jan 29, 2013
    Messages:
    82
    Likes Received:
    0
    test [3]

    This is promising. :) I'd like to see bigger games with more than one or two grunts though, so testing is ideal.
     
  22. ThePiggy

    ThePiggy New Member

    Joined:
    Mar 6, 2013
    Messages:
    21
    Likes Received:
    0
    PO Trainer Name:
    ThePiggy
    First server test log:

    Commands:
    (07:15:57) *** ::: ::: Log for Neverland-themed mafia game ::: ::: ***
    (07:15:57) Players: lurkingSombres (Pirate Crewman), Idipots (Tinkerbell), Roild (Hiding Tiger Lily), Virlomi (Lost Boy), Steve Johns (Lost Boy), Cereal (Smee), Railim (Lost Boy), Teto (Pirate Crewman), ThePiggy (Pirate Crewman), Jpark217 (Pirate Crewman), Qxii (Pirate Crewman), agea (Captain Hook), Clover (Lost Boy), President Venom (Lost Boy), Lucario. (Peter Pan), Jounoichi (Pirate Crewman), Windbound (Lost Boy)
    (07:15:57) *** NIGHT PHASE 1 ***
    (07:15:57) President Venom used: /capture Roild
    (07:15:57) Steve Johns used: /capture Virlomi
    (07:15:57) Railim used: /capture Cereal, /capture Clover, /capture Idipots, /capture Jounoichi
    (07:15:57) lurkingSombres used: /capture Clover
    (07:15:57) Roild used: /inspect Jpark217
    (07:15:57) Virlomi used: /capture Roild
    (07:15:57) ThePiggy used: /capture Clover
    (07:15:57) Windbound used: /capture Railim
    (07:15:57) Jounoichi used: /capture Jpark217
    (07:15:57) Cereal used: /capture Teto
    (07:15:57) Idipots used: /guard Idipots
    (07:15:57) Clover used: /capture agea
    (07:15:57) *** STANDBY PHASE 1 ***
    (07:15:57) Lucario. used: /kill Roild
    (07:15:57) *** NIGHT PHASE 2 ***
    (07:15:57) ThePiggy used: /capture Roild
    (07:15:57) Steve Johns used: /capture Roild
    (07:15:57) Qxii used: /capture Teto
    (07:15:57) Railim used: /capture agea
    (07:15:57) Virlomi used: /capture Windbound
    (07:15:57) lurkingSombres used: /capture Virlomi
    (07:15:57) President Venom used: /capture lurkingSombres
    (07:15:57) *** STANDBY PHASE 2 ***
    (07:15:57) Lucario. used: /kill Cereal
    (07:15:57) *** NIGHT PHASE 3 ***
    (07:15:57) ThePiggy used: /capture lurkingSombres
    (07:15:57) Teto used: /capture agea
    (07:15:57) President Venom used: /capture ThePiggy
    (07:15:57) Qxii used: /capture Virlomi
    (07:15:57) Idipots used: /guard Idipots, /capture Windbound
    (07:15:57) *** STANDBY PHASE 3 ***
    (07:15:57) *** NIGHT PHASE 4 ***
    (07:15:57) Windbound used: /capture ThePiggy
    (07:15:57) Cereal used: /capture President Venom, /guard Cereal
    (07:15:57) Virlomi used: /capture Teto
    (07:15:57) President Venom used: /capture Windbound
    (07:15:57) Idipots used: /guard Lucario., /capture ThePiggy
    (07:15:57) Steve Johns used: /capture Qxii
    (07:15:57) lurkingSombres used: /capture Steve Johns, /capture agea
    (07:15:57) Qxii used: /capture Idipots
    (07:15:57) Roild used: /inspect Lucario.
    (07:15:57) *** STANDBY PHASE 4 ***
    (07:15:57) *** NIGHT PHASE 5 ***
    (07:15:57) Steve Johns used: /capture agea
    (07:15:57) Virlomi used: /capture Roild, /capture Qxii
    (07:15:57) lurkingSombres used: /capture ThePiggy
    (07:15:57) Roild used: /inspect Teto
    (07:15:57) Cereal used: /guard President Venom, /capture Roild
    (07:15:57) Windbound used: /capture Jpark217
    (07:15:57) ThePiggy used: /capture Idipots
    (07:15:57) *** STANDBY PHASE 5 ***
    (07:15:57) Lucario. used: /kill Teto
    (07:15:57) *** NIGHT PHASE 6 ***
    (07:15:57) ThePiggy used: /capture Idipots
    (07:15:57) Railim used: /capture lurkingSombres
    (07:15:57) Qxii used: /capture Idipots
    (07:15:57) lurkingSombres used: /capture Lucario.
    (07:15:57) Idipots used: /guard Idipots, /capture lurkingSombres
    (07:15:57) Cereal used: /capture Qxii
    (07:15:57) Windbound used: /capture Cereal
    (07:15:57) Virlomi used: /capture Qxii
    (07:15:57) Steve Johns used: /capture Roild
    (07:15:57) Roild used: /inspect Railim, /inspect Steve Johns
    (07:15:57) *** STANDBY PHASE 6 ***
    (07:15:57) agea used: /kill Idipots
    (07:15:57) Lucario. used: /kill Idipots
    (07:15:57) *** NIGHT PHASE 7 ***
    (07:15:57) Roild used: /inspect Lucario., /inspect lurkingSombres
    (07:15:57) Idipots used: /guard Idipots
    (07:15:57) Virlomi used: /capture Railim
    (07:15:57) Steve Johns used: /capture Virlomi
    (07:15:57) Windbound used: /capture agea
    (07:15:57) *** STANDBY PHASE 7 ***
    (07:15:57) Lucario. used: /kill agea, /kill lurkingSombres
    (07:15:57) *** NIGHT PHASE 8 ***
    (07:15:57) Idipots used: /guard Idipots, /capture Cereal
    (07:15:57) Virlomi used: /capture ThePiggy
    (07:15:57) Windbound used: /capture lurkingSombres
    (07:15:57) Roild used: /inspect Qxii
    (07:15:57) Railim used: /capture Virlomi
    (07:15:57) ThePiggy used: /capture Idipots
    (07:15:57) *** STANDBY PHASE 8 ***
    (07:15:57) Lucario. used: /kill lurkingSombres
    (07:15:57) *** NIGHT PHASE 9 ***
    (07:15:57) lurkingSombres used: /capture Virlomi
    (07:15:57) Roild used: /inspect agea
    (07:15:57) Idipots used: /guard Idipots
    (07:15:57) Windbound used: /capture Steve Johns
    (07:15:57) Virlomi used: /capture Windbound
    (07:15:57) Railim used: /capture Steve Johns
    (07:15:57) *** STANDBY PHASE 9 ***
    (07:15:57) Lucario. used: /kill ThePiggy
    (07:15:57) *** NIGHT PHASE 10 ***
    (07:15:57) Windbound used: /capture Roild, /capture Idipots, /capture Virlomi
    (07:15:57) Railim used: /capture Windbound
    (07:15:57) lurkingSombres used: /capture Steve Johns
    (07:15:57) Roild used: /inspect lurkingSombres
    (07:15:57) *** STANDBY PHASE 10 ***
    (07:15:57) agea used: /kill Steve Johns
    (07:15:57) *** NIGHT PHASE 11 ***
    (07:15:57) lurkingSombres used: /capture Railim
    (07:15:57) Virlomi used: /capture lurkingSombres
    (07:15:57) Idipots used: /guard Idipots
    (07:15:57) Windbound used: /capture lurkingSombres
    (07:15:57) Railim used: /capture lurkingSombres
    [/HIDE]

    Chat:
    (01:04:58) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:04:58) ±Game: Roild started a game with theme Neverland!
    (01:04:58) ±Game: Type /Join to enter the game!
    (01:04:58) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***

    (01:04:58) ±Game: Tiger Lily is being hunted by Captain Hook and his crew. Eliminate your enemy and capture Tiger Lily. Don't kill Tiger Lily or you will lose! (Peter Pan and Captain Hook should claim to connect their teams and organize an attack if they hope for victory!)
    (01:05:00) ±Game: lurkingSombres joined the game!
    (01:05:01) ±Game: Idipots joined the game!
    (01:05:01) ±Game: Roild joined the game!
    (01:05:02) ±Game: Virlomi joined the game!
    (01:05:02) lurkingSombres: wut
    (01:05:02) ±Game: Steve Johns joined the game!
    (01:05:02) ±Game: Cereal joined the game!
    (01:05:03) President Venom: you guys
    (01:05:03) Jpark217: gg
    (01:05:03) Roild: new theme.
    (01:05:03) ±Game: Railim joined the game!
    (01:05:04) ±Game: Teto joined the game!
    (01:05:05) ±Game: ThePiggy joined the game!
    (01:05:06) ±Game: Jpark217 joined the game!
    (01:05:06) President Venom: are really fucking dumb
    (01:05:07) President Venom: LOL
    (01:05:07) lurkingSombres: pupa pan theme
    (01:05:07) ±Game: Qxii joined the game!
    (01:05:08) ±Game: agea joined the game!
    (01:05:08) ±Game: Clover joined the game!
    (01:05:08) Roild: ThePiggy, explain
    (01:05:08) ±Game: President Venom joined the game!
    (01:05:13) President Venom: you voted ganondorf
    (01:05:13) lurkingSombres: look who's talking
    (01:05:19) lurkingSombres: Crappin' Falcon
    (01:05:21) *** ThePiggy There are Captain Hook and Peter Pan who are the leaders. They can daykill a captive. Smee and Tinkerbell can capture people and guard people. They should guard self first night. Then there are Pirate Crewmen and Lost Boys who only capture. A team wins when the other team is all read or captured
    (01:05:22) President Venom: it went to his original form
    (01:05:22) ±Game: Lucario. joined the game!
    (01:05:23) Virlomi: Roild have I played this before?
    (01:05:23) President Venom: and then
    (01:05:27) President Venom: you fought

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

    (01:05:29) President Venom: over who it was
    (01:05:31) ThePiggy: No voting
    (01:05:32) Roild: Idk who you are, Virlomi. Probably not?
    (01:05:32) President Venom: like seriously
    (01:05:33) ±Game: Jounoichi joined the game!
    (01:05:34) agea: lol
    (01:05:36) lurkingSombres: wut
    (01:05:38) Virlomi: Ok, babes. ;)
    (01:05:42) lurkingSombres: no voting?
    (01:05:42) Roild: oh ok
    (01:05:43) ThePiggy: The way neverland plays is the two teams have to eliminate each other WITHOUT killing Tiger Lily. Each role has a pretty good help file so people should get the hang of it.
    (01:05:44) Roild: yes.
    (01:05:46) Roild: you have.
    (01:05:51) Virlomi: :>
    (01:05:52) Steve Johns: VIrlomi
    (01:05:53) ±Game: Windbound joined the game!
    (01:05:54) Steve Johns: you are girl
    (01:05:54) President Venom: Roild
    (01:05:55) Steve Johns: ?
    (01:05:55) lurkingSombres: makes no sense
    (01:05:57) Roild: Yo
    (01:05:57) President Venom: you should load
    (01:05:57) ThePiggy: Hook and Pan claim
    (01:05:58) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:05:58) Times Up! :
    (01:05:58) The Roles have been Decided! :
    (01:05:58) ±Game: You are a Pirate Crewman!
    (01:05:58) ±Game: Help Captain Hook /capture Tiger Lily and rescue your fellow crew members from the Lost Boys. Capture the enemy to eliminate them. Connect with your captain for orders.
    (01:05:58) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (01:05:58) Current Players: Cereal, Clover, Idipots, Jounoichi, Jpark217, Lucario., President Venom, Qxii, Railim, Roild, Steve Johns, Teto, ThePiggy, Virlomi, Windbound, agea, lurkingSombres.
    (01:05:58) Current Team: Captain Hook, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee
    (01:05:58) Time: Night 1
    (01:05:58) Make your moves, you only have 25 seconds! :
    (01:05:58) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:05:59) President Venom: instawin
    (01:05:59) Virlomi: Yes, Steve Johns
    (01:06:01) Virlomi: I am female
    (01:06:03) lurkingSombres: Flyyyyyyyy, pupa
    (01:06:03) Steve Johns: :P
    (01:06:05) Roild: i can't do that here.
    (01:06:09) Cereal: inb4 everyone claims tiger lilly
    (01:06:09) Clover: tiger lily, claim
    (01:06:14) ±Game: You have chosen to capture Clover!
    (01:06:14) Roild: Nahhh
    (01:06:19) Roild: But someone should kill me d1
    (01:06:22) Roild: Nah, you won't do it
    (01:06:23) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:06:23) Times Up! :
    (01:06:23) ±Game: Pirate Crewman has become a Captive Pirate!
    (01:06:23) ±Game: Lost Boy has become a Captive Lost Boy!
    (01:06:23) ±Game: Your target (Clover) was guarded!
    (01:06:23) ±Game: Pirate Crewman has become a Captive Pirate!
    (01:06:23) No one died! :
    (01:06:23) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:06:23) Current Roles: Captain Hook, Captive Lost Boy, Captive Pirate, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (01:06:23) Current Players: Cereal, Clover, Idipots, Jounoichi, Jpark217, Lucario., President Venom, Qxii, Railim, Roild, Steve Johns, Teto, ThePiggy, Virlomi, Windbound, agea, lurkingSombres.
    (01:06:23) Current Team: Captain Hook, Captive Pirate, Captive Pirate, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee
    (01:06:23) Time: Day 1
    (01:06:23) You have 20 seconds to debate who are the bad guys! :
    (01:06:23) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:06:23) +Windbound: im lost wut do i do
    (01:06:29) Roild: Kill me, Windbound
    (01:06:32) +Windbound: ok
    (01:06:32) Roild: if you're pan/hook
    (01:06:35) President Venom: roild is bad
    (01:06:36) President Venom: ;/
    (01:06:37) Roild: I am bad
    (01:06:39) Roild: Kill me now
    (01:06:39) President Venom: he was guarded
    (01:06:39) Railim: is this just clanwars
    (01:06:43) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:06:43) Current Roles: Captain Hook, Captive Lost Boy, Captive Pirate, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (01:06:43) Current Players: Cereal, Clover, Idipots, Jounoichi, Jpark217, Lucario., President Venom, Qxii, Railim, Roild, Steve Johns, Teto, ThePiggy, Virlomi, Windbound, agea, lurkingSombres.
    (01:06:43) Current Team: Captain Hook, Captive Pirate, Captive Pirate, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee
    (01:06:43) Time: Night 2
    (01:06:43) Make your moves, you only have 25 seconds! :
    (01:06:43) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:06:44) Roild: ROF
    (01:06:46) Roild: Oh man
    (01:06:47) lurkingSombres: can we vote?
    (01:06:49) Roild: ThePiggy, I wasn't captured
    (01:06:50) ±Game: You have chosen to capture Roild!
    (01:06:51) lurkingSombres: oh shiz
    (01:06:51) Virlomi: no vote here
    (01:06:52) Roild: so I didn't die
    (01:06:53) lurkingSombres: anotehr night
    (01:06:56) ThePiggy: lol
    (01:07:02) ThePiggy: Only captives can be killed
    (01:07:04) Roild: ^
    (01:07:08) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:07:08) Times Up! :
    (01:07:08) ±Game: Lost Boy has become a Captive Lost Boy!
    (01:07:08) ±Game: Your target (Roild) couldn't be converted!
    (01:07:08) ±Game: Captive Pirate has become a Pirate Crewman!
    (01:07:08) ±Game: Pirate Crewman has become a Captive Pirate!
    (01:07:08) No one died! :
    (01:07:08) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:07:08) Current Roles: Captain Hook, Captive Lost Boy, Captive Lost Boy, Captive Pirate, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (01:07:08) Current Players: Cereal, Clover, Idipots, Jounoichi, Jpark217, Lucario., President Venom, Qxii, Railim, Roild, Steve Johns, Teto, ThePiggy, Virlomi, Windbound, agea, lurkingSombres.
    (01:07:08) Current Team: Captain Hook, Captive Pirate, Captive Pirate, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee
    (01:07:08) Time: Day 2
    (01:07:08) You have 20 seconds to debate who are the bad guys! :
    (01:07:08) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:07:10) Roild: Pan/hook should claim
    (01:07:16) Roild: so their team can tell them who's captured
    (01:07:17) President Venom: hueheuhhue
    (01:07:21) President Venom: take that lurkingsombrero
    (01:07:21) President Venom: s
    (01:07:25) lurkingSombres: Poisoned
    (01:07:28) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:07:28) Current Roles: Captain Hook, Captive Lost Boy, Captive Lost Boy, Captive Pirate, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (01:07:28) Current Players: Cereal, Clover, Idipots, Jounoichi, Jpark217, Lucario., President Venom, Qxii, Railim, Roild, Steve Johns, Teto, ThePiggy, Virlomi, Windbound, agea, lurkingSombres.
    (01:07:28) Current Team: Captain Hook, Captive Pirate, Captive Pirate, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee
    (01:07:28) Time: Night 3
    (01:07:28) Make your moves, you only have 25 seconds! :
    (01:07:28) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:07:28) Roild: kill lurking
    (01:07:29) agea: I am totally confused.
    (01:07:30) Roild: nvm
    (01:07:31) Virlomi: poisoned = captured
    (01:07:34) ±Game: You have chosen to capture lurkingSombres!
    (01:07:38) Virlomi: jsyk
    (01:07:39) agea: And lagging
    (01:07:41) Roild: pan/hook can kill captives
    (01:07:42) agea: a lot
    (01:07:48) Roild: and people can "capture" back allies
    (01:07:50) ThePiggy: Who are Pan and Hook. They should be claiming
    (01:07:53) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:07:53) Times Up! :
    (01:07:53) ±Game: Captive Pirate has become a Pirate Crewman!
    (01:07:53) ±Game: Your target (lurkingSombres) has been converted and is now a Pirate Crewman!
    (01:07:53) ±Game: Captive Lost Boy has become a Lost Boy!
    (01:07:53) ±Game: Pirate Crewman has become a Captive Pirate!
    (01:07:53) ±Game: You have been converted and changed roles!
    (01:07:53) ±Game: You are a Captive Pirate!
    (01:07:53) ±Game: You are a hostage. You can't do anything.
    (01:07:53) ±Game: You have 2 days to live.
    (01:07:53) ±Kill: Clover (Captive Lost Boy) died!
    (01:07:53) ±Kill: Jounoichi (Captive Pirate) died!
    (01:07:53) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:07:53) Current Roles: Captain Hook, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (01:07:53) Current Players: Cereal, Idipots, Jpark217, Lucario., President Venom, Qxii, Railim, Roild, Steve Johns, Teto, ThePiggy, Virlomi, Windbound, agea, lurkingSombres.
    (01:07:53) Current Team: Captain Hook, Captive Pirate, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee
    (01:07:54) Time: Day 3
    (01:07:54) You have 20 seconds to debate who are the bad guys! :
    (01:07:54) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:07:54) Roild: ^
    (01:07:58) Lucario.: pan here
    (01:08:04) agea: I'm hook
    (01:08:08) President Venom: i am on a role with these captures
    (01:08:11) President Venom: i got 2 pirates
    (01:08:12) Steve Johns: this theme suck
    (01:08:12) lurkingSombres: now battle to the death, you two
    (01:08:13) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:08:13) Current Roles: Captain Hook, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (01:08:13) Current Players: Cereal, Idipots, Jpark217, Lucario., President Venom, Qxii, Railim, Roild, Steve Johns, Teto, ThePiggy, Virlomi, Windbound, agea, lurkingSombres.
    (01:08:13) Current Team: Captain Hook, Captive Pirate, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee
    (01:08:13) Time: Night 4
    (01:08:13) Make your moves, you only have 25 seconds! :
    (01:08:13) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:08:13) Steve Johns: i guess
    (01:08:17) lurkingSombres: same
    (01:08:37) ThePiggy: All pirates PM agea
    (01:08:37) Virlomi: you guys, new =/= bad
    (01:08:38) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:08:38) Times Up! :
    (01:08:38) ±Game: Lost Boy has become a Captive Lost Boy!
    (01:08:38) ±Game: Tinkerbell has become a Captive Tinkerbell!
    (01:08:38) ±Game: Pirate Crewman has become a Captive Pirate!
    (01:08:38) ±Game: Pirate Crewman has become a Captive Pirate!
    (01:08:38) ±Game: Captive Pirate has become a Pirate Crewman!
    (01:08:38) ±Game: You have been converted and changed roles!
    (01:08:38) ±Game: You are a Pirate Crewman!
    (01:08:38) ±Game: Help Captain Hook /capture Tiger Lily and rescue your fellow crew members from the Lost Boys. Capture the enemy to eliminate them. Connect with your captain for orders.
    (01:08:38) No one died! :
    (01:08:38) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:08:38) Current Roles: Captain Hook, Captive Lost Boy, Captive Pirate, Captive Pirate, Captive Tinkerbell, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee.
    (01:08:38) Current Players: Cereal, Idipots, Jpark217, Lucario., President Venom, Qxii, Railim, Roild, Steve Johns, Teto, ThePiggy, Virlomi, Windbound, agea, lurkingSombres.
    (01:08:38) Current Team: Captain Hook, Captive Pirate, Captive Pirate, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee
    (01:08:38) Time: Day 4
    (01:08:38) You have 20 seconds to debate who are the bad guys! :
    (01:08:38) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:08:47) President Venom: awww
    (01:08:50) President Venom: i was captured
    (01:08:51) Roild: oshit
    (01:08:51) President Venom: ]:
    (01:08:52) +Windbound: what the hell
    (01:08:53) Roild: tinkerbell captured
    (01:08:58) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:08:58) Current Roles: Captain Hook, Captive Lost Boy, Captive Pirate, Captive Pirate, Captive Tinkerbell, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee.
    (01:08:58) Current Players: Cereal, Idipots, Jpark217, Lucario., President Venom, Qxii, Railim, Roild, Steve Johns, Teto, ThePiggy, Virlomi, Windbound, agea, lurkingSombres.
    (01:08:58) Current Team: Captain Hook, Captive Pirate, Captive Pirate, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee
    (01:08:58) Time: Night 5
    (01:08:58) Make your moves, you only have 25 seconds! :
    (01:08:58) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:09:00) Jpark217: late to the party, but new theme?
    (01:09:01) Lucario.: omfg
    (01:09:08) ThePiggy: Yes, new theme
    (01:09:08) Roild: what, Windbound?
    (01:09:08) Lucario.: fuck spelling
    (01:09:08) Idipots: soeone cap me back, quick!
    (01:09:19) +Windbound: no idea what's going on
    (01:09:21) ±Game: You are a Pirate Crewman!
    (01:09:21) ±Game: Help Captain Hook /capture Tiger Lily and rescue your fellow crew members from the Lost Boys. Capture the enemy to eliminate them. Connect with your captain for orders.
    (01:09:23) Qxii: no. idipots tinker
    (01:09:28) Teto: me neither Windbound
    (01:09:29) ±Game: You have chosen to capture Idipots!
    (01:09:29) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:09:29) Times Up! :
    (01:09:29) ±Game: Captive Tinkerbell has become a Tinkerbell!
    (01:09:29) ±Game: Your target (Idipots) has been converted and is now a Tinkerbell!
    (01:09:29) ±Game: Captive Pirate has become a Pirate Crewman!
    (01:09:29) ±Game: Pirate Crewman has become a Captive Pirate!
    (01:09:29) No one died! :
    (01:09:29) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:09:30) Current Roles: Captain Hook, Captive Lost Boy, Captive Pirate, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (01:09:30) Current Players: Cereal, Idipots, Jpark217, Lucario., President Venom, Qxii, Railim, Roild, Steve Johns, Teto, ThePiggy, Virlomi, Windbound, agea, lurkingSombres.
    (01:09:30) Current Team: Captain Hook, Captive Pirate, Captive Pirate, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee
    (01:09:30) Time: Day 5
    (01:09:30) You have 20 seconds to debate who are the bad guys! :
    (01:09:30) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:09:37) President Venom: this theme
    (01:09:38) Idipots: much better
    (01:09:39) President Venom: is really bad
    (01:09:42) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:09:42) ±Game: Peter Pan has decided to kill a hostage! Teto has been executed!
    (01:09:42) ±Kill: Teto (Captive Pirate) died!
    (01:09:42) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:09:46) Cereal: It's interesting
    (01:09:46) +Windbound: um
    (01:09:47) Roild: Executed
    (01:09:48) +Windbound: pro?
    (01:09:48) President Venom: THERE YOU GO
    (01:09:49) Virlomi: oh
    (01:09:49) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:09:49) Current Roles: Captain Hook, Captive Lost Boy, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (01:09:49) Current Players: Cereal, Idipots, Jpark217, Lucario., President Venom, Qxii, Railim, Roild, Steve Johns, ThePiggy, Virlomi, Windbound, agea, lurkingSombres.
    (01:09:49) Current Team: Captain Hook, Captive Pirate, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee
    (01:09:49) Time: Night 6
    (01:09:49) Make your moves, you only have 25 seconds! :
    (01:09:49) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:09:51) ±Game: You have chosen to capture Idipots!
    (01:09:59) President Venom: i'm dying tonight
    (01:10:01) President Venom: lost boy out
    (01:10:04) President Venom: now i can see my mommy
    (01:10:08) Jpark217: dis theme is bad
    (01:10:14) ThePiggy: You just don't know it yet
    (01:10:14) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:10:14) Times Up! :
    (01:10:14) ±Game: Pirate Crewman has become a Captive Pirate!
    (01:10:14) ±Game: Your target (Idipots) was guarded!
    (01:10:14) ±Game: Pirate Crewman has become a Captive Pirate!
    (01:10:14) ±Game: Smee has become a Captive Smee!
    (01:10:14) ±Kill: President Venom (Captive Lost Boy) died!
    (01:10:14) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:10:14) Current Roles: Captain Hook, Captive Pirate, Captive Pirate, Captive Pirate, Captive Smee, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Tinkerbell.
    (01:10:15) Current Players: Cereal, Idipots, Jpark217, Lucario., Qxii, Railim, Roild, Steve Johns, ThePiggy, Virlomi, Windbound, agea, lurkingSombres.
    (01:10:15) Current Team: Captain Hook, Captive Pirate, Captive Pirate, Captive Pirate, Captive Smee, Pirate Crewman
    (01:10:15) Time: Day 6
    (01:10:15) You have 20 seconds to debate who are the bad guys! :
    (01:10:15) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:10:20) Virlomi: oh
    (01:10:21) Jpark217: i vote delete theme
    (01:10:26) +Windbound: hey get Cereal Peter
    (01:10:27) Idipots: do it Peter, knife the Smee@!
    (01:10:28) Virlomi: you guys, just because it's new
    (01:10:29) Qxii: its never gonna end
    (01:10:31) Idipots: and I evaded a kill
    (01:10:33) Virlomi: does not mean bad
    (01:10:34) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:10:34) Current Roles: Captain Hook, Captive Pirate, Captive Pirate, Captive Pirate, Captive Smee, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Tinkerbell.
    (01:10:34) Current Players: Cereal, Idipots, Jpark217, Lucario., Qxii, Railim, Roild, Steve Johns, ThePiggy, Virlomi, Windbound, agea, lurkingSombres.
    (01:10:34) Current Team: Captain Hook, Captive Pirate, Captive Pirate, Captive Pirate, Captive Smee, Pirate Crewman
    (01:10:34) Time: Night 7
    (01:10:34) Make your moves, you only have 25 seconds! :
    (01:10:34) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:10:34) Idipots: two of them
    (01:10:40) Cereal: I'm just a captive
    (01:10:43) Qxii: cap back
    (01:10:44) Jpark217: well i liked that building one
    (01:10:58) Roild: BTW
    (01:10:59) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:10:59) Times Up! :
    (01:10:59) ±Kill: Jpark217 (Captive Pirate) died!
    (01:10:59) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:10:59) Current Roles: Captain Hook, Captive Pirate, Captive Pirate, Captive Smee, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Tinkerbell.
    (01:10:59) Current Players: Cereal, Idipots, Lucario., Qxii, Railim, Roild, Steve Johns, ThePiggy, Virlomi, Windbound, agea, lurkingSombres.
    (01:10:59) Current Team: Captain Hook, Captive Pirate, Captive Pirate, Captive Smee, Pirate Crewman
    (01:10:59) Time: Day 7
    (01:10:59) You have 20 seconds to debate who are the bad guys! :
    (01:10:59) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:11:03) Roild: Lost boys should PM lucario
    (01:11:08) Qxii: monument was just as confusing...
    (01:11:12) +Windbound: peter pan should kill Cereal
    (01:11:13) +Windbound: js
    (01:11:13) ThePiggy: Teams have to PM your leaders to win
    (01:11:15) Idipots: Its fairly obv who I am at this point
    (01:11:17) Qxii: Capture me back
    (01:11:19) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:11:19) Current Roles: Captain Hook, Captive Pirate, Captive Pirate, Captive Smee, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Tinkerbell.
    (01:11:19) Current Players: Cereal, Idipots, Lucario., Qxii, Railim, Roild, Steve Johns, ThePiggy, Virlomi, Windbound, agea, lurkingSombres.
    (01:11:19) Current Team: Captain Hook, Captive Pirate, Captive Pirate, Captive Smee, Pirate Crewman
    (01:11:19) Time: Night 8
    (01:11:19) Make your moves, you only have 25 seconds! :
    (01:11:19) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:11:23) Roild: Lucario.?
    (01:11:24) +Windbound: smh Peter
    (01:11:29) Idipots: ffs peter
    (01:11:36) Roild: What's hook doing btw?
    (01:11:36) lurkingSombres: everyone dies now :p
    (01:11:37) ±Game: You have chosen to capture Idipots!
    (01:11:40) lurkingSombres: lol
    (01:11:40) Cereal: Dying sigh
    (01:11:43) Railim: is peter afk
    (01:11:44) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:11:44) Times Up! :
    (01:11:44) ±Game: Your target (Idipots) was guarded!
    (01:11:44) ±Game: Pirate Crewman has become a Captive Pirate!
    (01:11:44) ±Game: You have been converted and changed roles!
    (01:11:44) ±Game: You are a Captive Pirate!
    (01:11:44) ±Game: You are a hostage. You can't do anything.
    (01:11:44) ±Game: Captive Pirate has become a Pirate Crewman!
    (01:11:44) ±Kill: Cereal (Captive Smee) died!
    (01:11:44) ±Game: You have 2 days to live.
    (01:11:45) ±Kill: Qxii (Captive Pirate) died!
    (01:11:45) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:11:45) Current Roles: Captain Hook, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Tinkerbell.
    (01:11:45) Current Players: Idipots, Lucario., Railim, Roild, Steve Johns, ThePiggy, Virlomi, Windbound, agea, lurkingSombres.
    (01:11:45) Current Team: Captain Hook, Captive Pirate, Pirate Crewman
    (01:11:45) Time: Day 8
    (01:11:45) You have 20 seconds to debate who are the bad guys! :
    (01:11:45) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:11:49) Lucario.: WOW
    (01:11:56) Idipots: hook keeps trying to kill me
    (01:11:59) Idipots: apparently
    (01:12:02) Roild: rofl
    (01:12:03) Virlomi: pan go
    (01:12:04) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:12:04) Current Roles: Captain Hook, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Tinkerbell.
    (01:12:04) Current Players: Idipots, Lucario., Railim, Roild, Steve Johns, ThePiggy, Virlomi, Windbound, agea, lurkingSombres.
    (01:12:04) Current Team: Captain Hook, Captive Pirate, Pirate Crewman
    (01:12:04) Time: Night 9
    (01:12:04) Make your moves, you only have 25 seconds! :
    (01:12:04) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:12:08) Steve Johns: railim is bad
    (01:12:17) Steve Johns: kill
    (01:12:19) Railim: i don't think so
    (01:12:20) Steve Johns: peter
    (01:12:23) Railim: Nope I'm not
    (01:12:25) Railim: according to /sides
    (01:12:29) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:12:29) Times Up! :
    (01:12:29) ±Game: Lost Boy has become a Captive Lost Boy!
    (01:12:29) ±Game: You have 1 days to live.
    (01:12:29) No one died! :
    (01:12:29) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:12:29) Current Roles: Captain Hook, Captive Lost Boy, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Tinkerbell.
    (01:12:29) Current Players: Idipots, Lucario., Railim, Roild, Steve Johns, ThePiggy, Virlomi, Windbound, agea, lurkingSombres.
    (01:12:29) Current Team: Captain Hook, Captive Pirate, Pirate Crewman
    (01:12:29) Time: Day 9
    (01:12:30) You have 20 seconds to debate who are the bad guys! :
    (01:12:30) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:12:45) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:12:45) ±Game: Peter Pan has decided to kill a hostage! ThePiggy has been executed!
    (01:12:45) ±Kill: ThePiggy (Captive Pirate) died!
    (01:12:45) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:12:48) Roild: Woo
    (01:12:49) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:12:49) Current Roles: Captain Hook, Captive Lost Boy, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Tinkerbell.
    (01:12:49) Current Players: Idipots, Lucario., Railim, Roild, Steve Johns, Virlomi, Windbound, agea, lurkingSombres.
    (01:12:49) Time: Night 10
    (01:12:49) Make your moves, you only have 25 seconds! :
    (01:12:49) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:12:50) Virlomi: whoa
    (01:12:54) Roild: agea, why aren't you killing/
    (01:12:54) Virlomi: I'm captured
    (01:12:58) Roild: or getting pms?
    (01:12:59) Virlomi: lost boys, capture me baxck
    (01:13:01) Virlomi: for the team!
    (01:13:03) Virlomi: back*
    (01:13:04) Roild: Team!
    (01:13:08) Idipots: ok, lost boys, hop to it. Ive gotta stay uncaptured
    (01:13:08) agea: Everyone who PMd me is dead.
    (01:13:12) Roild: also, capture lurkingSombres
    (01:13:14) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:13:14) Times Up! :
    (01:13:14) ±Game: Lost Boy has become a Captive Lost Boy!
    (01:13:14) ±Game: Captive Lost Boy has become a Lost Boy!
    (01:13:14) No one died! :
    (01:13:14) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:13:14) Current Roles: Captain Hook, Captive Lost Boy, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Tinkerbell.
    (01:13:14) Current Players: Idipots, Lucario., Railim, Roild, Steve Johns, Virlomi, Windbound, agea, lurkingSombres.
    (01:13:14) Time: Day 10
    (01:13:15) You have 20 seconds to debate who are the bad guys! :
    (01:13:15) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:13:19) Virlomi: thank you...
    (01:13:25) Steve Johns: help me
    (01:13:27) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:13:27) ±Game: Captain Hook has decided to kill a hostage! Steve Johns has been executed!
    (01:13:27) ±Kill: Steve Johns (Captive Lost Boy) died!
    (01:13:27) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:13:29) Roild: ouch
    (01:13:31) Virlomi: :/
    (01:13:32) Idipots: ack
    (01:13:34) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:13:34) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Tinkerbell.
    (01:13:34) Current Players: Idipots, Lucario., Railim, Roild, Virlomi, Windbound, agea, lurkingSombres.
    (01:13:34) Time: Night 11
    (01:13:34) Make your moves, you only have 25 seconds! :
    (01:13:34) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:13:35) Roild: get lurkingSombres
    (01:13:37) +Windbound: so like
    (01:13:38) +Windbound: who is Hook
    (01:13:39) Virlomi: ok
    (01:13:42) Roild: agea is, Windboundn
    (01:13:43) Virlomi: agea is
    (01:13:46) +Windbound: oh ok
    (01:13:52) Idipots: cap lurkingSombres and then Peter, kill him
    (01:13:59) Roild: ^
    (01:13:59) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:13:59) Times Up! :
    (01:13:59) ±Game: Lost Boy has become a Captive Lost Boy!
    (01:13:59) ±Game: Pirate Crewman has become a Captive Pirate!
    (01:13:59) No one died! :
    (01:14:00) ±Game: The Lost Boys, Idipots, Roild, Virlomi, Railim, Lucario. and Windbound, survived to play another day!
    (01:14:00) ±Game: The Pirates (lurkingSombres and agea) lose!
    (01:14:00) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (01:14:02) Roild: Woo!
    (01:14:04) +Windbound: uhh yay I win
    (01:14:07) Virlomi: lol yay
    (01:14:07) Idipots: HELL YEAH!
    (01:14:09) President Venom: never again
    (01:14:12) Roild: That wasn't too bad. :3
    (01:14:19) Virlomi: I liked that game
    [/HIDE]

    It was a little rough, but no one knew what they were doing yet. And no bugs, so yay!
    I am going to write up a little tutorial for each role so people have an idea how to play it. :)
     
  23. ThePiggy

    ThePiggy New Member

    Joined:
    Mar 6, 2013
    Messages:
    21
    Likes Received:
    0
    PO Trainer Name:
    ThePiggy
    Simple tutorial for each role.
    http://pastebin.com/raw.php?i=d9BNxHBa

    Tiger Lily-
    You are the role that each side needs in order to win the game. You are sided with the Lost Boys. If you are killed, the game ends and the team that killed you, loses. You can /inspect people to find out who to trust. You should PM Peter Pan so he can send a Lost Boy to capture you. Tinkerbell should guard you once you are Free Tiger Lily to keep the Pirates from capturing you. Inspect people each night and tell Peter Pan about your findings so he can eliminate the Pirates.

    Peter Pan-
    You are the leader of the Lost Boys. You should claim your role in chat so your team can PM you. Tiger Lily will PM you so you can send a Lost Boy to capture her. Once Tiger Lily is free, have Tinkerbell guard her so the Pirates can't capture her. The Lost Boys should tell you who they capture so you can /kill the Captive Pirates during the day. You can ONLY kill captives. Do not kill Tiger Lily or you automatically lose the game. You win by capturing/killing all the Pirates except Hook.

    Captain Hook-
    You are the leader of the Pirates. You should claim your role in chat so your team can PM you. You will know who Tiger Lily is at game start. Send your Crewmen to capture Tiger Lily. Once Tiger Lily is captured, have Smee guard her so the Lost Boys can't set her free. The Pirate Crewmen should tell you who they capture so you can /kill the Captive Lost Boys during the day. You can ONLY kill captives. Do not kill Tiger Lily or you will automatically lose the game. You win by capturing/killing all the Lost Boys except Pan.

    Tinkerbell-
    You are the guardian of the Lost Boys. You should PM Peter Pan once he claims. Guard yourself night 1. Pan will tell you who Tiger Lily is. You should /guard Tiger Lily once she has been freed. It may be that the Pirates get Tiger Lily first. You can help /capture Tiger Lily back from them. You can also capture back Captive Lost Boys to keep them from being executed by Captian Hook. You win by capturing/killing all the Pirates except Hook.

    Smee-
    You are the guardian of the Lost Boys. You should PM Captain Hook once he claims. Guard yourself night 1. Hook will tell you who Tiger Lily is. You should /guard Tiger Lily once she has been taken hostage. It may be that the Lost Boys get Tiger Lily first. You can help /capture Tiger Lily back from them. You can also capture back Captive Pirates to keep them from being executed by Peter Pan. You win by capturing/killing all the Lost Boys except Pan.

    Lost Boy-
    You are an average Lost Boy. You should PM Peter Pan once he claims. He should tell you who Tiger Lily is so you can /capture her. You will also be capturing Pirates. Tell Peter Pan who you capture so he can execute the Captive Pirates. You can also capture Captive Lost Boys to rescue them. If you find yourself captured, get your team to rescue you before the 3rd night or you will be executed. You win by capturing/killing all the Pirates except Hook.

    Pirate Crewmen-
    You are an average Pirate Crewmen. You should PM Captain Hook once he claims. He should tell you who Tiger Lily is so you can /capture her. You will also be capturing Lost Boys. Tell Captain Hook who you capture so he can execute the Captive Lost Boys. You can also capture Captive Pirates to rescue them. If you find yourself captured, get your team to rescue you before the 3rd night or you will be executed. You win by capturing/killing all the Lost Boys except Pan.
    [/HIDE]
     
  24. Roild

    Roild Member

    Joined:
    Jul 21, 2012
    Messages:
    861
    Likes Received:
    11
    PO Trainer Name:
    Roild
    A log of a game:

    (03:18:20) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:18:20) Times Up! :
    (03:18:20) The Roles have been Decided! :
    (03:18:20) ±Game: You are a Lost Boy!
    (03:18:20) ±Game: Help Peter Pan rescue Tiger Lily and your captive team mates with /capture at night. Capture the pirate crew to get rid of them. Connect with your leader for your orders.
    (03:18:20) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (03:18:20) Current Players: Ally kat, Cereal, Idipots, Jounoichi, Jpark217, PancakesFTW, Roild, Steve Johns, Teto, agea, n0s4ra2.
    (03:18:20) Current Team: Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Tinkerbell
    (03:18:20) Time: Night 1
    (03:18:20) Make your moves, you only have 25 seconds! :
    (03:18:20) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:18:24) Idipots: alright then
    (03:18:25) Ally kat: hey om peter pan:D!
    (03:18:27) Ally kat: im*
    (03:18:29) Idipots: Capn Hook here
    (03:18:37) Jpark217: lost boy
    (03:18:40) Idipots: PM me who you guys cap Pirates
    (03:18:45) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:18:45) Times Up! :
    (03:18:45) ±Game: Pirate Crewman has become a Captive Pirate!
    (03:18:45) No one died! :
    (03:18:45) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:18:45) Current Roles: Captain Hook, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (03:18:45) Current Players: Ally kat, Cereal, Idipots, Jounoichi, Jpark217, PancakesFTW, Roild, Steve Johns, Teto, agea, n0s4ra2.
    (03:18:45) Current Team: Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Tinkerbell
    (03:18:45) Time: Day 1
    (03:18:45) You have 20 seconds to debate who are the bad guys! :
    (03:18:45) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:18:46) Idipots: Smee, bg yourself, not me
    (03:18:47) Ally kat: so who should i rand kill:3
    (03:18:50) Roild: dat crewman
    (03:19:05) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:19:05) Current Roles: Captain Hook, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (03:19:05) Current Players: Ally kat, Cereal, Idipots, Jounoichi, Jpark217, PancakesFTW, Roild, Steve Johns, Teto, agea, n0s4ra2.
    (03:19:05) Current Team: Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Tinkerbell
    (03:19:05) Time: Night 2
    (03:19:05) Make your moves, you only have 25 seconds! :
    (03:19:05) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:19:05) Ally kat: jpark
    (03:19:07) Ally kat: evaded my kill
    (03:19:07) Teto: ally you can only daykill captives
    (03:19:12) ±Game: You have chosen to capture Steve Johns!
    (03:19:15) Ally kat: what is this
    (03:19:20) Roild: Define "this"
    (03:19:22) n0s4ra2: sooo
    (03:19:29) Steve Johns: pls
    (03:19:30) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:19:30) Times Up! :
    (03:19:30) ±Game: Tinkerbell has become a Captive Tinkerbell!
    (03:19:30) ±Game: Your target (Steve Johns) has been converted and is now a Captive Tinkerbell!
    (03:19:30) No one died! :
    (03:19:30) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:19:30) Current Roles: Captain Hook, Captive Pirate, Captive Tinkerbell, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Smee.
    (03:19:30) Current Players: Ally kat, Cereal, Idipots, Jounoichi, Jpark217, PancakesFTW, Roild, Steve Johns, Teto, agea, n0s4ra2.
    (03:19:30) Current Team: Captive Tinkerbell, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan
    (03:19:30) Time: Day 2
    (03:19:30) You have 20 seconds to debate who are the bad guys! :
    (03:19:30) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:19:32) Steve Johns: don't kill me
    (03:19:33) n0s4ra2: we vote idipots cause hook?
    (03:19:36) Ally kat: tinker bell :c
    (03:19:36) n0s4ra2: nuuuu tinkerbell D:
    (03:19:44) Steve Johns: I am TB
    (03:19:45) Idipots: PM me who you hit ffs
    (03:19:45) Teto: there's no votephase
    (03:19:47) Steve Johns: ;p
    (03:19:48) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:19:48) ±Game: Captain Hook has decided to kill a hostage! Steve Johns has been executed!
    (03:19:48) ±Kill: Steve Johns (Captive Tinkerbell) died!
    (03:19:48) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:19:50) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:19:50) Current Roles: Captain Hook, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Smee.
    (03:19:50) Current Players: Ally kat, Cereal, Idipots, Jounoichi, Jpark217, PancakesFTW, Roild, Teto, agea, n0s4ra2.
    (03:19:50) Current Team: Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan
    (03:19:50) Time: Night 3
    (03:19:50) Make your moves, you only have 25 seconds! :
    (03:19:50) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:19:53) agea: Only murder, no votes
    (03:19:57) n0s4ra2: oh ok
    (03:20:04) Idipots: Cmon Peter
    (03:20:08) ±Game: You have chosen to capture Jounoichi!
    (03:20:09) Idipots: you aint got nothin on this
    (03:20:15) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:20:15) Times Up! :
    (03:20:15) ±Game: Lost Boy has become a Captive Lost Boy!
    (03:20:15) ±Game: Smee has become a Captive Smee!
    (03:20:15) ±Game: Your target (Jounoichi) has been converted and is now a Captive Smee!
    (03:20:15) ±Game: Pirate Crewman has become a Captive Pirate!
    (03:20:15) ±Kill: agea (Captive Pirate) died!
    (03:20:15) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:20:15) Current Roles: Captain Hook, Captive Lost Boy, Captive Pirate, Captive Smee, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman.
    (03:20:15) Current Players: Ally kat, Cereal, Idipots, Jounoichi, Jpark217, PancakesFTW, Roild, Teto, n0s4ra2.
    (03:20:15) Current Team: Captive Lost Boy, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan
    (03:20:15) Time: Day 3
    (03:20:15) You have 20 seconds to debate who are the bad guys! :
    (03:20:15) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:20:15) Roild: :S
    (03:20:23) Idipots: Smee PM me now
    (03:20:29) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:20:29) ±Game: Peter Pan has decided to kill a hostage! Jounoichi has been executed!
    (03:20:29) ±Kill: Jounoichi (Captive Smee) died!
    (03:20:29) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:20:32) President Venom logged out.
    (03:20:32) ~Unknown~ left the channel.
    (03:20:32) Idipots: aDAmn you
    (03:20:34) Ally kat: yayy
    (03:20:35) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:20:35) Current Roles: Captain Hook, Captive Lost Boy, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman.
    (03:20:35) Current Players: Ally kat, Cereal, Idipots, Jpark217, PancakesFTW, Roild, Teto, n0s4ra2.
    (03:20:35) Current Team: Captive Lost Boy, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan
    (03:20:35) Time: Night 4
    (03:20:35) Make your moves, you only have 25 seconds! :
    (03:20:35) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:20:40) Roild: This competitiveness
    (03:20:48) Ally kat: i dont like it
    (03:20:50) Ally kat: :s
    (03:20:55) ±Game: You have chosen to capture PancakesFTW!
    (03:21:00) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:21:00) Times Up! :
    (03:21:00) ±Game: Lost Boy has become a Captive Lost Boy!
    (03:21:00) ±Game: You have been converted and changed roles!
    (03:21:00) ±Game: You are a Captive Lost Boy!
    (03:21:00) ±Game: You are a hostage. You can't do anything.
    (03:21:00) ±Game: You have 2 days to live.
    (03:21:00) No one died! :
    (03:21:00) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:21:00) Current Roles: Captain Hook, Captive Lost Boy, Captive Lost Boy, Captive Pirate, Hiding Tiger Lily, Lost Boy, Peter Pan, Pirate Crewman.
    (03:21:00) Current Players: Ally kat, Cereal, Idipots, Jpark217, PancakesFTW, Roild, Teto, n0s4ra2.
    (03:21:00) Current Team: Captive Lost Boy, Captive Lost Boy, Hiding Tiger Lily, Lost Boy, Peter Pan
    (03:21:00) Time: Day 4
    (03:21:00) You have 20 seconds to debate who are the bad guys! :
    (03:21:00) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:21:10) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:21:10) ±Game: Captain Hook has decided to kill a hostage! Jpark217 has been executed!
    (03:21:10) ±Kill: Jpark217 (Captive Lost Boy) died!
    (03:21:10) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:21:19) Ally kat: why :c
    (03:21:20) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:21:20) Current Roles: Captain Hook, Captive Lost Boy, Captive Pirate, Hiding Tiger Lily, Lost Boy, Peter Pan, Pirate Crewman.
    (03:21:20) Current Players: Ally kat, Cereal, Idipots, PancakesFTW, Roild, Teto, n0s4ra2.
    (03:21:20) Current Team: Captive Lost Boy, Hiding Tiger Lily, Lost Boy, Peter Pan
    (03:21:20) Time: Night 5
    (03:21:20) Make your moves, you only have 25 seconds! :
    (03:21:20) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:21:22) PancakesFTW: wow
    (03:21:26) Teto: Crewman on me
    (03:21:31) Idipots: yes plz
    (03:21:36) Idipots: Crewman save teto
    (03:21:40) Li Q. Assir joined the channel.
    (03:21:45) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:21:45) Times Up! :
    (03:21:45) ±Game: Captive Lost Boy has become a Lost Boy!
    (03:21:45) ±Game: You have been converted and changed roles!
    (03:21:45) ±Game: You are a Lost Boy!
    (03:21:45) ±Game: Help Peter Pan rescue Tiger Lily and your captive team mates with /capture at night. Capture the pirate crew to get rid of them. Connect with your leader for your orders.
    (03:21:45) ±Kill: Teto (Captive Pirate) died!
    (03:21:45) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:21:45) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman.
    (03:21:45) Current Players: Ally kat, Cereal, Idipots, PancakesFTW, Roild, n0s4ra2.
    (03:21:45) Current Team: Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan
    (03:21:45) Time: Day 5
    (03:21:45) You have 20 seconds to debate who are the bad guys! :
    (03:21:45) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:21:49) Idipots: aor dont...
    (03:21:50) Roild: lol
    (03:21:53) Idipots: and never pm me
    (03:21:54) Roild: i was captured
    (03:21:56) Idipots: dick
    (03:21:56) Li Q. Assir left the channel.
    (03:21:59) ±Game: You evaded a kill!
    (03:22:00) Ally kat: so pirate crew man
    (03:22:01) n0s4ra2: this game
    (03:22:01) Roild: Hah!
    (03:22:02) Ally kat: then we win?
    (03:22:02) n0s4ra2: is weird
    (03:22:03) Roild: You fell for it
    (03:22:05) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:22:05) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman.
    (03:22:05) Current Players: Ally kat, Cereal, Idipots, PancakesFTW, Roild, n0s4ra2.
    (03:22:05) Current Team: Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan
    (03:22:05) Time: Night 6
    (03:22:05) Make your moves, you only have 25 seconds! :
    (03:22:05) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:22:06) Teto: idipots watch your language
    (03:22:10) Li Q. Assir joined the channel.
    (03:22:11) Ally kat: oh captain hook is evil
    (03:22:14) Heartgold12 left the channel.
    (03:22:17) ±Game: You have chosen to capture PancakesFTW!
    (03:22:19) Windbound logged out.
    (03:22:19) ~Unknown~ left the channel.
    (03:22:20) Ally kat: right:P derp
    (03:22:29) n0s4ra2: why no rampage crocodile
    (03:22:30) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:22:30) Times Up! :
    (03:22:30) ±Game: Lost Boy has become a Captive Lost Boy!
    (03:22:30) ±Game: Pirate Crewman has become a Captive Pirate!
    (03:22:30) ±Game: Your target (PancakesFTW) has been converted and is now a Captive Pirate!
    (03:22:30) No one died! :
    (03:22:30) ±Game: The Lost Boys, Roild, Ally kat, n0s4ra2 and Cereal, survived to play another day!
    (03:22:30) ±Game: The Pirates (Idipots and PancakesFTW) lose!
    (03:22:30) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:22:32) n0s4ra2: with a revealing day kill
    (03:22:35) Roild: :O
    (03:22:35) Idipots: *sigh*
    (03:22:36) Ally kat: we won!
    (03:22:38) Ally kat: omg yayy!
    (03:22:40) Idipots: thanks PancakesFTW
    (03:22:40) ThePiggy: lol
    (03:22:41) agea: meh
    (03:22:42) n0s4ra2: tick tock
    (03:22:42) Roild: I got the last pirate
    (03:22:46) Roild: ^_^
    (03:22:49) Idipots: for being comepletely useless
    (03:22:56) Roild: :S
    (03:22:57) n0s4ra2: lul
    (03:23:01) n0s4ra2: that raaaage
    (03:23:04) PancakesFTW: youre welcom :)
    (03:23:08) Roild: s'annoying when team doesn't pm
    (03:23:11) Roild: But thats any theme
    (03:23:11) Teto: PancakesFTW were you even around? XD
    (03:23:14) n0s4ra2: ally kat was propane
    (03:23:15) Idipots: oh yeah
    (03:23:19) Idipots: we was doing things
    (03:23:22) Idipots: jsut not pming me
    (03:23:25) Roild: Lol
    (03:23:28) agea: I PMd :P
    (03:23:34) Railim left the channel.
    (03:23:39) Teto: idipots never actually connected tho

    [/HIDE]

    (03:52:33) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:52:33) Times Up! :
    (03:52:33) The Roles have been Decided! :
    (03:52:33) ±Game: You are a Pirate Crewman!
    (03:52:33) ±Game: Help Captain Hook /capture Tiger Lily and rescue your fellow crew members from the Lost Boys. Capture the enemy to eliminate them. Connect with your captain for orders.
    (03:52:33) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (03:52:33) Current Players: Ally kat, Idipots, Jpark217, PancakesFTW, Roild, ShinMegamiTensei, Steve Johns, Teto, ThePiggy, Utsibabu, agea, n0s4ra2.
    (03:52:33) Current Team: Captain Hook, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee
    (03:52:33) Time: Night 1
    (03:52:33) Make your moves, you only have 25 seconds! :
    (03:52:33) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:52:39) agea: hook
    (03:52:43) agea: crewman PM me k
    (03:52:56) Tiffy joined the channel.
    (03:52:57) ThePiggy: Pan claim
    (03:52:58) ±Game: You have chosen to capture Steve Johns!
    (03:52:58) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:52:58) Times Up! :
    (03:52:58) ±Game: Lost Boy has become a Captive Lost Boy!
    (03:52:58) ±Game: Your target (Steve Johns) has been converted and is now a Captive Lost Boy!
    (03:52:58) ±Game: Pirate Crewman has become a Captive Pirate!
    (03:52:58) No one died! :
    (03:52:58) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:52:58) Current Roles: Captain Hook, Captive Lost Boy, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (03:52:58) Current Players: Ally kat, Idipots, Jpark217, PancakesFTW, Roild, ShinMegamiTensei, Steve Johns, Teto, ThePiggy, Utsibabu, agea, n0s4ra2.
    (03:52:58) Current Team: Captain Hook, Captive Pirate, Pirate Crewman, Pirate Crewman, Smee
    (03:52:58) Time: Day 1
    (03:52:58) You have 20 seconds to debate who are the bad guys! :
    (03:52:58) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:52:59) Jpark217: whos peter?
    (03:53:03) ShinMegamiTensei: Tiger Lilly PM me
    (03:53:03) n0s4ra2: me peter
    (03:53:06) Ally kat: wow
    (03:53:06) n0s4ra2: prs pm
    (03:53:08) Ally kat: the hate
    (03:53:11) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:53:11) ±Game: Captain Hook has decided to kill a hostage! Steve Johns has been executed!
    (03:53:11) ±Kill: Steve Johns (Captive Lost Boy) died!
    (03:53:11) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:53:16) Ally kat: me peter?
    (03:53:18) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:53:18) Current Roles: Captain Hook, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (03:53:18) Current Players: Ally kat, Idipots, Jpark217, PancakesFTW, Roild, ShinMegamiTensei, Teto, ThePiggy, Utsibabu, agea, n0s4ra2.
    (03:53:18) Current Team: Captain Hook, Captive Pirate, Pirate Crewman, Pirate Crewman, Smee
    (03:53:18) Time: Night 2
    (03:53:18) Make your moves, you only have 25 seconds! :
    (03:53:18) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:53:23) Ally kat: please use correct grammar hun :3
    (03:53:30) n0s4ra2: i was rushing >_<
    (03:53:39) ±Game: You have chosen to capture Idipots!
    (03:53:43) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:53:43) Times Up! :
    (03:53:43) ±Game: Lost Boy has become a Captive Lost Boy!
    (03:53:43) ±Game: Your target (Idipots) has been converted and is now a Captive Lost Boy!
    (03:53:43) ±Game: Pirate Crewman has become a Captive Pirate!
    (03:53:43) ±Game: You have been converted and changed roles!
    (03:53:43) ±Game: You are a Captive Pirate!
    (03:53:43) ±Game: You are a hostage. You can't do anything.
    (03:53:43) ±Game: You have 2 days to live.
    (03:53:43) No one died! :
    (03:53:43) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:53:43) Current Roles: Captain Hook, Captive Lost Boy, Captive Pirate, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Smee, Tinkerbell.
    (03:53:43) Current Players: Ally kat, Idipots, Jpark217, PancakesFTW, Roild, ShinMegamiTensei, Teto, ThePiggy, Utsibabu, agea, n0s4ra2.
    (03:53:43) Current Team: Captain Hook, Captive Pirate, Captive Pirate, Pirate Crewman, Smee
    (03:53:43) Time: Day 2
    (03:53:43) You have 20 seconds to debate who are the bad guys! :
    (03:53:43) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:53:51) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:53:51) ±Game: Captain Hook has decided to kill a hostage! Idipots has been executed!
    (03:53:51) ±Kill: Idipots (Captive Lost Boy) died!
    (03:53:51) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:53:51) n0s4ra2: tigerlily pm pls
    (03:54:03) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:54:03) Current Roles: Captain Hook, Captive Pirate, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Smee, Tinkerbell.
    (03:54:03) Current Players: Ally kat, Jpark217, PancakesFTW, Roild, ShinMegamiTensei, Teto, ThePiggy, Utsibabu, agea, n0s4ra2.
    (03:54:03) Current Team: Captain Hook, Captive Pirate, Captive Pirate, Pirate Crewman, Smee
    (03:54:03) Time: Night 3
    (03:54:03) Make your moves, you only have 25 seconds! :
    (03:54:03) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:54:18) ThePiggy: Everyone should be PMing their leader
    (03:54:28) ShinMegamiTensei: how to pm
    (03:54:28) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:54:28) Times Up! :
    (03:54:28) ±Game: Smee has become a Captive Smee!
    (03:54:28) ±Game: Tinkerbell has become a Captive Tinkerbell!
    (03:54:28) ±Game: You have 1 days to live.
    (03:54:28) ±Kill: Ally kat (Captive Pirate) died!
    (03:54:28) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:54:28) Current Roles: Captain Hook, Captive Pirate, Captive Smee, Captive Tinkerbell, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman.
    (03:54:28) Current Players: Jpark217, PancakesFTW, Roild, ShinMegamiTensei, Teto, ThePiggy, Utsibabu, agea, n0s4ra2.
    (03:54:28) Current Team: Captain Hook, Captive Pirate, Captive Smee, Pirate Crewman
    (03:54:28) Time: Day 3
    (03:54:28) You have 20 seconds to debate who are the bad guys! :
    (03:54:28) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:54:37) Roild: lol
    (03:54:38) Roild: both captive
    (03:54:43) agea: lol
    (03:54:48) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:54:48) Current Roles: Captain Hook, Captive Pirate, Captive Smee, Captive Tinkerbell, Hiding Tiger Lily, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman.
    (03:54:48) Current Players: Jpark217, PancakesFTW, Roild, ShinMegamiTensei, Teto, ThePiggy, Utsibabu, agea, n0s4ra2.
    (03:54:48) Current Team: Captain Hook, Captive Pirate, Captive Smee, Pirate Crewman
    (03:54:48) Time: Night 4
    (03:54:48) Make your moves, you only have 25 seconds! :
    (03:54:48) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:54:53) ShinMegamiTensei: Rolid is Smee
    (03:54:59) Roild: I'm not smee...
    (03:55:04) ±Game: You are a Captive Pirate!
    (03:55:04) ±Game: You are a hostage. You can't do anything.
    (03:55:08) ShinMegamiTensei: smeered butter
    (03:55:12) Roild: :P
    (03:55:13) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (03:55:13) Times Up! :
    (03:55:13) ±Game: Captive Tinkerbell has become a Tinkerbell!
    (03:55:13) ±Game: Pirate Crewman has become a Captive Pirate!
    (03:55:13) ±Game: You've been killed in the crossfire!
    (03:55:13) ±Kill: Roild (Captive Pirate) died!
    (03:55:13) ±Game: The Lost Boys, ThePiggy, n0s4ra2, ShinMegamiTensei, Jpark217 and Utsibabu, survived to play another day!
    (03:55:13) ±Game: The Pirates (agea, PancakesFTW and Teto) lose!
    [/HIDE]

    You can't really see the amount of PMs. Lots of them, connecting, planning. It all worked out for my team in the first one. In the second one, I fake-claimed to Pan (as a pirate), got all of their info, but still lost because my own team didn't rescue me in time. They also didn't PM Hook, so my info didn't do any good.
     
    Last edited: Mar 28, 2013
  25. 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
    Here's a log, the chat gets a little profane as the game drags on.

    (13:47:22) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***

    (13:47:22) ±Game: ThePiggy started a game with theme Neverland!
    (13:47:22) ±Game: Type /Join to enter the game!
    (13:47:22) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***

    (13:47:22) ±Game: Tiger Lily is being hunted by Captain Hook and his crew. Eliminate your enemy and capture Tiger Lily. Don't kill Tiger Lily or you will lose! (Peter Pan and Captain Hook should claim to connect their teams and organize an attack if they hope for victory!) Role Tutorials: http://pastebin.com/raw.php?i=d9BNxHBa
    (13:47:22) hkjgndrtkuzs: yaaaaaaaaaaay
    (13:47:23) EarlS: was really obvious
    (13:47:24) ±Game: EarlS joined the game!
    (13:47:24) ±Game: hkjgndrtkuzs joined the game!
    (13:47:25) ±Game: ThePiggy joined the game!
    (13:47:26) ±Game: TheSilentOne joined the game!
    (13:47:27) ±Game: Jezza32 joined the game!
    (13:47:27) ±Game: megakarp joined the game!
    (13:47:29) ±Game: Fuu joined the game!
    (13:47:29) ±Game: GoldFtw joined the game!
    (13:47:29) Jezza32: MK here
    (13:47:29) ±Game: Zach is Back joined the game!
    (13:47:29) ±Game: PancakesFTW joined the game!
    (13:47:33) megakarp: Detain on Tahmeed
    (13:47:34) ±Game: TSO_f4ckingbs joined the game!
    (13:47:34) ThePiggy: Read the link, guys
    (13:47:35) Tahmeed joined the channel.
    (13:47:35) Kirbymon23: How exactly did I die?
    (13:47:36) GoldFtw: smh
    (13:47:36) ±Game: Hopkirk joined the game!
    (13:47:37) ±Game: The Magikarp joined the game!
    (13:47:37) ThePiggy: it's a new theme
    (13:47:37) Fuu: MK whyd u change
    (13:47:39) ±Game: Lightning Master joined the game!
    (13:47:39) ±Game: Cragglez joined the game!
    (13:47:40) TSO_f4ckingbs: megakarp quiet.
    (13:47:41) ±Game: Kirbymon23 joined the game!
    (13:47:42) TSO_f4ckingbs: He's new
    (13:47:43) The Magikarp: ugh, neverland seriously?
    (13:47:45) TSO_f4ckingbs: and is being tutored
    (13:47:46) TSO_f4ckingbs: :/
    (13:47:47) megakarp: Oh
    (13:47:49) EarlS: Tahmeed wasnt in the channel
    (13:47:49) megakarp: Nvm,
    (13:47:50) hkjgndrtkuzs: SSBB next ime.
    (13:47:50) Lightning Master: Lol
    (13:47:52) megakarp: Sorry

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

    (13:47:53) EarlS: just saying
    (13:47:54) TSO_f4ckingbs: np
    (13:47:58) Fuu: no, ROTK next time
    (13:47:58) Lightning Master: I should've suspected....
    (13:47:59) ±Game: Jezza32 unjoined the game!
    (13:48:00) TSO_f4ckingbs: Ik EarlS, but he is new
    (13:48:03) EarlS: ik
    (13:48:04) hkjgndrtkuzs: I was an awesome Ax Knight
    (13:48:07) Lightning Master: But Cragglez was AFK for a while
    (13:48:07) Zach is Back: death to the stormcloaks
    (13:48:10) EarlS: but need to teach him the rule?
    (13:48:12) ThePiggy: Hook and Pan should claim
    (13:48:13) Kirbymon23: No, I was Ax
    (13:48:14) *** hkjgndrtkuzs was an awesome Ax Knight
    (13:48:15) The Magikarp: Tahmeed shouldve gone to #Mafia Tutoring before playing though
    (13:48:16) Cragglez: No I wasn't Lightning :V
    (13:48:16) Zach is Back: aww
    (13:48:17) TSO_f4ckingbs: Zach
    (13:48:19) TSO_f4ckingbs: Skyrim
    (13:48:19) Cragglez: I was here the whole time
    (13:48:19) EarlS: Kirbymon23 you were mace
    (13:48:20) TSO_f4ckingbs: <3
    (13:48:21) EarlS: i got you
    (13:48:22) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:48:22) Times Up! :
    (13:48:22) The Roles have been Decided! :
    (13:48:22) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (13:48:22) Current Players: Cragglez, EarlS, Fuu, GoldFtw, Hopkirk, Kirbymon23, Lightning Master, PancakesFTW, TSO_f4ckingbs, The Magikarp, ThePiggy, TheSilentOne, Zach is Back, hkjgndrtkuzs, megakarp.
    (13:48:22) Time: Night 1
    (13:48:22) Make your moves, you only have 25 seconds! :
    (13:48:22) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:48:25) hkjgndrtkuzs: Both of us were Ax knights
    (13:48:27) EarlS: wtf is this
    (13:48:28) TSO_f4ckingbs: I went Imperial too
    (13:48:29) Zach is Back: skyrim themed mafia
    (13:48:31) ThePiggy: http://pastebin.com/raw.php?i=d9BNxHBa
    (13:48:32) Fuu: peter pan here
    (13:48:34) Fuu: BG ON ME
    (13:48:35) TSO_f4ckingbs: um
    (13:48:35) GoldFtw: what is this theme
    (13:48:38) Fuu: PRS PM ME
    (13:48:38) TSO_f4ckingbs: Zach is Back
    (13:48:42) TSO_f4ckingbs: this isn't Skyrim
    (13:48:43) Fuu: plz :(
    (13:48:47) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:48:47) Times Up! :
    (13:48:47) No one died! :
    (13:48:47) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:48:47) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (13:48:47) Current Players: Cragglez, EarlS, Fuu, GoldFtw, Hopkirk, Kirbymon23, Lightning Master, PancakesFTW, TSO_f4ckingbs, The Magikarp, ThePiggy, TheSilentOne, Zach is Back, hkjgndrtkuzs, megakarp.
    (13:48:47) Time: Day 1
    (13:48:47) You have 20 seconds to debate who are the bad guys! :
    (13:48:47) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:48:52) GoldFtw: what theme is this
    (13:48:53) hkjgndrtkuzs: Awesome. No kills
    (13:48:57) ThePiggy: Read the link
    (13:48:57) Kid_Loki joined the channel.
    (13:49:00) The Magikarp: good night
    (13:49:01) hkjgndrtkuzs: OK rand?
    (13:49:02) Kid_Loki left the channel.
    (13:49:06) ThePiggy: No voting
    (13:49:07) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:49:07) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (13:49:07) Current Players: Cragglez, EarlS, Fuu, GoldFtw, Hopkirk, Kirbymon23, Lightning Master, PancakesFTW, TSO_f4ckingbs, The Magikarp, ThePiggy, TheSilentOne, Zach is Back, hkjgndrtkuzs, megakarp.
    (13:49:07) Time: Night 2
    (13:49:07) Make your moves, you only have 25 seconds! :
    (13:49:07) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:49:07) hkjgndrtkuzs: Ok
    (13:49:11) Cragglez: No vote?
    (13:49:12) The Magikarp: no votes?
    (13:49:13) Zach is Back: no i was saying that would be cool
    (13:49:17) megakarp: Wait what
    (13:49:20) TSO_f4ckingbs: yeah it would
    (13:49:21) Fuu: what?
    (13:49:22) ThePiggy: Capture people
    (13:49:30) TSO_f4ckingbs: General Tullius as BG
    (13:49:32) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:49:32) Times Up! :
    (13:49:32) ±Game: Pirate Crewman has become a Captive Pirate!
    (13:49:32) No one died! :
    (13:49:32) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:49:32) Current Roles: Captain Hook, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (13:49:32) Current Players: Cragglez, EarlS, Fuu, GoldFtw, Hopkirk, Kirbymon23, Lightning Master, PancakesFTW, TSO_f4ckingbs, The Magikarp, ThePiggy, TheSilentOne, Zach is Back, hkjgndrtkuzs, megakarp.
    (13:49:32) Time: Day 2
    (13:49:32) You have 20 seconds to debate who are the bad guys! :
    (13:49:32) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:49:34) ThePiggy: read the link to see what your role does http://pastebin.com/raw.php?i=d9BNxHBa
    (13:49:39) TSO_f4ckingbs: Ulfric as a Daykiller
    (13:49:39) EarlS: wait wat
    (13:49:48) GoldFtw: whats the point of this game

    (13:49:50) megakarp: So
    (13:49:50) hkjgndrtkuzs: idk
    (13:49:52) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:49:52) Current Roles: Captain Hook, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (13:49:52) Current Players: Cragglez, EarlS, Fuu, GoldFtw, Hopkirk, Kirbymon23, Lightning Master, PancakesFTW, TSO_f4ckingbs, The Magikarp, ThePiggy, TheSilentOne, Zach is Back, hkjgndrtkuzs, megakarp.
    (13:49:52) Time: Night 3
    (13:49:52) Make your moves, you only have 25 seconds! :
    (13:49:52) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:49:54) ThePiggy: Read the Link
    (13:49:55) Fuu: my kill keeps getting evaded
    (13:49:55) ThePiggy: omg
    (13:49:55) Cragglez: Pirates that's what!
    (13:49:57) Fuu: this is bs
    (13:49:59) TSO_f4ckingbs: Ancano would be a Conspirator
    (13:50:00) The Magikarp: o.o
    (13:50:00) megakarp: Theres no
    (13:50:03) megakarp: What
    (13:50:06) TSO_f4ckingbs: so much scope
    (13:50:17) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:50:17) Times Up! :
    (13:50:17) ±Game: Pirate Crewman has become a Captive Pirate!
    (13:50:17) No one died! :
    (13:50:17) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:50:17) Current Roles: Captain Hook, Captive Pirate, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (13:50:17) Current Players: Cragglez, EarlS, Fuu, GoldFtw, Hopkirk, Kirbymon23, Lightning Master, PancakesFTW, TSO_f4ckingbs, The Magikarp, ThePiggy, TheSilentOne, Zach is Back, hkjgndrtkuzs, megakarp.
    (13:50:17) Time: Day 3
    (13:50:17) You have 20 seconds to debate who are the bad guys! :
    (13:50:17) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:50:20) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:50:20) ±Game: Captain Hook has decided to kill a hostage! Hopkirk has been executed!
    (13:50:20) ±Kill: Hopkirk (Captive Pirate) died!
    (13:50:20) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:50:26) GoldFtw: oh sht
    (13:50:27) The Magikarp: wow lol
    (13:50:28) TSO_f4ckingbs: wait
    (13:50:28) EarlS: lol
    (13:50:29) TSO_f4ckingbs: what
    (13:50:32) The Magikarp: teamkill there XD
    (13:50:33) Fuu: WHY DOES MY KILL KEEP GETTING EVADED
    (13:50:33) PancakesFTW: lol
    (13:50:34) Cragglez: wow he killed his own player!
    (13:50:34) megakarp: Oh shit I evaded a kill
    (13:50:34) GoldFtw: lol
    (13:50:36) Lightning Master: Lolol
    (13:50:37) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:50:37) Current Roles: Captain Hook, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (13:50:37) Current Players: Cragglez, EarlS, Fuu, GoldFtw, Kirbymon23, Lightning Master, PancakesFTW, TSO_f4ckingbs, The Magikarp, ThePiggy, TheSilentOne, Zach is Back, hkjgndrtkuzs, megakarp.
    (13:50:37) Time: Night 4
    (13:50:37) Make your moves, you only have 25 seconds! :
    (13:50:37) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:50:37) megakarp: Ohyea
    (13:50:41) Zach is Back: guard fuu
    (13:50:46) TSO_f4ckingbs: voting phase
    (13:50:51) hkjgndrtkuzs: i am hostage
    (13:50:52) GoldFtw: peter pan cant u claim? :O
    (13:50:53) Fuu: plz guard me guys
    (13:50:54) ThePiggy: Tiger Lily PM Fuu
    (13:50:55) EarlS: theres no voting phase
    (13:51:02) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:51:02) Times Up! :
    (13:51:02) ±Game: Lost Boy has become a Captive Lost Boy!
    (13:51:02) ±Game: Smee has become a Captive Smee!
    (13:51:02) ±Game: Tinkerbell has become a Captive Tinkerbell!
    (13:51:02) ±Kill: hkjgndrtkuzs (Captive Pirate) died!
    (13:51:02) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:51:02) Current Roles: Captain Hook, Captive Lost Boy, Captive Smee, Captive Tinkerbell, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman.
    (13:51:02) Current Players: Cragglez, EarlS, Fuu, GoldFtw, Kirbymon23, Lightning Master, PancakesFTW, TSO_f4ckingbs, The Magikarp, ThePiggy, TheSilentOne, Zach is Back, megakarp.
    (13:51:02) Time: Day 4
    (13:51:02) You have 20 seconds to debate who are the bad guys! :
    (13:51:02) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:51:16) GoldFtw: whos peter pan
    (13:51:17) Zach is Back: captive tinkerbell here
    (13:51:21) ThePiggy: Fuu is peter pan
    (13:51:22) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:51:22) Current Roles: Captain Hook, Captive Lost Boy, Captive Smee, Captive Tinkerbell, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman.
    (13:51:22) Current Players: Cragglez, EarlS, Fuu, GoldFtw, Kirbymon23, Lightning Master, PancakesFTW, TSO_f4ckingbs, The Magikarp, ThePiggy, TheSilentOne, Zach is Back, megakarp.
    (13:51:22) Time: Night 5
    (13:51:22) Make your moves, you only have 25 seconds! :
    (13:51:22) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:51:35) *** PancakesFTW Flips Table
    (13:51:36) Fuu: this theme is ???
    (13:51:45) Kirbymon23: Dunno what to do...T-T

    (13:51:45) *** The Magikarp puts the table back in place and flips it again
    (13:51:46) Cragglez: Neverland
    (13:51:47) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:51:47) Times Up! :
    (13:51:47) ±Game: Lost Boy has become a Captive Lost Boy!
    (13:51:47) ±Game: Captive Tinkerbell has become a Tinkerbell!
    (13:51:47) ±Game: Captive Lost Boy has become a Lost Boy!
    (13:51:47) No one died! :
    (13:51:47) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:51:47) Current Roles: Captain Hook, Captive Lost Boy, Captive Smee, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Tinkerbell.
    (13:51:47) Current Players: Cragglez, EarlS, Fuu, GoldFtw, Kirbymon23, Lightning Master, PancakesFTW, TSO_f4ckingbs, The Magikarp, ThePiggy, TheSilentOne, Zach is Back, megakarp.
    (13:51:47) Time: Day 5
    (13:51:47) You have 20 seconds to debate who are the bad guys! :
    (13:51:47) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:51:51) Cragglez: like Peter Pan and shit
    (13:51:51) TSO_f4ckingbs: Is forums down for just me
    (13:51:54) TSO_f4ckingbs: or you too?
    (13:51:55) Fuu: i got all 4 lost boys claiming finally
    (13:51:58) EarlS: i think this thing has a bug
    (13:52:01) EarlS: or something
    (13:52:03) The Magikarp: this is stupid..
    (13:52:04) TSO_f4ckingbs: I think so too
    (13:52:05) TSO_f4ckingbs: lo
    (13:52:05) *** PancakesFTW Flips it once more

    (13:52:07) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:52:07) Current Roles: Captain Hook, Captive Lost Boy, Captive Smee, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Tinkerbell.
    (13:52:07) Current Players: Cragglez, EarlS, Fuu, GoldFtw, Kirbymon23, Lightning Master, PancakesFTW, TSO_f4ckingbs, The Magikarp, ThePiggy, TheSilentOne, Zach is Back, megakarp.
    (13:52:07) Time: Night 6
    (13:52:07) Make your moves, you only have 25 seconds! :
    (13:52:07) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:52:10) GoldFtw: tiger lily pm fuu
    (13:52:21) *** The Magikarp flips it and throws it at PancakesFTW at a game of catch
    (13:52:32) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:52:32) Times Up! :
    (13:52:32) ±Game: Tinkerbell has become a Captive Tinkerbell!
    (13:52:32) ±Game: Captive Smee has become a Smee!
    (13:52:32) No one died! :
    (13:52:32) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:52:32) Current Roles: Captain Hook, Captive Lost Boy, Captive Tinkerbell, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee.
    (13:52:32) Current Players: Cragglez, EarlS, Fuu, GoldFtw, Kirbymon23, Lightning Master, PancakesFTW, TSO_f4ckingbs, The Magikarp, ThePiggy, TheSilentOne, Zach is Back, megakarp.
    (13:52:32) Time: Day 6
    (13:52:32) You have 20 seconds to debate who are the bad guys! :
    (13:52:32) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:52:37) TSO_f4ckingbs: Does anyone know what's happening?
    (13:52:40) The Magikarp: no..'
    (13:52:43) GoldFtw: nope
    (13:52:50) TSO_f4ckingbs: No-one's even dying

    (13:52:52) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:52:52) Current Roles: Captain Hook, Captive Lost Boy, Captive Tinkerbell, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee.
    (13:52:52) Current Players: Cragglez, EarlS, Fuu, GoldFtw, Kirbymon23, Lightning Master, PancakesFTW, TSO_f4ckingbs, The Magikarp, ThePiggy, TheSilentOne, Zach is Back, megakarp.
    (13:52:52) Time: Night 7
    (13:52:52) Make your moves, you only have 25 seconds! :
    (13:52:52) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:52:54) The Magikarp: who dafuq made this this, it's stupid
    (13:52:58) EarlS: ^
    (13:53:00) Cragglez: I evaded two kills?
    (13:53:03) Kirbymon23: What are we doing?
    (13:53:03) Fuu: this is a trolling game
    (13:53:03) *** PancakesFTW misses and gets KO'ed
    (13:53:06) EarlS: i never hated this theme more than anything
    (13:53:07) Fuu: im so angary
    (13:53:11) ThePiggy: You can only die if you are a captive
    (13:53:15) Kirbymon23: Whatever I do gets evaded or something
    (13:53:16) TSO_f4ckingbs: It's sorta fun in a cynical way

    (13:53:16) EarlS: oh
    (13:53:17) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:53:17) Times Up! :
    (13:53:17) ±Game: Captive Lost Boy has become a Lost Boy!
    (13:53:17) ±Game: Captive Tinkerbell has become a Tinkerbell!
    (13:53:17) No one died! :
    (13:53:17) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:53:17) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (13:53:17) Current Players: Cragglez, EarlS, Fuu, GoldFtw, Kirbymon23, Lightning Master, PancakesFTW, TSO_f4ckingbs, The Magikarp, ThePiggy, TheSilentOne, Zach is Back, megakarp.
    (13:53:17) Time: Day 7
    (13:53:17) You have 20 seconds to debate who are the bad guys! :
    (13:53:17) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:53:20) GoldFtw: this theme is worse than pokescum
    (13:53:20) ThePiggy: HOOK and PAN can only kill captives
    (13:53:26) Prez. Obama joined the channel.
    (13:53:27) GoldFtw: tiger lily pm me
    (13:53:29) The Magikarp: Idk what i hate more, FiM or Neverland
    (13:53:35) EarlS: but that'd make things harder?
    (13:53:37) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:53:37) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (13:53:37) Current Players: Cragglez, EarlS, Fuu, GoldFtw, Kirbymon23, Lightning Master, PancakesFTW, TSO_f4ckingbs, The Magikarp, ThePiggy, TheSilentOne, Zach is Back, megakarp.
    (13:53:37) Time: Night 8
    (13:53:37) Make your moves, you only have 25 seconds! :
    (13:53:37) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:53:42) Cragglez: FiM I wouldn't mind :V I like MLP
    (13:53:46) Fuu: if my kill gets evaded one more time
    (13:53:48) The Magikarp: MLP?
    (13:54:02) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:54:02) Times Up! :
    (13:54:02) ±Game: Pirate Crewman has become a Captive Pirate!
    (13:54:02) ±Game: Pirate Crewman has become a Captive Pirate!
    (13:54:02) No one died! :
    (13:54:02) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:54:02) Current Roles: Captain Hook, Captive Pirate, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Smee, Tinkerbell.
    (13:54:02) Current Players: Cragglez, EarlS, Fuu, GoldFtw, Kirbymon23, Lightning Master, PancakesFTW, TSO_f4ckingbs, The Magikarp, ThePiggy, TheSilentOne, Zach is Back, megakarp.
    (13:54:02) Time: Day 8
    (13:54:02) You have 20 seconds to debate who are the bad guys! :
    (13:54:02) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:54:05) The Magikarp: poisoned
    (13:54:09) The Magikarp: bastard.
    (13:54:16) GoldFtw: peter pan kill tso now
    (13:54:20) TSO_f4ckingbs: rof
    (13:54:22) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:54:22) Current Roles: Captain Hook, Captive Pirate, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Smee, Tinkerbell.
    (13:54:22) Current Players: Cragglez, EarlS, Fuu, GoldFtw, Kirbymon23, Lightning Master, PancakesFTW, TSO_f4ckingbs, The Magikarp, ThePiggy, TheSilentOne, Zach is Back, megakarp.
    (13:54:22) Time: Night 9
    (13:54:22) Make your moves, you only have 25 seconds! :
    (13:54:22) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:54:23) Zach is Back: dont unserstand this crap
    (13:54:24) Player Kingjub2 (IP 71.168.69.112) is being overactive.
    (13:54:26) TSO_f4ckingbs: Pan
    (13:54:26) The Magikarp: me neither
    (13:54:27) TSO_f4ckingbs: do it
    (13:54:27) Fuu: OMG
    (13:54:29) hkjgndrtkuzs left the channel.
    (13:54:29) EarlS: why is there no voting?
    (13:54:31) y dos skool eksist joined the channel.
    (13:54:32) TSO_f4ckingbs: I actually want out
    (13:54:36) The Magikarp: i'm gonna die, so free mee D:
    (13:54:36) TSO_f4ckingbs: Peter on me
    (13:54:39) Fuu: kk gotcha
    (13:54:45) Navz joined the channel.
    (13:54:45) TSO_f4ckingbs: Peter
    (13:54:47) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:54:47) Times Up! :
    (13:54:47) ±Game: Tinkerbell has become a Captive Tinkerbell!
    (13:54:47) ±Game: Pirate Crewman has become a Captive Pirate!
    (13:54:47) No one died! :
    (13:54:47) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:54:47) Current Roles: Captain Hook, Captive Pirate, Captive Pirate, Captive Pirate, Captive Tinkerbell, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Smee.
    (13:54:47) Current Players: Cragglez, EarlS, Fuu, GoldFtw, Kirbymon23, Lightning Master, PancakesFTW, TSO_f4ckingbs, The Magikarp, ThePiggy, TheSilentOne, Zach is Back, megakarp.
    (13:54:47) Time: Day 9
    (13:54:47) You have 20 seconds to debate who are the bad guys! :
    (13:54:47) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:54:48) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:54:48) ±Game: Peter Pan has decided to kill a hostage! TSO_f4ckingbs has been executed!
    (13:54:48) ±Kill: TSO_f4ckingbs (Captive Pirate) died!
    (13:54:48) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:54:56) Fuu: finally
    (13:54:56) GoldFtw: peter pan kill kirbymon next
    (13:55:00) The Magikarp: OH GOD SOMEONE END THIS DUMB GAME
    (13:55:07) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:55:07) Current Roles: Captain Hook, Captive Pirate, Captive Pirate, Captive Tinkerbell, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Smee.
    (13:55:07) Current Players: Cragglez, EarlS, Fuu, GoldFtw, Kirbymon23, Lightning Master, PancakesFTW, The Magikarp, ThePiggy, TheSilentOne, Zach is Back, megakarp.
    (13:55:07) Time: Night 10
    (13:55:07) Make your moves, you only have 25 seconds! :
    (13:55:07) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:55:11) TheSilentOne: we're getting somewhere now
    (13:55:12) Kirbymon23: Aww. I've been figured out.
    (13:55:14) Windbound left the channel.
    (13:55:16) Kirbymon23: Whatever, go ahead
    (13:55:17) Windbound joined the channel.
    (13:55:18) Navz changed names and is now known as Paradise.
    (13:55:19) IP 84.22.192.8 is being overactive.
    (13:55:21) Kirbymon23: I'm gonna die anyway xD
    (13:55:26) ThePiggy: Tiger Lily PM Fuu
    (13:55:26) The Magikarp: xD
    (13:55:27) The Magikarp: bye byey
    (13:55:29) Hopkirk left the channel.
    (13:55:31) Kirbymon23: Later
    (13:55:32) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:55:32) Times Up! :
    (13:55:32) ±Game: Captive Pirate has become a Pirate Crewman!
    (13:55:32) ±Game: Captive Tinkerbell has become a Tinkerbell!
    (13:55:32) ±Kill: The Magikarp (Captive Pirate) died!
    (13:55:32) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:55:32) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Smee, Tinkerbell.
    (13:55:32) Current Players: Cragglez, EarlS, Fuu, GoldFtw, Kirbymon23, Lightning Master, PancakesFTW, ThePiggy, TheSilentOne, Zach is Back, megakarp.
    (13:55:32) Time: Day 10
    (13:55:32) You have 20 seconds to debate who are the bad guys! :
    (13:55:32) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:55:40) Kirbymon23: ..wait what
    (13:55:42) Tahmeed left the channel.
    (13:55:43) GoldFtw: ?
    (13:55:43) Lightning Master: Hmmm
    (13:55:44) Fuu: kirby wtf
    (13:55:46) Kirbymon23: How did I evade that
    (13:55:48) SteelEdges left the channel.
    (13:55:51) Fuu: kirbymon23 WTF
    (13:55:52) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:55:52) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Smee, Tinkerbell.
    (13:55:52) Current Players: Cragglez, EarlS, Fuu, GoldFtw, Kirbymon23, Lightning Master, PancakesFTW, ThePiggy, TheSilentOne, Zach is Back, megakarp.
    (13:55:52) Time: Night 11
    (13:55:52) Make your moves, you only have 25 seconds! :
    (13:55:52) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***

    [TABLE]
    [TR]
    [TD]
    Theme​
    [/TD]
    [TD]
    Who started​
    [/TD]
    [TD]
    When​
    [/TD]
    [TD]
    Players​
    [/TD]
    [/TR]
    [TR]
    [TD]weapons[/TD]
    [TD]voted[/TD]
    [TD][/TD]
    [TD]13[/TD]
    [/TR]
    [TR]
    [TD]kirby[/TD]
    [TD]The Magikarp[/TD]
    [TD][/TD]
    [TD]15[/TD]
    [/TR]
    [TR]
    [TD]fe[/TD]
    [TD]Dawn mage[/TD]
    [TD][/TD]
    [TD]14[/TD]
    [/TR]
    [TR]
    [TD]ssbb[/TD]
    [TD]hkjgndrtkuzs[/TD]
    [TD][/TD]
    [TD]19[/TD]
    [/TR]
    [TR]
    [TD]capcom[/TD]
    [TD]lurkingSombres[/TD]
    [TD][/TD]
    [TD]16[/TD]
    [/TR]
    [TR]
    [TD]pokescum[/TD]
    [TD]GoldFtw[/TD]
    [TD][/TD]
    [TD]14[/TD]
    [/TR]
    [TR]
    [TD]hoenn[/TD]
    [TD]Mai-hime[/TD]
    [TD][/TD]
    [TD]18[/TD]
    [/TR]
    [TR]
    [TD]default[/TD]
    [TD]Fegelein[/TD]
    [TD][/TD]
    [TD]18[/TD]
    [/TR]
    [TR]
    [TD]kirby[/TD]
    [TD]The Magikarp[/TD]
    [TD][/TD]
    [TD]18[/TD]
    [/TR]
    [TR]
    [TD]neverland[/TD]
    [TD]ThePiggy[/TD]
    [TD][/TD]
    [TD]15[/TD]
    [/TR]
    [/TABLE]

    (13:56:01) GoldFtw: hes probably not captured anymore
    (13:56:10) Paradise left the channel.
    (13:56:13) EarlS: oh right yea it said
    (13:56:16) Kirbymon23: Oh.
    (13:56:17) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:56:17) Times Up! :
    (13:56:17) ±Game: Smee has become a Captive Smee!
    (13:56:17) ±Game: Pirate Crewman has become a Captive Pirate!
    (13:56:17) No one died! :
    (13:56:17) ±Game: The Lost Boys, ThePiggy, TheSilentOne, megakarp, Fuu, GoldFtw, Zach is Back, Lightning Master and Cragglez, survived to play another day!
    (13:56:17) ±Game: The Pirates (EarlS, PancakesFTW and Kirbymon23) lose!
    (13:56:17) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (13:56:18) *** PancakesFTW Kirbymon23 Thinks its WitchCraft
    (13:56:19) EarlS: duh
    (13:56:21) The Magikarp: WHAT THE FUCK.
    (13:56:21) agea: finally
    (13:56:22) ThePiggy: Yay!
    (13:56:23) Kirbymon23: And nvm
    (13:56:25) Kirbymon23: xD
    (13:56:28) Lightning Master: Haha

    (13:56:28) ***~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~
    (13:56:28) ±Game: Fuu started a game with theme SSBB!
    (13:56:28) ±Game: Type /Join to enter the game!
    (13:56:28) ***~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^~

    (13:56:28) ±Game: Nintendo's all-stars collide in a wild and crazy mafia theme, in this one Brawl to end them all! No brawler is safe at any moment, be it mafia or villager!
    (13:56:29) GoldFtw: oh we won? :D
    (13:56:29) EarlS: EVERY FUCKING KILL OF MINE GOT EVADED
    (13:56:30) megakarp: I was Hiding Tiger Lili
    (13:56:30) ±Game: The Magikarp joined the game!
    (13:56:30) ±Game: TheSilentOne joined the game!
    (13:56:33) ±Game: agea joined the game!
    (13:56:33) ±Game: GoldFtw joined the game!
    (13:56:33) ±Game: Lightning Master joined the game!
    (13:56:33) megakarp: Lily*
    (13:56:33) ±Game: Fuu joined the game!
    (13:56:33) ±Game: EarlS joined the game!
    (13:56:34) The Magikarp: LOL!!
    (13:56:34) ±Game: Kirbymon23 joined the game!
    (13:56:34) ±Game: Zach is Back joined the game!
    (13:56:35) ±Game: PancakesFTW joined the game!
    (13:56:36) ±Game: Cragglez joined the game!
    (13:56:38) ±Game: Jezza32 joined the game!
    (13:56:40) agea: You need to kill captives.
    (13:56:40) The Magikarp: I evaded your kill, EarlS :P
    (13:56:41) ±Game: tobyfant joined the game!
    (13:56:42) GoldFtw: xD who was tiger lily
    (13:56:43) EarlS: whoever made this, go screw yourself, it was horrible
    (13:56:43) Fuu: sorry guys, i was a bad peter pan in a bad game
    (13:56:46) megakarp: Me
    (13:56:48) May in Blue joined the channel.
    (13:56:49) GoldFtw: wow
    (13:56:50) PancakesFTW: i captured you
    (13:56:50) megakarp: @gold
    (13:56:50) GoldFtw: okay
    (13:56:52) GoldFtw: xS
    (13:56:53) ±Game: Stocke joined the game!
    (13:56:54) GoldFtw: xD*
    (13:56:55) megakarp: I was pming Fuu
    (13:56:56) Kirbymon23: That was confusing xD

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

    (13:57:00) Zach is Back: whats ssbb stand for
    (13:57:00) ±Game: Mai-hime joined the game!
    (13:57:00) ±Game: May in Blue joined the game!
    (13:57:01) Fuu: everyone was pming me
    (13:57:02) Fuu: lol
    (13:57:04) Mai-hime: What theme was that
    (13:57:07) Mai-hime: ?
    (13:57:09) Stocke: Super Smash Bros Brawl
    (13:57:09) megakarp: That was fucking dumb
    (13:57:11) The Magikarp: EarlS, that person is probably already doing it because they'll never get screwed by someone else with a LAME GAME LIKE THAT!
    (13:57:12) Zach is Back: oh
    (13:57:14) Fuu: the theme was neverland aka fuckshitass
    (13:57:14) *** PancakesFTW Captured Kirbymon
    (13:57:19) PancakesFTW: :D
    (13:57:23) *** May in Blue is in Blue
    (13:57:27) ±Game: GoldFtw unjoined the game!

    For the record, the Kirby game with 18 people lasted from (13:41:29) to (13:47:14), or 6 minutes and 15 seconds for 18 players with 4 people being endgamed (2 MKA beat out 2 villies). Neverland lasted from (13:48:22) to (13:56:17), or 7 minutes, 55 seconds with 10 people being endgamed (7 Lost boys beat out 3 Pirates).

    This means in just under 8 minutes you only really got rid of 5 players. Kirby got rid of 14 players in almost 2 minutes less time. The amount of people that can be endgamed at once (as in, they are mentioned in the winmsg or lose message) is extraordinarily high and there's almost no progress being made. The only deaths probably came from miscommunication and the poison got to them. I'm sure if TSO wasn't killed, they'd have asked for a slay just to get out of the game. The negative reception is not healthy for the channel and I don't think the theme is entirely working how you had planned. The unfortunate part is that the flaws start at the very base of the theme, so addressing them is very difficult.

    The fact my "Couldn't this be a potential stall war" statement is very evident in the log I just posted, as it lasted 11 nights and only 5/15 people died.

    Decline [2]
     
    Last edited: Mar 28, 2013
  26. ThePiggy

    ThePiggy New Member

    Joined:
    Mar 6, 2013
    Messages:
    21
    Likes Received:
    0
    PO Trainer Name:
    ThePiggy
    No one was understanding how the game played. That's why it took so long. I'm working on beefing up the help sections of each role so people will know what to do. People were resistant right from the start. They weren't connecting with their teams and they weren't using their abilities. The first time people try a game, especially if they aren't giving any effort to actually TRY, of course it's going to not run right. Don't you think it's a bit early to decline me? I thought the game gets to be tested for 3 days to work out such problems like this.
    Also, you're comparing a game being played by people for the first time to an established and well received game. Neverland is not a game just about killing people. So comparing it to a game that IS about killing is just silly.
     
  27. two sides of one coin

    two sides of one coin sick of all her shit

    Joined:
    Mar 1, 2012
    Messages:
    1,255
    Likes Received:
    0
    (21:14:26) The Roles have been Decided! :
    (21:14:26) ±Game: You are a Pirate Crewman!
    (21:14:26) ±Game: Help Captain Hook /capture Tiger Lily and rescue your fellow crew members from the Lost Boys. Capture the Lost Boys and tell your Captain who they are. Peter Pan cannot be captured. Connect with your Captain for orders.
    (21:14:26) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (21:14:26) Current Players: BrownTown, Clover, Diablomarik, Dog Fart, Dopog, EarlS, Heartgold12, Hopkirk, Katia, Kurapika, Maskun, Midna, PancakesFTW, Portgas.D.Ace, Samzy, Shadow Knight, Soarin, Sparksay, TSO_f4ckingbs, ThePiggy, Zach is Back, agea, lurkingSombres, megakarp, notscience.
    (21:14:26) Current Team: Captain Hook, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee
    (21:14:26) Time: Night 1
    (21:14:26) Make your moves, you only have 25 seconds! :
    (21:14:26) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:14:31) EarlS: OH LOL
    (21:14:33) Katia: LOL
    (21:14:35) ThePiggy: Hook and Pan claim
    (21:14:35) EarlS: im captain hook again
    (21:14:41) EarlS: pirates, pm
    (21:14:41) lurkingSombres: sigh
    (21:14:43) lurkingSombres: Pan
    (21:14:43) TSO_f4ckingbs: Peter Pan here
    (21:14:48) TSO_f4ckingbs: Boys, pm
    (21:14:51) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:14:51) Times Up! :
    (21:14:51) ±Game: Lost Boy has become a Captive Lost Boy!
    (21:14:51) ±Game: Smee has become a Captive Smee!
    (21:14:51) ±Game: Pirate Crewman has become a Captive Pirate!
    (21:14:51) No one died! :
    (21:14:51) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:14:51) Current Roles: Captain Hook, Captive Lost Boy, Captive Pirate, Captive Smee, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Tinkerbell.
    (21:14:51) Current Players: BrownTown, Clover, Diablomarik, Dog Fart, Dopog, EarlS, Heartgold12, Hopkirk, Katia, Kurapika, Maskun, Midna, PancakesFTW, Portgas.D.Ace, Samzy, Shadow Knight, Soarin, Sparksay, TSO_f4ckingbs, ThePiggy, Zach is Back, agea, lurkingSombres, megakarp, notscience.
    (21:14:51) Current Team: Captain Hook, Captive Pirate, Captive Smee, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman
    (21:14:51) Time: Day 1
    (21:14:51) You have 20 seconds to debate who are the bad guys! :
    (21:14:51) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:14:56) Shadow Knight: 2 days to live
    (21:14:56) Portgas.D.Ace: !
    (21:14:59) lurkingSombres: capture TSO
    (21:15:01) TSO_f4ckingbs: 2 days to live
    (21:15:05) TSO_f4ckingbs: :(
    (21:15:11) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:15:11) Current Roles: Captain Hook, Captive Lost Boy, Captive Pirate, Captive Smee, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Tinkerbell.
    (21:15:11) Current Players: BrownTown, Clover, Diablomarik, Dog Fart, Dopog, EarlS, Heartgold12, Hopkirk, Katia, Kurapika, Maskun, Midna, PancakesFTW, Portgas.D.Ace, Samzy, Shadow Knight, Soarin, Sparksay, TSO_f4ckingbs, ThePiggy, Zach is Back, agea, lurkingSombres, megakarp, notscience.
    (21:15:11) Current Team: Captain Hook, Captive Pirate, Captive Smee, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman
    (21:15:11) Time: Night 2
    (21:15:11) Make your moves, you only have 25 seconds! :
    (21:15:11) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:15:16) Sparksay: so how does this theme work?
    (21:15:21) ThePiggy: http://pastebin.com/raw.php?i=d9BNxHBa
    (21:15:25) ±Game: You have chosen to capture BrownTown!
    (21:15:27) Portgas.D.Ace: Its alot wierd
    (21:15:29) ThePiggy: read the tutorial
    (21:15:36) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:15:36) Times Up! :
    (21:15:36) ±Game: Lost Boy has become a Captive Lost Boy!
    (21:15:36) ±Game: Lost Boy has become a Captive Lost Boy!
    (21:15:36) ±Game: Your target (BrownTown) has been converted and is now a Captive Lost Boy!
    (21:15:36) No one died! :
    (21:15:36) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:15:36) Current Roles: Captain Hook, Captive Lost Boy, Captive Lost Boy, Captive Lost Boy, Captive Pirate, Captive Smee, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Tinkerbell.
    (21:15:36) Current Players: BrownTown, Clover, Diablomarik, Dog Fart, Dopog, EarlS, Heartgold12, Hopkirk, Katia, Kurapika, Maskun, Midna, PancakesFTW, Portgas.D.Ace, Samzy, Shadow Knight, Soarin, Sparksay, TSO_f4ckingbs, ThePiggy, Zach is Back, agea, lurkingSombres, megakarp, notscience.
    (21:15:36) Current Team: Captain Hook, Captive Pirate, Captive Smee, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman
    (21:15:36) Time: Day 2
    (21:15:36) You have 20 seconds to debate who are the bad guys! :
    (21:15:36) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:15:44) ±Game: You evaded a kill!
    (21:15:44) Dopog: bad guys
    (21:15:47) Shadow Knight: 1 day
    (21:15:47) Dopog: baad
    (21:15:54) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:15:54) ±Game: Captain Hook has decided to kill a hostage! PancakesFTW has been executed!
    (21:15:54) ±Kill: PancakesFTW (Captive Lost Boy) died!
    (21:15:54) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:15:56) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:15:56) Current Roles: Captain Hook, Captive Lost Boy, Captive Lost Boy, Captive Pirate, Captive Smee, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Tinkerbell.
    (21:15:56) Current Players: BrownTown, Clover, Diablomarik, Dog Fart, Dopog, EarlS, Heartgold12, Hopkirk, Katia, Kurapika, Maskun, Midna, Portgas.D.Ace, Samzy, Shadow Knight, Soarin, Sparksay, TSO_f4ckingbs, ThePiggy, Zach is Back, agea, lurkingSombres, megakarp, notscience.
    (21:15:56) Current Team: Captain Hook, Captive Pirate, Captive Smee, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman
    (21:15:56) Time: Night 3
    (21:15:56) Make your moves, you only have 25 seconds! :
    (21:15:56) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:15:58) Portgas.D.Ace: !
    (21:16:00) Zach is Back: sparksay is pirate crewman
    (21:16:02) Portgas.D.Ace: woah
    (21:16:03) Sparksay: no
    (21:16:06) Zach is Back: yes
    (21:16:11) BrownTown: im a lost boy!
    (21:16:12) Kurapika: No vote phase?
    (21:16:16) Portgas.D.Ace: yea
    (21:16:20) BrownTown: Mr Pan please come and rape me :D
    (21:16:21) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:16:21) Times Up! :
    (21:16:21) ±Game: Lost Boy has become a Captive Lost Boy!
    (21:16:21) ±Game: Captive Lost Boy has become a Lost Boy!
    (21:16:21) ±Game: Lost Boy has become a Captive Lost Boy!
    (21:16:21) ±Game: Lost Boy has become a Captive Lost Boy!
    (21:16:21) ±Game: Captive Smee has become a Smee!
    (21:16:21) ±Game: Pirate Crewman has become a Captive Pirate!
    (21:16:21) ±Kill: notscience (Captive Pirate) died!
    (21:16:21) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:16:21) Current Roles: Captain Hook, Captive Lost Boy, Captive Lost Boy, Captive Lost Boy, Captive Lost Boy, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (21:16:21) Current Players: BrownTown, Clover, Diablomarik, Dog Fart, Dopog, EarlS, Heartgold12, Hopkirk, Katia, Kurapika, Maskun, Midna, Portgas.D.Ace, Samzy, Shadow Knight, Soarin, Sparksay, TSO_f4ckingbs, ThePiggy, Zach is Back, agea, lurkingSombres, megakarp.
    (21:16:21) Current Team: Captain Hook, Captive Pirate, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee
    (21:16:21) Time: Day 3
    (21:16:21) You have 20 seconds to debate who are the bad guys! :
    (21:16:21) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:16:26) EarlS: HAHA
    (21:16:26) Zach is Back: there is no vote
    (21:16:26) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:16:26) ±Game: Peter Pan has decided to kill a hostage! BrownTown has been executed!
    (21:16:26) ±Kill: BrownTown (Captive Lost Boy) died!
    (21:16:26) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:16:28) Shadow Knight: what
    (21:16:30) Shadow Knight: .-.
    (21:16:30) EarlS: pro
    (21:16:33) lurkingSombres: done
    (21:16:37) TSO_f4ckingbs: damn
    (21:16:38) Kurapika: Midna is pirate
    (21:16:39) TSO_f4ckingbs: sorry guys
    (21:16:39) Samzy: 2 days to live
    (21:16:41) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:16:41) Current Roles: Captain Hook, Captive Lost Boy, Captive Lost Boy, Captive Lost Boy, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (21:16:41) Current Players: Clover, Diablomarik, Dog Fart, Dopog, EarlS, Heartgold12, Hopkirk, Katia, Kurapika, Maskun, Midna, Portgas.D.Ace, Samzy, Shadow Knight, Soarin, Sparksay, TSO_f4ckingbs, ThePiggy, Zach is Back, agea, lurkingSombres, megakarp.
    (21:16:41) Current Team: Captain Hook, Captive Pirate, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee
    (21:16:41) Time: Night 4
    (21:16:41) Make your moves, you only have 25 seconds! :
    (21:16:41) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:16:41) TSO_f4ckingbs: I missed that
    (21:16:46) Kurapika: Midna is pirate ~~
    (21:16:48) ±Game: You have chosen to capture Hopkirk!
    (21:16:49) Portgas.D.Ace: shadow got saved by tinker?
    (21:16:54) Midna: Hopkirk is lost boy
    (21:17:06) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:17:06) Times Up! :
    (21:17:06) ±Game: Captive Lost Boy has become a Lost Boy!
    (21:17:06) ±Game: Lost Boy has become a Captive Lost Boy!
    (21:17:06) ±Game: Lost Boy has become a Captive Lost Boy!
    (21:17:06) ±Game: Your target (Hopkirk) was guarded!
    (21:17:06) ±Game: Pirate Crewman has become a Captive Pirate!
    (21:17:06) ±Game: Pirate Crewman has become a Captive Pirate!
    (21:17:06) ±Game: Pirate Crewman has become a Captive Pirate!
    (21:17:06) No one died! :
    (21:17:06) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:17:07) Current Roles: Captain Hook, Captive Lost Boy, Captive Lost Boy, Captive Lost Boy, Captive Lost Boy, Captive Pirate, Captive Pirate, Captive Pirate, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (21:17:07) Current Players: Clover, Diablomarik, Dog Fart, Dopog, EarlS, Heartgold12, Hopkirk, Katia, Kurapika, Maskun, Midna, Portgas.D.Ace, Samzy, Shadow Knight, Soarin, Sparksay, TSO_f4ckingbs, ThePiggy, Zach is Back, agea, lurkingSombres, megakarp.
    (21:17:07) Current Team: Captain Hook, Captive Pirate, Captive Pirate, Captive Pirate, Captive Pirate, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee
    (21:17:07) Time: Day 4
    (21:17:07) You have 20 seconds to debate who are the bad guys! :
    (21:17:07) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:17:09) TSO_f4ckingbs: Hopkirk/Dog Fart/Katia are Boys, Hop is captured
    (21:17:10) Samzy: 1 day to live
    (21:17:13) TSO_f4ckingbs: wait Hop's not
    (21:17:13) Kurapika: spars is pirate with Midna
    (21:17:13) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:17:13) ±Game: Peter Pan has decided to kill a hostage! Samzy has been executed!
    (21:17:13) ±Kill: Samzy (Captive Lost Boy) died!
    (21:17:14) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:17:14) TSO_f4ckingbs: nvm
    (21:17:16) Dog Fart: Yup
    (21:17:19) Sparksay: is there a poisoner in this them?
    (21:17:19) Portgas.D.Ace: Peter..
    (21:17:22) TSO_f4ckingbs: this Pan
    (21:17:23) Kurapika: eter Pan you dumbass
    (21:17:26) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:17:26) Current Roles: Captain Hook, Captive Lost Boy, Captive Lost Boy, Captive Lost Boy, Captive Pirate, Captive Pirate, Captive Pirate, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (21:17:26) Current Players: Clover, Diablomarik, Dog Fart, Dopog, EarlS, Heartgold12, Hopkirk, Katia, Kurapika, Maskun, Midna, Portgas.D.Ace, Shadow Knight, Soarin, Sparksay, TSO_f4ckingbs, ThePiggy, Zach is Back, agea, lurkingSombres, megakarp.
    (21:17:26) Current Team: Captain Hook, Captive Pirate, Captive Pirate, Captive Pirate, Captive Pirate, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee
    (21:17:26) Time: Night 5
    (21:17:26) Make your moves, you only have 25 seconds! :
    (21:17:26) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:17:27) Sparksay: Poisoned
    (21:17:28) Hopkirk: not anymore
    (21:17:28) Kurapika: Peter Pan you dumbass
    (21:17:29) Zach is Back: save me tinker
    (21:17:34) TSO_f4ckingbs: I have 0 days left
    (21:17:37) TSO_f4ckingbs: bye guys!
    (21:17:38) Zach is Back: am hiding tiger lily
    (21:17:40) Dog Fart: Bye
    (21:17:40) ±Game: You have chosen to capture Katia!
    (21:17:43) Dog Fart: o/
    (21:17:43) Kurapika: Sparksay and Midna = pirates
    (21:17:50) Sparksay: Hostage
    (21:17:50) Dog Fart: Dying to captivity
    (21:17:51) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:17:51) Times Up! :
    (21:17:51) ±Game: Lost Boy has become a Captive Lost Boy!
    (21:17:51) ±Game: Captive Lost Boy has become a Lost Boy!
    (21:17:51) ±Game: Lost Boy has become a Captive Lost Boy!
    (21:17:51) ±Game: Your target (Katia) has been converted and is now a Captive Lost Boy!
    (21:17:51) ±Kill: Midna (Captive Pirate) died!
    (21:17:51) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:17:51) Current Roles: Captain Hook, Captive Lost Boy, Captive Lost Boy, Captive Lost Boy, Captive Lost Boy, Captive Pirate, Captive Pirate, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (21:17:51) Current Players: Clover, Diablomarik, Dog Fart, Dopog, EarlS, Heartgold12, Hopkirk, Katia, Kurapika, Maskun, Portgas.D.Ace, Shadow Knight, Soarin, Sparksay, TSO_f4ckingbs, ThePiggy, Zach is Back, agea, lurkingSombres, megakarp.
    (21:17:52) Current Team: Captain Hook, Captive Pirate, Captive Pirate, Captive Pirate, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee
    (21:17:52) Time: Day 5
    (21:17:52) You have 20 seconds to debate who are the bad guys! :
    (21:17:52) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:17:53) TSO_f4ckingbs: Katia/Dog Fart/Hopkirk = boys
    (21:17:53) Maskun: can someone kill me im low on battery on my comp
    (21:17:55) TSO_f4ckingbs: KATIA
    (21:17:56) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:17:56) ±Game: Captain Hook has decided to kill a hostage! Soarin has been executed!
    (21:17:56) ±Kill: Soarin (Captive Lost Boy) died!
    (21:17:56) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:18:01) Heartgold12: sorry, went afk to talk to my great aunt, lost boy here
    (21:18:06) Katia: what?
    (21:18:07) Heartgold12: can someone please fil me in?
    (21:18:08) Portgas.D.Ace: FOUND THE CAPTAIN HOOK
    (21:18:09) Sparksay: I am Crewman
    (21:18:11) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:18:11) Current Roles: Captain Hook, Captive Lost Boy, Captive Lost Boy, Captive Lost Boy, Captive Pirate, Captive Pirate, Captive Pirate, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (21:18:11) Current Players: Clover, Diablomarik, Dog Fart, Dopog, EarlS, Heartgold12, Hopkirk, Katia, Kurapika, Maskun, Portgas.D.Ace, Shadow Knight, Sparksay, TSO_f4ckingbs, ThePiggy, Zach is Back, agea, lurkingSombres, megakarp.
    (21:18:11) Current Team: Captain Hook, Captive Pirate, Captive Pirate, Captive Pirate, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee
    (21:18:11) Time: Night 6
    (21:18:11) Make your moves, you only have 25 seconds! :
    (21:18:11) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:18:13) Sparksay: unhostae me
    (21:18:13) Maskun: me
    (21:18:15) TSO_f4ckingbs: Pan on Katia tomorrow
    (21:18:18) TSO_f4ckingbs: she's a Pirate
    (21:18:19) Maskun: im captain hook
    (21:18:22) Portgas.D.Ace: Zach is back is the captain hook
    (21:18:24) Hopkirk: hostage
    (21:18:27) ±Game: You have chosen to capture Dog Fart!
    (21:18:29) Sparksay: UNHOSTAGE ME
    (21:18:29) Zach is Back: lol
    (21:18:31) Maskun: hahha im captain hook
    (21:18:32) Zach is Back: lies
    (21:18:35) Sparksay: *sigh
    (21:18:36) Portgas.D.Ace: Im tinker
    (21:18:36) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:18:36) Times Up! :
    (21:18:36) ±Game: Tinkerbell has become a Captive Tinkerbell!
    (21:18:36) ±Game: Smee has become a Captive Smee!
    (21:18:36) ±Game: Lost Boy has become a Captive Lost Boy!
    (21:18:36) ±Game: Your target (Dog Fart) has been converted and is now a Captive Lost Boy!
    (21:18:36) ±Game: Captive Lost Boy has become a Lost Boy!
    (21:18:36) ±Kill: Sparksay (Captive Pirate) died!
    (21:18:36) ±Kill: ThePiggy (Captive Pirate) died!
    (21:18:37) ±Kill: Clover (Captive Lost Boy) died!
    (21:18:37) ±Kill: Maskun (Captive Pirate) died!
    (21:18:37) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:18:37) Current Roles: Captain Hook, Captive Lost Boy, Captive Lost Boy, Captive Smee, Captive Tinkerbell, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman.
    (21:18:37) Current Players: Diablomarik, Dog Fart, Dopog, EarlS, Heartgold12, Hopkirk, Katia, Kurapika, Portgas.D.Ace, Shadow Knight, TSO_f4ckingbs, Zach is Back, agea, lurkingSombres, megakarp.
    (21:18:37) Current Team: Captain Hook, Captive Smee, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman
    (21:18:37) Time: Day 6
    (21:18:37) You have 20 seconds to debate who are the bad guys! :
    (21:18:37) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:18:37) Portgas.D.Ace: :3
    (21:18:37) Katia: I'm a captive lost boy
    (21:18:39) ±Game: You evaded a kill!
    (21:18:42) Shadow Knight: 2 days to live
    (21:18:44) Portgas.D.Ace: Shit
    (21:18:44) Dog Fart: GET HEARTGOLD
    (21:18:44) TSO_f4ckingbs: Katia is captured so is Dog Fart
    (21:18:46) Zach is Back: hopkirk is lost boy
    (21:18:47) TSO_f4ckingbs: GET THEM
    (21:18:48) Hopkirk: last day
    (21:18:48) Portgas.D.Ace: BO
    (21:18:49) Portgas.D.Ace: NO
    (21:18:49) Dog Fart: Why
    (21:18:52) Portgas.D.Ace: GET ZACH
    (21:18:54) Dog Fart: Tso arnt you peter...
    (21:18:54) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:18:54) ±Game: Captain Hook has decided to kill a hostage! Hopkirk has been executed!
    (21:18:54) ±Kill: Hopkirk (Captive Lost Boy) died!
    (21:18:54) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:18:56) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:18:56) Current Roles: Captain Hook, Captive Lost Boy, Captive Smee, Captive Tinkerbell, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman.
    (21:18:56) Current Players: Diablomarik, Dog Fart, Dopog, EarlS, Heartgold12, Katia, Kurapika, Portgas.D.Ace, Shadow Knight, TSO_f4ckingbs, Zach is Back, agea, lurkingSombres, megakarp.
    (21:18:56) Current Team: Captain Hook, Captive Smee, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman
    (21:18:56) Time: Night 7
    (21:18:57) Make your moves, you only have 25 seconds! :
    (21:18:57) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:19:02) TSO_f4ckingbs: Yes I am
    (21:19:02) lurkingSombres: no can do if everyone evadesa in this stuff
    (21:19:06) Portgas.D.Ace: 2 days to live tinker bell here
    (21:19:09) Dog Fart: Im a captured lost boy..
    (21:19:09) Kurapika: Peter Pan is a dumbass btw
    (21:19:10) TSO_f4ckingbs: Lost Boys PM
    (21:19:14) TSO_f4ckingbs: Quiet Kura
    (21:19:15) Portgas.D.Ace: Peter pan kill Zach
    (21:19:21) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:19:21) Times Up! :
    (21:19:21) ±Game: Captive Smee has become a Smee!
    (21:19:21) No one died! :
    (21:19:21) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:19:21) Current Roles: Captain Hook, Captive Lost Boy, Captive Tinkerbell, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee.
    (21:19:22) Current Players: Diablomarik, Dog Fart, Dopog, EarlS, Heartgold12, Katia, Kurapika, Portgas.D.Ace, Shadow Knight, TSO_f4ckingbs, Zach is Back, agea, lurkingSombres, megakarp.
    (21:19:22) Current Team: Captain Hook, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee
    (21:19:22) Time: Day 7
    (21:19:22) You have 20 seconds to debate who are the bad guys! :
    (21:19:22) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:19:22) Portgas.D.Ace: PETER!
    (21:19:23) Katia: kill earls
    (21:19:23) Dog Fart: I told you notscience is a pirate at the start
    (21:19:24) Kurapika: He tried to kill me
    (21:19:27) Kurapika: Shadow Knight = Smee
    (21:19:28) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:19:28) ±Game: Captain Hook has decided to kill a hostage! Portgas.D.Ace has been executed!
    (21:19:28) ±Kill: Portgas.D.Ace (Captive Tinkerbell) died!
    (21:19:28) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:19:30) EarlS: wat?
    (21:19:30) Dog Fart: I NEED FREEING
    (21:19:33) Heartgold12: Dog Fart why did u yell my name
    (21:19:40) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:19:40) ±Game: Peter Pan has decided to kill a hostage! Dog Fart has been executed!
    (21:19:40) ±Kill: Dog Fart (Captive Lost Boy) died!
    (21:19:40) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:19:41) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:19:41) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee.
    (21:19:41) Current Players: Diablomarik, Dopog, EarlS, Heartgold12, Katia, Kurapika, Shadow Knight, TSO_f4ckingbs, Zach is Back, agea, lurkingSombres, megakarp.
    (21:19:41) Current Team: Captain Hook, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee
    (21:19:41) Time: Night 8
    (21:19:41) Make your moves, you only have 25 seconds! :
    (21:19:41) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:19:44) Kurapika: Peter pan kill Shadow Knight
    (21:19:44) TSO_f4ckingbs: lmfap
    (21:19:46) Kurapika: Fuck you
    (21:19:48) Dopog: //capture shadowknight
    (21:19:50) lurkingSombres: oh lol
    (21:19:53) Dopog: lolooolol
    (21:19:54) ±Game: You have chosen to capture Dopog!
    (21:19:59) ±Hint: That person is not playing!
    (21:20:04) ±Game: You have chosen to capture Katia!
    (21:20:06) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:20:06) Times Up! :
    (21:20:06) ±Game: Lost Boy has become a Captive Lost Boy!
    (21:20:06) ±Game: Lost Boy has become a Captive Lost Boy!
    (21:20:06) ±Game: Your target (Katia) has been converted and is now a Captive Lost Boy!
    (21:20:06) ±Game: Smee has become a Captive Smee!
    (21:20:06) No one died! :
    (21:20:07) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:20:07) Current Roles: Captain Hook, Captive Lost Boy, Captive Lost Boy, Captive Smee, Hiding Tiger Lily, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman.
    (21:20:07) Current Players: Diablomarik, Dopog, EarlS, Heartgold12, Katia, Kurapika, Shadow Knight, TSO_f4ckingbs, Zach is Back, agea, lurkingSombres, megakarp.
    (21:20:07) Current Team: Captain Hook, Captive Smee, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman
    (21:20:07) Time: Day 8
    (21:20:07) You have 20 seconds to debate who are the bad guys! :
    (21:20:07) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:20:12) TSO_f4ckingbs: Hook and Pan on Katia
    (21:20:14) TSO_f4ckingbs: repeat
    (21:20:18) Kurapika: I am a captive lost boy
    (21:20:18) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:20:18) ±Game: Captain Hook has decided to kill a hostage! Kurapika has been executed!
    (21:20:18) ±Kill: Kurapika (Captive Lost Boy) died!
    (21:20:19) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:20:19) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:20:19) ±Game: Peter Pan has decided to kill a hostage! Katia has been executed!
    (21:20:19) ±Kill: Katia (Captive Lost Boy) died!
    (21:20:19) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:20:19) TSO_f4ckingbs: Hook and Pan on Katia
    (21:20:20) Zach is Back: diablo is pirate crewman
    (21:20:22) TSO_f4ckingbs: yay
    (21:20:26) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:20:26) Current Roles: Captain Hook, Captive Smee, Hiding Tiger Lily, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman.
    (21:20:26) Current Players: Diablomarik, Dopog, EarlS, Heartgold12, Shadow Knight, TSO_f4ckingbs, Zach is Back, agea, lurkingSombres, megakarp.
    (21:20:26) Current Team: Captain Hook, Captive Smee, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman
    (21:20:27) Time: Night 9
    (21:20:27) Make your moves, you only have 25 seconds! :
    (21:20:27) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:20:28) EarlS: two ks
    (21:20:29) lurkingSombres: Hi5 Hook
    (21:20:30) Heartgold12: last lost boy here
    (21:20:34) EarlS: also we win right?
    (21:20:37) ±Game: You have chosen to capture Heartgold12!
    (21:20:43) TSO_f4ckingbs: I gotta say, I've been pretty good
    (21:20:44) TSO_f4ckingbs: this game
    (21:20:46) lurkingSombres: cuz this is hard
    (21:20:51) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:20:51) Times Up! :
    (21:20:51) ±Game: Lost Boy has become a Captive Lost Boy!
    (21:20:51) ±Game: Your target (Heartgold12) has been converted and is now a Captive Lost Boy!
    (21:20:51) No one died! :
    (21:20:52) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:20:52) Current Roles: Captain Hook, Captive Lost Boy, Captive Smee, Hiding Tiger Lily, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman.
    (21:20:52) Current Players: Diablomarik, Dopog, EarlS, Heartgold12, Shadow Knight, TSO_f4ckingbs, Zach is Back, agea, lurkingSombres, megakarp.
    (21:20:52) Current Team: Captain Hook, Captive Smee, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman
    (21:20:52) Time: Day 9
    (21:20:52) You have 20 seconds to debate who are the bad guys! :
    (21:20:52) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:20:53) EarlS: not if you connected
    (21:20:54) TSO_f4ckingbs: EarlS was right
    (21:20:55) Shadow Knight: 1 day
    (21:20:57) Shadow Knight: ;-;
    (21:20:58) TSO_f4ckingbs: Heartgold12 DIE
    (21:21:01) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:21:01) ±Game: Peter Pan has decided to kill a hostage! Shadow Knight has been executed!
    (21:21:01) ±Kill: Shadow Knight (Captive Smee) died!
    (21:21:01) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:21:02) Zach is Back: earls is captain hook
    (21:21:02) Heartgold12: dafuq
    (21:21:09) TSO_f4ckingbs: Hook on Heartgold12
    (21:21:11) Heartgold12: im lost boy
    (21:21:11) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:21:11) Current Roles: Captain Hook, Captive Lost Boy, Hiding Tiger Lily, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman.
    (21:21:11) Current Players: Diablomarik, Dopog, EarlS, Heartgold12, TSO_f4ckingbs, Zach is Back, agea, lurkingSombres, megakarp.
    (21:21:11) Current Team: Captain Hook, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman
    (21:21:12) Time: Night 10
    (21:21:12) Make your moves, you only have 25 seconds! :
    (21:21:12) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:21:17) Heartgold12: oh
    (21:21:23) EarlS: so tiger has to be captured?
    (21:21:25) Zach is Back: earls is capt hook
    (21:21:34) ±Game: You have chosen to capture Zach is Back!
    (21:21:36) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:21:36) Times Up! :
    (21:21:36) ±Game: Your target (Zach is Back) was guarded!
    (21:21:36) No one died! :
    (21:21:36) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:21:37) Current Roles: Captain Hook, Captive Lost Boy, Hiding Tiger Lily, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman.
    (21:21:37) Current Players: Diablomarik, Dopog, EarlS, Heartgold12, TSO_f4ckingbs, Zach is Back, agea, lurkingSombres, megakarp.
    (21:21:37) Current Team: Captain Hook, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman
    (21:21:37) Time: Day 10
    (21:21:37) You have 20 seconds to debate who are the bad guys! :
    (21:21:37) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:21:39) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:21:40) ±Game: Captain Hook has decided to kill a hostage! Heartgold12 has been executed!
    (21:21:40) ±Kill: Heartgold12 (Captive Lost Boy) died!
    (21:21:40) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:21:42) EarlS: well
    (21:21:46) EarlS: how dafuq
    (21:21:48) Zach is Back: peter
    (21:21:48) TSO_f4ckingbs: Zach is Back was guarded
    (21:21:48) EarlS: am i supposed to
    (21:21:49) TSO_f4ckingbs: :/
    (21:21:51) EarlS: capture
    (21:21:51) Zach is Back: kill earls
    (21:21:56) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:21:56) Current Roles: Captain Hook, Hiding Tiger Lily, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman.
    (21:21:56) Current Players: Diablomarik, Dopog, EarlS, TSO_f4ckingbs, Zach is Back, agea, lurkingSombres, megakarp.
    (21:21:57) Current Team: Captain Hook, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman
    (21:21:57) Time: Night 11
    (21:21:57) Make your moves, you only have 25 seconds! :
    (21:21:57) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:21:57) EarlS: ouch, you really gonna do this
    (21:22:04) EarlS: Zach is Back
    (21:22:07) EarlS: every pirates
    (21:22:08) EarlS: on him
    (21:22:13) ±Game: You have chosen to capture Diablomarik!
    (21:22:18) TSO_f4ckingbs: EarlS he's guarded
    (21:22:18) TSO_f4ckingbs: :/
    (21:22:21) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:22:21) Times Up! :
    (21:22:21) ±Game: Your target (Diablomarik) was guarded!
    (21:22:21) No one died! :
    (21:22:21) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:22:22) Current Roles: Captain Hook, Hiding Tiger Lily, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman.
    (21:22:22) Current Players: Diablomarik, Dopog, EarlS, TSO_f4ckingbs, Zach is Back, agea, lurkingSombres, megakarp.
    (21:22:22) Current Team: Captain Hook, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman
    (21:22:22) Time: Day 11
    (21:22:22) You have 20 seconds to debate who are the bad guys! :
    (21:22:22) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:22:22) EarlS: why dafuq
    (21:22:23) ±Game: You evaded a kill!
    (21:22:28) TSO_f4ckingbs: lmfao
    (21:22:31) Zach is Back: agea is crewmen
    (21:22:31) megakarp: This theme sucks
    (21:22:32) TSO_f4ckingbs: Peter missed again
    (21:22:35) EarlS: WHY
    (21:22:36) Zach is Back: earls is hook
    (21:22:38) EarlS: i cant capture him
    (21:22:41) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:22:41) Current Roles: Captain Hook, Hiding Tiger Lily, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman.
    (21:22:41) Current Players: Diablomarik, Dopog, EarlS, TSO_f4ckingbs, Zach is Back, agea, lurkingSombres, megakarp.
    (21:22:42) Current Team: Captain Hook, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman
    (21:22:42) Time: Night 12
    (21:22:42) Make your moves, you only have 25 seconds! :
    (21:22:42) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:22:44) Zach is Back: why not kill earl s
    (21:22:45) TSO_f4ckingbs: Zach is Back and lurkingSombres
    (21:22:48) TSO_f4ckingbs: peope on them
    (21:22:52) ±Game: You have chosen to capture lurkingSombres!
    (21:22:59) lurkingSombres: fly, pupa!
    (21:23:06) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:23:06) Times Up! :
    (21:23:06) ±Game: Your target (lurkingSombres) was guarded!
    (21:23:06) No one died! :
    (21:23:06) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:23:07) Current Roles: Captain Hook, Hiding Tiger Lily, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman.
    (21:23:07) Current Players: Diablomarik, Dopog, EarlS, TSO_f4ckingbs, Zach is Back, agea, lurkingSombres, megakarp.
    (21:23:07) Current Team: Captain Hook, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman
    (21:23:07) Time: Day 12
    (21:23:07) You have 20 seconds to debate who are the bad guys! :
    (21:23:07) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:23:08) EarlS: ok now
    (21:23:09) ±Game: You evaded a kill!
    (21:23:14) megakarp: lurkingSombres cant be converted
    (21:23:16) TSO_f4ckingbs: I evaded again
    (21:23:16) megakarp: This them
    (21:23:18) megakarp: theme
    (21:23:18) Zach is Back: megakarp is crewman
    (21:23:26) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:23:26) Current Roles: Captain Hook, Hiding Tiger Lily, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman.
    (21:23:26) Current Players: Diablomarik, Dopog, EarlS, TSO_f4ckingbs, Zach is Back, agea, lurkingSombres, megakarp.
    (21:23:26) Current Team: Captain Hook, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman
    (21:23:26) Time: Night 13
    (21:23:27) Make your moves, you only have 25 seconds! :
    (21:23:27) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:23:27) EarlS: i cant kill peter pan guys
    (21:23:32) lurkingSombres: is this gonna end or what?
    (21:23:35) EarlS: it wont
    (21:23:39) ±Game: You have chosen to capture agea!
    (21:23:42) TSO_f4ckingbs: Wait
    (21:23:42) EarlS: cuz zach is guarded
    (21:23:44) lurkingSombres: so yea, soz but it sucks
    (21:23:44) TSO_f4ckingbs: gimme a sec
    (21:23:45) TSO_f4ckingbs: :/
    (21:23:51) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:23:51) Times Up! :
    (21:23:51) ±Game: Your target (agea) couldn't be converted!
    (21:23:51) No one died! :
    (21:23:52) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:23:52) Current Roles: Captain Hook, Hiding Tiger Lily, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman.
    (21:23:52) Current Players: Diablomarik, Dopog, EarlS, TSO_f4ckingbs, Zach is Back, agea, lurkingSombres, megakarp.
    (21:23:52) Current Team: Captain Hook, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman
    (21:23:52) Time: Day 13
    (21:23:52) You have 20 seconds to debate who are the bad guys! :
    (21:23:52) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:23:53) TSO_f4ckingbs: CAPTURED DAMN
    (21:23:55) agea: I'm alive
    (21:23:56) EarlS: zach stop being guarded
    (21:23:57) megakarp: I evaded
    (21:23:58) TSO_f4ckingbs: NO
    (21:24:00) agea: lol
    (21:24:01) TSO_f4ckingbs: Pan off me!
    (21:24:01) EarlS: you know what
    (21:24:02) EarlS: peter
    (21:24:03) Zach is Back: im just that good
    (21:24:04) EarlS: get zach
    (21:24:05) TSO_f4ckingbs: I'm captured
    (21:24:11) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:24:11) Current Roles: Captain Hook, Hiding Tiger Lily, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman.
    (21:24:11) Current Players: Diablomarik, Dopog, EarlS, TSO_f4ckingbs, Zach is Back, agea, lurkingSombres, megakarp.
    (21:24:11) Current Team: Captain Hook, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman
    (21:24:12) Time: Night 14
    (21:24:12) Make your moves, you only have 25 seconds! :
    (21:24:12) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:24:12) lurkingSombres: lies
    (21:24:15) lurkingSombres: no lost boys
    (21:24:23) lurkingSombres: worst troll ever
    (21:24:24) megakarp: imma capture
    (21:24:26) megakarp: TSO_f4ckingbs
    (21:24:28) TSO_f4ckingbs: Peter Pan could kill be
    (21:24:29) TSO_f4ckingbs: No
    (21:24:31) notscience: What is going on .-.
    (21:24:32) megakarp: see what happens
    (21:24:32) TSO_f4ckingbs: you idiot
    (21:24:35) EarlS: we cant get zach
    (21:24:36) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:24:36) Times Up! :
    (21:24:36) No one died! :
    (21:24:37) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:24:37) Current Roles: Captain Hook, Hiding Tiger Lily, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman.
    (21:24:37) Current Players: Diablomarik, Dopog, EarlS, TSO_f4ckingbs, Zach is Back, agea, lurkingSombres, megakarp.
    (21:24:37) Current Team: Captain Hook, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman
    (21:24:37) Time: Day 14
    (21:24:37) You have 20 seconds to debate who are the bad guys! :
    (21:24:37) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:24:40) EarlS: shes guarded
    (21:24:44) TSO_f4ckingbs: Everyone
    (21:24:45) EarlS: and if
    (21:24:45) TSO_f4ckingbs: is guarded
    (21:24:47) megakarp: END GAME
    (21:24:48) Zach is Back: lol
    (21:24:50) EarlS: ok
    (21:24:51) lurkingSombres: lol
    (21:24:53) megakarp: //end
    (21:24:53) EarlS: Diablomarik
    (21:24:54) Zach is Back: what is happening
    (21:24:55) EarlS: i will let you win this
    (21:24:56) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:24:56) Current Roles: Captain Hook, Hiding Tiger Lily, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman.
    (21:24:56) Current Players: Diablomarik, Dopog, EarlS, TSO_f4ckingbs, Zach is Back, agea, lurkingSombres, megakarp.
    (21:24:56) Current Team: Captain Hook, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman
    (21:24:57) Time: Night 15
    (21:24:57) Make your moves, you only have 25 seconds! :
    (21:24:57) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:25:01) Zach is Back: can peter pan not kill
    (21:25:02) EarlS: guys, i will do this just to end it
    (21:25:04) TSO_f4ckingbs: agea was guarded, so was lurkingSombres and Zach is Back
    (21:25:05) TSO_f4ckingbs: =/
    (21:25:09) EarlS: ok?
    (21:25:12) megakarp: no
    (21:25:12) megakarp: earls
    (21:25:14) ±Game: You have chosen to capture EarlS!
    (21:25:15) megakarp: we got dis
    (21:25:16) megakarp: rawr
    (21:25:16) EarlS: we will lose but
    (21:25:16) lurkingSombres: maybe I can kill tiger
    (21:25:16) notscience: We all agree to end it?
    (21:25:20) EarlS: notscience wait
    (21:25:22) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:25:22) Times Up! :
    (21:25:22) ±Game: Your target (EarlS) couldn't be converted!
    (21:25:23) No one died! :
    (21:25:23) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:25:23) Current Roles: Captain Hook, Hiding Tiger Lily, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman.
    (21:25:23) Current Players: Diablomarik, Dopog, EarlS, TSO_f4ckingbs, Zach is Back, agea, lurkingSombres, megakarp.
    (21:25:23) Current Team: Captain Hook, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman
    (21:25:23) Time: Day 15
    (21:25:23) You have 20 seconds to debate who are the bad guys! :
    (21:25:23) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:25:24) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (21:25:24) ±Game: Katia has stopped the game!
    (21:25:24) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***

    It was long but it's pretty fun. Love the idea.
     
  28. kyucumber

    kyucumber DNA Pin FTW

    Joined:
    Mar 31, 2012
    Messages:
    69
    Likes Received:
    0
    Please answer this to me, since when did mafia themes get "tested" on the main server? I had just seen this get played, honestly it lasted way to long and needed to get ended NO ONE WON AFTER 15 TURNS i would like to say that i had actually played it, but i was too busy lagging out while playing unnamed FPS's on Steam. Anyways, (this isn't mafia) interesting concept (note: i did not say good). Maybe if you perhaps put some more time into it, i realize you are a new coder, for I have not seen any of your stuff around.
     
  29. ThePiggy

    ThePiggy New Member

    Joined:
    Mar 6, 2013
    Messages:
    21
    Likes Received:
    0
    PO Trainer Name:
    ThePiggy
    Okay, so in that last game a bug was discovered and that's why the theme took forever and had to be ended. The bug has since been fixed.
     
  30. ThePiggy

    ThePiggy New Member

    Joined:
    Mar 6, 2013
    Messages:
    21
    Likes Received:
    0
    PO Trainer Name:
    ThePiggy
    Another game after the bug fix.
    (17:06:25) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:06:25) ±Game: EarlS started a game with theme Neverland!
    (17:06:25) ±Game: Type /Join to enter the game!
    (17:06:25) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***

    (17:06:25) ±Game: Tiger Lily is being hunted by Captain Hook and his crew. Eliminate your enemy and capture Tiger Lily. Don't kill Tiger Lily or you will lose! No lynch game. Captures at night. Kills during the day. (Peter Pan and Captain Hook should claim to connect their teams and organize an attack if they hope for victory!)
    (17:06:27) ±Game: EarlS joined the game!
    (17:06:28) ±Game: Heartgold12 joined the game!
    (17:06:28) ±Game: Samzy joined the game!
    (17:06:30) ±Game: Midna joined the game!
    (17:06:31) EarlS: so, another test
    (17:06:31) ±Game: Dende joined the game!
    (17:06:31) ±Game: Qxii joined the game!
    (17:06:33) ±Game: knightofdragon joined the game!
    (17:06:33) SnakeWrangler: I woulda poisoned Heart, but I kept misspelling Poison ;-;
    (17:06:35) Zeromare: and lightning had that rand
    (17:06:35) ±Game: SnakeWrangler joined the game!
    (17:06:36) Heartgold12: i killed 4 moogles
    (17:06:36) ±Game: PancakesFTW joined the game!
    (17:06:36) Samzy: this theme again
    (17:06:38) ±Game: Roild joined the game!
    (17:06:38) Heartgold12: and still won
    (17:06:41) ±Game: Clover joined the game!
    (17:06:41) ±Game: MewtwoHidden joined the game!
    (17:06:44) BrownTown: i claim lightning and rand seph then i get randed by cloud -.-
    (17:06:47) ±Game: YoshiYoshi joined the game!
    (17:06:48) BrownTown: Countered*
    (17:06:49) ±Game: Wasabi121 joined the game!
    (17:06:49) EarlS: ThePiggy post the link?
    (17:06:50) ±Game: BlackOni joined the game!

    (17:06:54) ±Game: Hurry up, you only have 30 seconds more to join!

    (17:06:57) SnakeWrangler: and you were poisoned
    (17:06:57) ±Game: Kurapika joined the game!
    (17:06:57) *** PancakesFTW is not really fond of this theme
    (17:07:01) Roild: link, ThePiggy
    (17:07:03) ±Game: Elysia joined the game!
    (17:07:07) Elysia: didn't we have to
    (17:07:09) EarlS: http://pastebin.com/raw.php?i=d9BNxHBa
    (17:07:10) Elysia: stop this theme last time
    (17:07:11) EarlS: if you dont know
    (17:07:15) *** Qxii doesn't understand the point of this theme
    (17:07:15) Samzy: yup
    (17:07:19) EarlS: its fixed
    (17:07:19) Samzy: hopefully its fixed
    (17:07:23) EarlS: http://pastebin.com/raw.php?i=d9BNxHBa
    (17:07:23) EarlS: if you dont know how to play
    (17:07:24) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:07:24) Times Up! :
    (17:07:24) The Roles have been Decided! :
    (17:07:24) Current Roles: Captain Hook, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee, Tinkerbell.
    (17:07:24) Current Players: BlackOni, Clover, Dende, EarlS, Elysia, Heartgold12, Kurapika, MewtwoHidden, Midna, PancakesFTW, Qxii, Roild, Samzy, SnakeWrangler, Wasabi121, YoshiYoshi, knightofdragon.
    (17:07:24) Time: Night 1
    (17:07:24) Make your moves, you only have 25 seconds! :
    (17:07:24) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:07:28) Clover: fml
    (17:07:29) Heartgold12: lost boy
    (17:07:32) Clover: Peter Pan here
    (17:07:47) MewtwoHidden: hook claim
    (17:07:48) EarlS: captain hook
    (17:07:49) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:07:49) Times Up! :
    (17:07:49) ±Game: Lost Boy has become a Captive Lost Boy!
    (17:07:49) ±Game: Pirate Crewman has become a Captive Pirate!
    (17:07:49) ±Game: Tinkerbell has become a Captive Tinkerbell!
    (17:07:49) No one died! :
    (17:07:49) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:07:49) Current Roles: Captain Hook, Captive Lost Boy, Captive Pirate, Captive Tinkerbell, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee.
    (17:07:49) Current Players: BlackOni, Clover, Dende, EarlS, Elysia, Heartgold12, Kurapika, MewtwoHidden, Midna, PancakesFTW, Qxii, Roild, Samzy, SnakeWrangler, Wasabi121, YoshiYoshi, knightofdragon.
    (17:07:49) Time: Day 1
    (17:07:49) You have 30 seconds to debate who are the bad guys! :
    (17:07:49) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:07:49) EarlS: you claim too
    (17:07:54) Clover: Lost Boys pm
    (17:07:58) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:07:58) ±Game: Peter Pan has decided to kill a hostage! MewtwoHidden has been executed!
    (17:07:58) ±Kill: MewtwoHidden (Captive Pirate) died!
    (17:07:58) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:07:59) ±Dratini: George 99 was mysteriously kicked by Windbound!
    (17:07:59) knightofdragon: psh captive tinkerbell whatever
    (17:08:02) SnakeWrangler: .-.
    (17:08:04) Roild: Who's Tink?
    (17:08:06) PancakesFTW: lost boy
    (17:08:15) knightofdragon: i'm tinkerbell :3
    (17:08:19) SnakeWrangler: >Hiding Tiger Lily
    (17:08:19) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:08:19) Current Roles: Captain Hook, Captive Lost Boy, Captive Tinkerbell, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee.
    (17:08:19) Current Players: BlackOni, Clover, Dende, EarlS, Elysia, Heartgold12, Kurapika, Midna, PancakesFTW, Qxii, Roild, Samzy, SnakeWrangler, Wasabi121, YoshiYoshi, knightofdragon.
    (17:08:19) Time: Night 2
    (17:08:19) Make your moves, you only have 25 seconds! :
    (17:08:19) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:08:19) SnakeWrangler: wat
    (17:08:21) Qxii: Hook, you need to claim!
    (17:08:26) Elysia: earls is hook
    (17:08:27) BlackOni: hook damn it
    (17:08:31) BlackOni: no he isn't
    (17:08:33) EarlS: im not
    (17:08:34) EarlS: wtf
    (17:08:36) EarlS: why did
    (17:08:37) EarlS: wtf
    (17:08:44) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:08:44) Times Up! :
    (17:08:44) ±Game: Pirate Crewman has become a Captive Pirate!
    (17:08:44) No one died! :
    (17:08:44) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:08:44) Current Roles: Captain Hook, Captive Lost Boy, Captive Pirate, Captive Tinkerbell, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee.
    (17:08:44) Current Players: BlackOni, Clover, Dende, EarlS, Elysia, Heartgold12, Kurapika, Midna, PancakesFTW, Qxii, Roild, Samzy, SnakeWrangler, Wasabi121, YoshiYoshi, knightofdragon.
    (17:08:44) Time: Day 2
    (17:08:44) You have 30 seconds to debate who are the bad guys! :
    (17:08:44) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:08:53) Heartgold12: 1 day to live
    (17:08:56) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:08:56) ±Game: Peter Pan has decided to kill a hostage! SnakeWrangler has been executed!
    (17:08:56) ±Kill: SnakeWrangler (Captive Pirate) died!
    (17:08:56) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:09:00) Samzy: hook should claim
    (17:09:02) Roild: Pan's on a rampage
    (17:09:06) Roild: what's hook doing?
    (17:09:06) Kurapika: Pirates pm me please
    (17:09:12) Roild: Why?
    (17:09:14) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:09:14) Current Roles: Captain Hook, Captive Lost Boy, Captive Tinkerbell, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee.
    (17:09:14) Current Players: BlackOni, Clover, Dende, EarlS, Elysia, Heartgold12, Kurapika, Midna, PancakesFTW, Qxii, Roild, Samzy, Wasabi121, YoshiYoshi, knightofdragon.
    (17:09:14) Time: Night 3
    (17:09:14) Make your moves, you only have 25 seconds! :
    (17:09:15) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:09:15) Roild: Haha
    (17:09:19) Roild: Hook, why do you kill me?
    (17:09:20) Kurapika: ...
    (17:09:23) Roild: Jeez.
    (17:09:30) Wasabi121: btw
    (17:09:34) Wasabi121: Kurapika is captain hhok
    (17:09:36) BlackOni: hook fucking claim
    (17:09:39) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:09:39) Times Up! :
    (17:09:39) ±Game: Lost Boy has become a Captive Lost Boy!
    (17:09:39) ±Game: Lost Boy has become a Captive Lost Boy!
    (17:09:39) ±Kill: Heartgold12 (Captive Lost Boy) died!
    (17:09:39) ±Kill: knightofdragon (Captive Tinkerbell) died!
    (17:09:39) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:09:39) Current Roles: Captain Hook, Captive Lost Boy, Captive Lost Boy, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee.
    (17:09:39) Current Players: BlackOni, Clover, Dende, EarlS, Elysia, Kurapika, Midna, PancakesFTW, Qxii, Roild, Samzy, Wasabi121, YoshiYoshi.
    (17:09:39) Time: Day 3
    (17:09:39) You have 30 seconds to debate who are the bad guys! :
    (17:09:39) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:09:40) Samzy: Hook claim
    (17:09:46) Kurapika: Dat reveal
    (17:09:48) Wasabi121: i JSUT TOLD YOU
    (17:09:51) Wasabi121: who hook was
    (17:09:59) Elysia: jsut
    (17:10:00) Roild: Wasabi121, hook can't be captured anyway
    (17:10:08) Roild: Thanks for helping with the claim though
    (17:10:09) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:10:09) Current Roles: Captain Hook, Captive Lost Boy, Captive Lost Boy, Hiding Tiger Lily, Lost Boy, Lost Boy, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee.
    (17:10:09) Current Players: BlackOni, Clover, Dende, EarlS, Elysia, Kurapika, Midna, PancakesFTW, Qxii, Roild, Samzy, Wasabi121, YoshiYoshi.
    (17:10:09) Time: Night 4
    (17:10:09) Make your moves, you only have 25 seconds! :
    (17:10:09) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:10:14) Wasabi121: i must be confused casue why is captain hook pming me when i'm sided with lost boys
    (17:10:19) Roild: ....
    (17:10:25) Roild: Kurapika, what are you doing?
    (17:10:34) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:10:34) Times Up! :
    (17:10:34) ±Game: Lost Boy has become a Captive Lost Boy!
    (17:10:34) ±Game: Lost Boy has become a Captive Lost Boy!
    (17:10:34) No one died! :
    (17:10:34) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:10:34) Current Roles: Captain Hook, Captive Lost Boy, Captive Lost Boy, Captive Lost Boy, Captive Lost Boy, Hiding Tiger Lily, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee.
    (17:10:34) Current Players: BlackOni, Clover, Dende, EarlS, Elysia, Kurapika, Midna, PancakesFTW, Qxii, Roild, Samzy, Wasabi121, YoshiYoshi.
    (17:10:34) Time: Day 4
    (17:10:34) You have 30 seconds to debate who are the bad guys! :
    (17:10:34) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:10:37) Kurapika: I am fapping
    (17:10:39) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:10:39) ±Game: Captain Hook has decided to kill a hostage! EarlS has been executed!
    (17:10:39) ±Kill: EarlS (Captive Lost Boy) died!
    (17:10:39) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:10:44) Roild: Nice.
    (17:10:54) Wasabi121: wtf is the point of this
    (17:11:02) YoshiYoshi: this theme is dumb
    (17:11:02) Kurapika: No idea
    (17:11:04) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:11:04) Current Roles: Captain Hook, Captive Lost Boy, Captive Lost Boy, Captive Lost Boy, Hiding Tiger Lily, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee.
    (17:11:04) Current Players: BlackOni, Clover, Dende, Elysia, Kurapika, Midna, PancakesFTW, Qxii, Roild, Samzy, Wasabi121, YoshiYoshi.
    (17:11:04) Time: Night 5
    (17:11:04) Make your moves, you only have 25 seconds! :
    (17:11:04) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:11:09) PancakesFTW: whos captive with me?
    (17:11:12) ±Dratini: Gr0v was unmuted by Windbound!
    (17:11:13) Roild: I thought the point in most games is to win
    (17:11:13) Clover: I need ALL Lost Boys to pm me please
    (17:11:22) BlackOni: get one side to lose captives
    (17:11:29) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:11:29) Times Up! :
    (17:11:29) ±Game: Hiding Tiger Lily has become a Hostage Tiger Lily!
    (17:11:29) ±Kill: Midna (Captive Lost Boy) died!
    (17:11:29) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:11:29) Current Roles: Captain Hook, Captive Lost Boy, Captive Lost Boy, Hostage Tiger Lily, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee.
    (17:11:29) Current Players: BlackOni, Clover, Dende, Elysia, Kurapika, PancakesFTW, Qxii, Roild, Samzy, Wasabi121, YoshiYoshi.
    (17:11:29) Time: Day 5
    (17:11:30) You have 30 seconds to debate who are the bad guys! :
    (17:11:30) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:11:33) Roild: Dat hostage
    (17:11:35) BlackOni: oh shit
    (17:11:37) Wasabi121: Midna is hostage here
    (17:11:38) YoshiYoshi: 1 day to live lolz
    (17:11:40) Wasabi121: sorry
    (17:11:42) Wasabi121: i'm hostage
    (17:11:46) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:11:46) ±Game: Captain Hook has decided to kill a hostage! Elysia has been executed!
    (17:11:46) ±Kill: Elysia (Captive Lost Boy) died!
    (17:11:46) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:11:51) Wasabi121: whatever that fuck that means
    (17:11:59) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:11:59) Current Roles: Captain Hook, Captive Lost Boy, Hostage Tiger Lily, Lost Boy, Peter Pan, Pirate Crewman, Pirate Crewman, Pirate Crewman, Pirate Crewman, Smee.
    (17:11:59) Current Players: BlackOni, Clover, Dende, Kurapika, PancakesFTW, Qxii, Roild, Samzy, Wasabi121, YoshiYoshi.
    (17:11:59) Time: Night 6
    (17:11:59) Make your moves, you only have 25 seconds! :
    (17:11:59) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:12:04) YoshiYoshi: can we play an actual good theme next time
    (17:12:06) Roild: It means you belong to Hook now
    (17:12:17) Wasabi121: it still say s my team is lost boys
    (17:12:20) Roild: It is
    (17:12:23) Roild: But you're captured
    (17:12:24) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:12:24) Times Up! :
    (17:12:24) ±Game: Lost Boy has become a Captive Lost Boy!
    (17:12:24) ±Kill: YoshiYoshi (Captive Lost Boy) died!
    (17:12:24) ±Game: The crew of the Jolly Roger, Samzy, Dende, Qxii, Roild, BlackOni and Kurapika, have emerged from battle victorious!
    (17:12:24) ±Game: The Lost Boys (PancakesFTW, Clover and Wasabi121) lose!
    (17:12:24) ***✰☽}∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞{☾✰***
    (17:12:28) EarlS: gg
    [/HIDE]
     
  31. Roild

    Roild Member

    Joined:
    Jul 21, 2012
    Messages:
    861
    Likes Received:
    11
    PO Trainer Name:
    Roild
    Okay. People are actively refusing to play this theme. They say they don't understand even though I know ThePiggy included a "tutorial" of sorts in the summary and posts it for people to read. I saw a game where Pan had essentially won, just needing to re-capture Lily from a team-less Hook. It took 3 turns of "how do we win" until Pan decided to kill Lily instead of capture her, losing the game.

    People are refusing to play this theme, the theme itself isn't bad. People who have played, who know what the basic goal is, have been enjoying the theme. It all kind of sucks because people just want to replay the same old themes instead of figuring out something new and different, and instead decide to bash on it and the creator. (I think I've seen this for ALL new themes...)
     
  32. two sides of one coin

    two sides of one coin sick of all her shit

    Joined:
    Mar 1, 2012
    Messages:
    1,255
    Likes Received:
    0
    The problem with this theme is the general playerbase. They are ridiculously biased against the theme because there are no kills and there's gotta be kills, right? I don't know how you'd stop this (perhaps a game with only MA's/specific non MA's to show how you play) but this seems to have died and I think the concept is excellent so I ask you to continue your work,

    Oh btw, it's disabled due to some error, so yeah....
     
  33. Not L

    Not L Fairy Princess

    Joined:
    Jan 9, 2012
    Messages:
    193
    Likes Received:
    0
    Decline [3] for reasons mentioned above
     
  34. citro

    citro CRYING LIGHTNING

    Joined:
    Jan 29, 2013
    Messages:
    82
    Likes Received:
    0
    I don't want to take away from the basic essence of the theme but I think you should add some more basic commands to spice things up in larger games. A lot of teams suffer from lack of info which could be fixed by adding special Lost Boys and Pirate Crewmen (you don't have to give them unique names, it will be hard making the function match the flavor) with access to a separate inspect, distract, etc but with a substantial %failchance so that games can't turn into a stallfest.

    total credit to Katia for this idea, but I think adding the Crocodile as a pseudo-werewolf role would go a long way in speeding up gameplay too. Give him a nightkill, make him kill converters, but be vulnerable to daykills unlike the rest of the non-hostage roles so Captain Hook and Peter Pan can still take him out if they find him. If you made Captain Hook and Peter Pan evade his kills, he wouldn't ruin the basic structure of the theme. Maybe he could win if he manages to kill a certain amount of players? (indicating his appetite is satisfied). the code would be something like:

    Code (text):
    1.  
    2. "role": "werewolf",
    3. "translation": "Crocodile",
    4.  
    5. [...]
    6.  
    7. "actions": {
    8.     "night": {
    9.         "kill": {
    10.             "command": [
    11.                 "kill",
    12.                 "copy"
    13.             ],
    14.             "target": "AnyButSelf",
    15.             "common": "Self",
    16.             "priority": 5,
    17.             "canCopy": [
    18.                 "tink",
    19.                 "boy",
    20.                 "smee",
    21.                 "crew",
    22.                 "hostagetink",
    23.                 "hostageboy",
    24.                 "hostagesmee",
    25.                 "hostagecrew"
    26.             ],
    27.             "copyAs": "werewolf2",
    28.             "copymsg": "The Crocodile now only has 9 victims left to eat!",
    29.             "usermsg": "You ate another victim and have become closer to victory!"
    30.         }
    31.     },
    32.     "convert": {
    33.     "mode": "ChangeTarget"
    34.     }    
    35. }
    36.  
    and just give the vital PRs kill.mode.ignore and you're set.

    This is still excellent, the concept is creative and unlike any other on the server and the theme has been great whenever I've played it. I think the changes I've suggested will make it even better. :) here's your well-deserved approve [3]!
     
  35. ThePiggy

    ThePiggy New Member

    Joined:
    Mar 6, 2013
    Messages:
    21
    Likes Received:
    0
    PO Trainer Name:
    ThePiggy
    Thanks for all the info/criticism. I am definitely still working to make the theme better however I can. I will implement the changes and try them out on the private server again for a while. I've been a bit busy lately and so haven't been updating the past few days, but I will be working on this until it is accepted and I will continue to make it better. The people trying to discourage me won't make me give up. :)
     
  36. ThePiggy

    ThePiggy New Member

    Joined:
    Mar 6, 2013
    Messages:
    21
    Likes Received:
    0
    PO Trainer Name:
    ThePiggy
    Could you please specify your reasons? You haven't given any reasons in this thread so I'm confused as to what you're referring.
     
  37. Not L

    Not L Fairy Princess

    Joined:
    Jan 9, 2012
    Messages:
    193
    Likes Received:
    0
    "reasons mentioned by others"

    I'm seeing the same flaws others are. I mean, it's an interesting concept and all, but it isn't conducive to mafia. The way this theme ends up running is people randomly killing, hoping to get the other guys until one side has more players than the other. When we get to that point, the bigger team can capture Tiger Lily and win the game. God forbid a team accidentally kills Tiger Lily (I see this sort of like hitting the 8 ball in while playing pool. If it happens too early, the fun is over). Like I said, I like the idea, but it just doesn't work out the way we all want it to. We end up with long games of people slowly dying until one side is eliminated.
     
  38. Katia

    Katia Haxy Haxy!

    Joined:
    Apr 17, 2012
    Messages:
    261
    Likes Received:
    0
    Decline [4] I have to agree with what everyone else has said.
     
Thread Status:
Not open for further replies.