Sayori

DDLC Script Act 2 Prologue

Oct 17th, 2017
520
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.97 KB | None | 0 0
  1. label ch10_main:
  2.     $ delete_all_saves()
  3.     $ persistent.deleted_saves = True
  4.     $ gtext = glitchtext(48)
  5.     stop music
  6.     $ config.window_hide_transition = None
  7.     scene bg residential_day
  8.     with dissolve_scene_half
  9.     $ config.window_hide_transition = Dissolve(.2)
  10.     play music t2g
  11.     queue music t2g2
  12.  
  13.     s "[gtext]"
  14.     $ s_name = glitchtext(12)
  15.     "I see an annoying girl running toward me from the distance, waving her arms in the air like she's totally oblivious to any attention she might draw to herself."
  16.     "That girl is [s_name], my neighbor and good friend since we were children."
  17.     "You know, the kind of friend you'd never see yourself making today, but it just kind of works out because you've known each other for so long?"
  18.     "We used to walk to school together on days like this, but starting around high school she would oversleep more and more frequently, and I would get tired of waiting up."
  19.     "But if she's going to chase after me like this, I almost feel better off running away."
  20.     "However, I just sigh and idle in front of the crosswalk and let [s_name] catch up to me."
  21.  
  22.     show sayori glitch zorder 2 at t11
  23.     python:
  24.         currentpos = get_pos()
  25.         startpos = currentpos - 0.3
  26.         if startpos < 0: startpos = 0
  27.         track = "<from " + str(startpos) + " to " + str(currentpos) + ">bgm/2.ogg"
  28.         renpy.music.play(track, loop=True)
  29.     pause 1.0
  30.     $ gtext = glitchtext(48)
  31.     s "{cps=60}[gtext]{/cps}{nw}"
  32.     pause 1.0
  33.     $ gtext = glitchtext(48)
  34.     s "{cps=60}[gtext]{/cps}{nw}"
  35.     show screen tear(8, offtimeMult=1, ontimeMult=10)
  36.     pause 1.5
  37.     hide screen tear
  38.     window hide(None)
  39.     window auto
  40.     scene black with trueblack
  41.     $ delete_all_saves()
  42.     $ persistent.playthrough = 2
  43.     $ persistent.anticheat = renpy.random.randint(100000, 999999)
  44.     $ anticheat = persistent.anticheat
  45.  
  46.     jump ch20_from_ch10
  47. # Decompiled by unrpyc: https://github.com/CensoredUsername/unrpyc
Advertisement
Add Comment
Please, Sign In to add comment