-
Notifications
You must be signed in to change notification settings - Fork 12
/
script-stalker.rpy
158 lines (147 loc) · 4.06 KB
/
script-stalker.rpy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
#Stalker by CampinKarl
init -200 python:
skit_stalker = Skit(
"S.T.A.L.K.E.R.", # Title
"stalker", # Label
"stalker_date", #Thumbnail
"@CampinKarl#8524, /u/CampinKate"
)
skits.append(skit_stalker)
label stalker(preserve_transition=True):
stop music fadeout 2.0
#Thanks for guiding me so far with the programming Karl... it's # to re-write, huh?
$ persistent.playthrough = 0
scene bg stalker_bg
if preserve_transition == True:
with dissolve_scene_full
#'Hold on, let me just put this in.'
if player == m_name:
m "Imitation is the sincerest form of flattery, [currentuser]."
m "But I prefer your real name."
$ player = currentuser
elif player == "Karl": #'Inspired by people who use Karl as a name'
m "Are we de-bugging, [player]?"
play sound "sfx/giggle.ogg"
elif player == "Francis": #'Here's to the MBS artist, cheers!'
m "Oooh, [player]!"
$ m_name = '????'
$ s_name = '????'
$ y_name = '????'
$ n_name = 'Bandits'
#maybe I should set up the mood a bit
play music stalker
y "Oh my..."
y "This..."
y "...This should be the place."
$ y_name = 'Yuri'
show yuri 1sq at t11
y "The Zone of Markov."
#a little music here~
y "It's {i}grassier{/i} than they put out in the books."
y 2ss "I wonder if the landmarks are right..."
play sound "mod_assets/stalker/stalker_sfx_army1.ogg"
show yuri 3se
y "Ooh-!"
y "..."
y "..."
y 3sd "This is indeed the place!"
y 2si "I should begin surveying the locations."
y "Perhaps enjoy some tea as well."
y 2sc "Perfect place to read!"
show yuri 3sp at t43
play sound "mod_assets/stalker/stalker_sfx_breeki.ogg"
y "Eaahh!!"
y "Bandits!!"
s "Papali-!"
s "Papali suka!"
play sound "mod_assets/stalker/stalker_sfx_shotgun.ogg"
show sayori 6p at h41
s "Uwaaaa-!!!"
s "Heeeeeelp mee!!!"
show yuri 2sn
y "What do I do???"
hide sayori
show yuri 1so at t11
y "I should call the army."
y "They'll be of quaint assistance!"
play sound "mod_assets/stalker/stalker_sfx_army2.ogg"
scene bg stalker_bg2
with dissolve_scene_full
pause 1.0
show yuri at t11
y 3sp "HEEEEEEEEELP!!!!"
y "SOMEONE!!!"
y "There are bandits prowling about!!!"
y 3so "...."
y "..."
show yuri at t41
show monika 1sh at t44
m "..."
show yuri 3sp
m 2si "Kakogo cherta ty zdes' delayesh'?"
y 2sq "I'm sorry, I don't speak Markov!"
$ m_name = 'Monika'
show monika 1sc
m "..."
show yuri 2ss
m 1sd "I see."
m 1sa "Are you traveling alone, or in a group?"
y 2st "Loner..."
show monika 1se
y "I..."
y "I'm alone..."
play sound "mod_assets/stalker/stalker_sfx_army3.ogg"
m 3sk "Perfect!"
show monika 3sj
y 2sq "Ahaha..."
y "How so...?"
m 1sa "Say goodbye."
y 1se "Goodbye?"
y "But I just got here..."
play sound "mod_assets/stalker/stalker_sfx_shotgun2.ogg"
m 1se "I know, Yuri."
m 1sj "I know..."
stop music
stop sound
show yuri at t11
hide monika
y 3sp "Eahhh!"
scene black
hide yuri
play sound "mod_assets/stalker/stalker_sfx_shotgun.ogg"
y "..."
y "..."
y "..."
play music stalker
y "Am I dead?"
scene bg stalker_bg
with dissolve_scene_full
show sayori 4sa at t22
show yuri 3sw at t21
s "Are you alright?"
y 3sn "..."
y "..."
show sayori 3sn
y 3ss "You saved me..."
s 3sm "I did?"
y "Thank you..."
show yuri 2sn
s 4sp "I shot the army!!!!"
s 1sw "I thought it was a bandit!!!"
show sayori 1su
y 1st "Well..."
y "...No matter..."
y "At least we're safe now."
s 2sy "I actually don't have any bullets left."
y 1sf "Oh?"
y 1sa "Well what's the worst that can happen?"
play sound "mod_assets/stalker/stalker_sfx_breeki.ogg"
show yuri 2sn
show sayori 4sn
n "Anu cheeki breeki iv damke!"
# scene black
# stop music
# hide sayori
# hide yuri
# "FIN."
return