Mimsicott

Untitled

Jun 18th, 2014
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.46 KB | None | 0 0
  1.  
  2. # You can place the script of your game in this file.
  3.  
  4. init:
  5.  
  6. #Slow text.
  7. $ xslow = Character(_(""),
  8. color="#c8ffc8",
  9. what_slow_cps=20)
  10.  
  11.  
  12. # Declare images below this line, using the image statement.
  13. # eg. image eileen happy = "eileen_happy.png"
  14. image bg emhome = "em.png"
  15.  
  16. # Declare characters used by this game.
  17. define p = Character('%(player_name)', color = "#000000")
  18. define m = Character('Mimi', color="#ff8000")
  19. define d = Character('Tsurniki', color = "ffffff")
  20.  
  21.  
  22. # The game starts here.
  23. label start:
  24. scene bg emhome at Pan((0, 0), (0, 135), 5.0)
  25. $ renpy.pause(5.0)
  26. xslow "A while ago, while browsing the web, I stumbled upon a website that said \"Epicmafia.\" Reading the about page of the site... It seemed like a virtual simulation of the real life Mafia game that I'd played before."
  27. scene bg emhome at Pan((0, 135), (0, 0), 3.0)
  28. xslow "Curious, I decided to sign up... And that's how I got here now."
  29. $ renpy.pause(3.0)
  30.  
  31. # The phrase in the brackets is the text that the game will display to prompt
  32. # the player to enter the name they've chosen.
  33.  
  34. label inputun:
  35.  
  36. $ player_name = renpy.input("Username?")
  37.  
  38. $ player_name = player_name.strip()
  39. # The .strip() instruction removes any extra spaces the player
  40. # may have typed by accident.
  41.  
  42. # If the player can't be bothered to choose a name, then we
  43. # choose a suitable one for them:
  44. if player_name == "":
  45. $ player_name="Lyle"
  46.  
  47. # Now the other characters in the game can greet the player.
  48. "So, it's %(player_name)s?"
  49.  
  50. menu:
  51. "Yeah.":
  52. jump start2
  53. "Wait, no.":
  54. jump inputun
  55.  
  56.  
  57. label start2:
  58.  
  59. "I wandered around the lobbies, unsure of what to do, before finding the Dangan Mafia Lobby."
  60. "Dangan Mafia... Dangan Ronpa? Could it be?"
  61. "I found a pastebin that defined the lobby and how to get in..."
  62. "Could this be for real? An entire lobby dedicated to allowing Dangan Ronpa fans to roleplay out this Mafia game?"
  63. "I eagerly PM'd Tsurniki with my information. After that, I drummed my fingers on my keyboard, staring at the screen, before leaving the computer to go get something to eat. My whitelist request had time to go through... And the moderators were probably busy, anyways. It was a big lobby, after all."
  64. "5 minutes later{cps=20}...{/cps}"
  65. "I tabbed back into Epicmafia, my eyes catching a glimpse of a small red notification."
  66. "Could it be?"
  67. "You have been aproved for my lobby, DanganMafia!"
  68. "Wow that was quick. I tab over to the lobby page, scanning the lobby. It seems there's a couple games I could join..."
  69.  
  70. menu:
  71. "Join the game with a heart next to it.":
  72. jump wolfhunter1
  73. "Join the game with 8 players.":
  74. jump ic1
  75. "Join the big game with few roles.":
  76. jump dinner1
  77.  
  78. label wolfhunter1:
  79. "This is the wolfhunter path."
  80. "Huh...that game has a little heart next to it? I wonder what that means..."
  81. "{cps=20}I guess there's only one way to find out...{/cps}"
  82. "And with that, I joined the game."
  83. "Being the last player, the game started relatively quick so I didn't really see what was going on in the chat. Not that it mattered now, the chat had disappeared. The top of the page showed Night 1. To the right I notice 'Gunsmith meeting You choose'"
  84. "I click the arrow below and all the player's names in the game show up. I don't know anyone here. I don't know who to pick..."
  85. "A gun is a dangerous weapon right? Should I be giving one out so freely??"
  86. "I'm brought out of my thoughts by a small ping noise. The timer ran out, I should make a decision quick..."
  87. "I could just pick someone random, so I think it's best to..."
  88.  
  89. menu:
  90. "Choose the person with the bright icon.":
  91. jump radiohated1
  92. "Choose the person with the weird looking icon.":
  93. jump guppy1
  94. "Choose no one... Better not play favourites.":
  95. jump noone1
  96.  
  97. label radiohated1:
  98. "This is seph's path"
  99. return
  100.  
  101. label guppy1:
  102. "Pook! This is Guppy's Path"
  103. "I look over the list and a small purple icon catches my eye. Is that an eggplant?? or a purple flying bean?? Whatever this 'Guppy's icon was, I decided they would be the one I would gun."
  104. "Soon the night was over and day started. 2 people had died. A Gunsmith and an Oracle. The chat was quickly filled with 'SOMEONE SHOOT' 'SHOOT THE WEREWOLF'. Werewolf? I look to the left and see that a user now has a little werewolf icon next to their name."
  105. "This is going really fast. I can't tell what's going on exactly."
  106. "A sudden shot rang made me jump. 'You hear a gunshot!' appears in red."
  107. "{cps=5}Well... {/cps}{w}{cps=30}No shit.{/cps}"
  108. "Apparently Guppy had used the gun I had given them to shoot the werewolf. I'm glad I made the right choice. The day ends after everyone votes no one. I decided it would be best if I just went with the crowd to learn how to play this..."
  109. "{cps=10}Day 4...{/cps}"
  110. "Somehow I'm left standing with two other players. I feel the pressure. The chat is racing, they're both arguing that they're the last Gunsmith."
  111.  
  112. return
  113.  
  114. label noone1:
  115. "This is where you pick no one in wolf hunter."
  116. return
  117.  
  118. label ic1:
  119. "This is the Closed Roles path."
  120.  
  121. return
  122.  
  123. label dinner1:
  124. "This is the dinner games path."
  125.  
  126. return
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135. return
Advertisement
Add Comment
Please, Sign In to add comment