|
@@ -1,10 +1,9 @@
|
|
# police_station
|
|
# police_station
|
|
|
|
|
|
if $ARGS[0] = 'start':
|
|
if $ARGS[0] = 'start':
|
|
- $menu_loc = 'police_station'
|
|
|
|
- $menu_arg = 'start'
|
|
|
|
- $region = 'city'
|
|
|
|
menu_off = 0
|
|
menu_off = 0
|
|
|
|
+ $region = 'city'
|
|
|
|
+ gs 'shortgs', 'setloc', 'police_station', 'start'
|
|
|
|
|
|
'<center><h1><font color="maroon">Police station Entrance</font></h1></center>'
|
|
'<center><h1><font color="maroon">Police station Entrance</font></h1></center>'
|
|
'<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/cityext.jpg"></center>'
|
|
'<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/cityext.jpg"></center>'
|
|
@@ -16,280 +15,154 @@ end
|
|
|
|
|
|
|
|
|
|
if $ARGS[0] = 'reception':
|
|
if $ARGS[0] = 'reception':
|
|
- $menu_loc = 'police_station'
|
|
|
|
- $menu_arg = 'reception'
|
|
|
|
- $region = 'city'
|
|
|
|
menu_off = 0
|
|
menu_off = 0
|
|
|
|
+ $region = 'city'
|
|
|
|
+ gs 'shortgs', 'setloc', 'police_station', 'reception'
|
|
|
|
|
|
'<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/cityrec.jpg"></center>'
|
|
'<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/cityrec.jpg"></center>'
|
|
'Upon entering the station you''re welcomed by a reception desk. The officers sitting here are protected by thick glass and you see several monitors and computers keeping an eye on everything that''s happening inside and outside the building.'
|
|
'Upon entering the station you''re welcomed by a reception desk. The officers sitting here are protected by thick glass and you see several monitors and computers keeping an eye on everything that''s happening inside and outside the building.'
|
|
|
|
|
|
- if rape_count > 0 and rape_day+2 > daystart: act 'Report a rape': gt 'police_station', 'rape_report'
|
|
|
|
|
|
+ if rape_count > 0 and daystart < rape_day + 2: act 'Report a rape': gt 'police_station', 'rape_report'
|
|
gs 'blackmailer', 'set_police_act'
|
|
gs 'blackmailer', 'set_police_act'
|
|
act 'Return to the center': gt 'city_center'
|
|
act 'Return to the center': gt 'city_center'
|
|
end
|
|
end
|
|
|
|
|
|
|
|
|
|
-temp_tot_booked = policeQW['shoplift_booked'] + policeQW['prostitution_booked']
|
|
|
|
-
|
|
|
|
-if $ARGS[0] = 'entrance':
|
|
|
|
- menu_off = 1
|
|
|
|
-
|
|
|
|
- '<center><h1><font color="maroon">Reception area</font></h1></center>'
|
|
|
|
|
|
+if $ARGS[0] = 'rape_report':
|
|
'<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/cityrec.jpg"></center>'
|
|
'<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/cityrec.jpg"></center>'
|
|
- 'The officer drags you in by the arm, his grip tightening whenever he feels the slightest bit of resistance from you. You expect him to take you straight in to be booked, but to your dismay he stops at the front desk to put you on display to the other officers as he gloats.'
|
|
|
|
- *nl
|
|
|
|
-
|
|
|
|
- !first time offender, event where Sveta gets caught stealing
|
|
|
|
- !need to add a variable to store that Sveta has been brought into the police station
|
|
|
|
- if $ARGS[1] = 'shplft' or $ARGS[1] = 'shoplift':
|
|
|
|
- policeQW['shoplift_booked'] += 1
|
|
|
|
- $policeQW['crime_flag'] = 'shoplift'
|
|
|
|
- temp_tot_booked = policeQW['shoplift_booked'] + policeQW['prostitution_booked']
|
|
|
|
-
|
|
|
|
- if temp_tot_booked = 1:
|
|
|
|
- !!a gosub on purpose!!
|
|
|
|
- gs 'police_station', 'first_shoplift'
|
|
|
|
- elseif temp_tot_booked < 6:
|
|
|
|
- gt 'police_station', 'repeat'
|
|
|
|
- elseif temp_tot_booked < 11:
|
|
|
|
- gt 'police_station', 'repeat'
|
|
|
|
- else
|
|
|
|
- gt 'police_station', 'regular'
|
|
|
|
- end
|
|
|
|
-
|
|
|
|
- else
|
|
|
|
- policeQW['prostitution_booked'] += 1
|
|
|
|
- $policeQW['crime_flag'] = 'prostitution'
|
|
|
|
- temp_tot_booked = policeQW['shoplift_booked'] + policeQW['prostitution_booked']
|
|
|
|
-
|
|
|
|
- if temp_tot_booked = 1:
|
|
|
|
- !!a gosub on purpose!!
|
|
|
|
- gs 'police_station', 'first_prostitution'
|
|
|
|
- elseif temp_tot_booked < 6:
|
|
|
|
- gt 'police_station', 'repeat'
|
|
|
|
- elseif temp_tot_booked < 11:
|
|
|
|
- gt 'police_station', 'repeat'
|
|
|
|
- else
|
|
|
|
- gt 'police_station', 'regular'
|
|
|
|
- end
|
|
|
|
- end
|
|
|
|
-end
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-if $ARGS[0] = 'first_shoplift':
|
|
|
|
- cla
|
|
|
|
- minut += 2
|
|
|
|
- gs 'pain', 2, 'armR', 'pinch'
|
|
|
|
- gs 'stat'
|
|
|
|
-
|
|
|
|
- if policeQW['toldonguard'] = 2:
|
|
|
|
- !! if had sex with the security guard but still got arrested
|
|
|
|
- '"I''m not lying, that security guard forced me to have sex with him! Why won''t you believe me?" you plead, but it does you no good.'
|
|
|
|
- 'The officer sighs, "You think you''re the first to try that? I''ve heard it all from you thieving little whores. You''re not the victim here!"'
|
|
|
|
- *nl
|
|
|
|
- 'With a dejected whimper, you look down to the floor as you''re led further into the station to be booked.'
|
|
|
|
-
|
|
|
|
- elseif grupTipe = 4:
|
|
|
|
- '"Security over at the mall caught a wild one today. This little bitch tried to bite me as I was bringing her in!"'
|
|
|
|
- 'The others shake their head as he leads you further inside the police station.'
|
|
|
|
- *nl
|
|
|
|
- '"Wow, you''re real tough, manhandling a girl barely half your size," you hiss.'
|
|
|
|
- '"You think this is being too rough? I can show you a thing or two about real pain," he threatens.'
|
|
|
|
-
|
|
|
|
- elseif pcs_hotcat >= 7:
|
|
|
|
- '"Look who was caught stealing by the security guys at the mall! I guess being pretty can''t get you everything you want," he says with a cruel laugh.'
|
|
|
|
- 'Most of officers just grin and laugh, but you hear a few make crude comments as you''re led further inside the police station.'
|
|
|
|
- *nl
|
|
|
|
- '"Hey, you''re hurting my arm!" you whine. "Could you please loosen up? It''s not like I''m going to try to run!"'
|
|
|
|
- '"Being pretty isn''t going to get you any special treatment, girly. You''re a criminal, just like everyone else brought through here," he spits back.'
|
|
|
|
-
|
|
|
|
- elseif pcs_hotcat =< 3:
|
|
|
|
- '"You''ll never guess what she was brought in for!" he laughs. "Security at the mall caught this one trying to steal beauty products. You can put makeup on a pig but it''ll still be a pig!"'
|
|
|
|
- 'The others laugh loudly as he leads you further inside the police station.'
|
|
|
|
- *nl
|
|
|
|
- '"Hey, you''re hurting my arm!" you whine. "Could you please loosen up? It''s not like I''m going to try to run!"'
|
|
|
|
- '"What were you thinking stealing make-up?" he asks, ignoring your pleas. "It wouldn''t do you a damn bit of good. You''d still look like you were hit with a brick!"'
|
|
|
|
-
|
|
|
|
- else
|
|
|
|
- !if plain looking
|
|
|
|
- '"The security guys over at the mall caught this little mouse trying to steal some stuff. I guess looks can be deceiving; I would have never thought she''d be the type."'
|
|
|
|
- 'Some of the other officers just shrug or click their tongue disapprovingly before he leads you deeper inside the police station.'
|
|
|
|
- *nl
|
|
|
|
- '"Hey, you''re hurting my arm!" you whine. "Could you please loosen up? It''s not like I''m going to try to run!"'
|
|
|
|
- '"Oh, don''t like the way I''m treating you, little mouse? Well, you should have thought about that before trying to play thief!" he spits back.'
|
|
|
|
- end
|
|
|
|
-
|
|
|
|
- act 'Continue further in': gt 'police_station', 'booking'
|
|
|
|
-end
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-if $ARGS[0] = 'first_prostitution':
|
|
|
|
- minut += 2
|
|
|
|
- gs 'pain', 2, 'armR', 'pinch'
|
|
|
|
- gs 'stat'
|
|
|
|
|
|
+ 'One step after another, you trudge through town until you suddenly find yourself standing inside the police station. On the other side of a plexiglass reception, you can see several officers milling about, though none pay attention to you. Stepping up to the window, you pick up the phone and hear a buzzer sound on the other side. One of the officers picks it up without hesitation and looks at you.'
|
|
|
|
+ '"Can I help you?"'
|
|
|
|
+ '"I- I''d like t-to report a r-rape..." you stammer out. The officer nods but his expression doesn''t change in the slightest.'
|
|
|
|
+ '"Someone will come out to meet you. Follow them and they''ll take your statement in the back."'
|
|
|
|
|
|
- if policeQW['prostitution_bribe'] = 1:
|
|
|
|
- if pcs_hotcat =< 3:
|
|
|
|
- !else if ugly and bribed the officer with sex
|
|
|
|
- '"I caught this one whoring herself out and you know what she tried to do? She tried to bribe me with sex!"'
|
|
|
|
- 'The others shake their head, "What was she thinking? No one would fuck someone as ugly as her!"'
|
|
|
|
- 'You hang your head in shame as you''re led further into the station for booking.'
|
|
|
|
-
|
|
|
|
- elseif pcs_hotcat >= 7:
|
|
|
|
- !else if beautiful and bribed the officer with sex
|
|
|
|
- '"I caught this one whoring herself out and you know what she tried to do? She tried to bribe me with sex!"'
|
|
|
|
- 'The other officers eye you hungrily, "You''re a better man than me!" one of them exclaim. "Just look at her, how often do you get a chance like that? I would have said yes!"'
|
|
|
|
- 'A small smile plays across your face, feeling a tiny bit flattered as you''re led further into the station to get booked.'
|
|
|
|
-
|
|
|
|
- else
|
|
|
|
- !else if plain and bribed the officer with sex
|
|
|
|
- '"I caught this one whoring herself out and you know what she tried to do? She tried to bribe me with sex!"'
|
|
|
|
- 'The others jokingly say, "Well, she doesn''t look that bad. I wouldn''t have agreed, but I can see it working on someone else..."'
|
|
|
|
- 'You frown at their rude remarks, but remain silent as you''re led further into the station to be booked.'
|
|
|
|
- end
|
|
|
|
|
|
+ act 'Continue':
|
|
|
|
+ cla & *clr
|
|
|
|
+ minut += rand(2,5)
|
|
|
|
+ gs'stat'
|
|
|
|
|
|
- else
|
|
|
|
- if pcs_hotcat =< 3:
|
|
|
|
- !Prostitute event, this will be an continuation to the prostitute events that happened earlier
|
|
|
|
- !if ugly
|
|
|
|
- '"I caught this one whoring herself out. Can you believe that? Who would ever want to fuck this pig?!" he exclaims, and the staff erupt with laughter.'
|
|
|
|
- '"What was she thinking? Honestly, you''ve done everyone a favor getting her off the streets," says one of the officers before you''re led further into the station.'
|
|
|
|
-
|
|
|
|
- elseif pcs_hotcat >= 7:
|
|
|
|
- !else if beautiful
|
|
|
|
- '"I caught this one whoring herself out on the street corner. Such a waste," he turns to you and shakes his head. "A hot thing like you could shack up with some rich guy and leech off him, but I guess that''s not enough for a cock hungry whore like you, huh? One just ain''t enough."'
|
|
|
|
- *nl
|
|
|
|
- 'The other officers laugh cruelly. "It really is a shame, just look at her-- she''s damn gorgeous. You must have some real issues to be selling yourself to strangers."'
|
|
|
|
- *nl
|
|
|
|
- '"I''m sure the money is great!" The officer holding you laughs loudly as he leads you further inside the police station.'
|
|
|
|
-
|
|
|
|
- else
|
|
|
|
- !else if plain
|
|
|
|
- '"I caught this one whoring herself out. She ain''t bad looking, but you know she''s not making money like those other girls," he says with a disappointing click of the tongue'
|
|
|
|
- 'The other officers shrug and shake their heads. "Probably some cheap bastards out there that can''t afford to be picky," one speaks up as you''re led further into the station.'
|
|
|
|
- end
|
|
|
|
- end
|
|
|
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogation1.jpg"></center>'
|
|
|
|
+ 'As promised, someone comes out and takes you into their office space behind. You sit down at a shoddy looking desk and the officer takes his place on the other side of it.'
|
|
|
|
+ '"Alright ma''am, tell me what happened to you."'
|
|
|
|
+ 'You explain to the officer as best as you can what happened to you while he takes notes. How you were randomly attacked, how you were violated.'
|
|
|
|
|
|
- act 'Continue further in': gt 'police_station', 'booking'
|
|
|
|
-end
|
|
|
|
|
|
+ act 'Continue':
|
|
|
|
+ cla & *clr
|
|
|
|
+ minut += rand(2,5)
|
|
|
|
+ gs'stat'
|
|
|
|
|
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogation2.jpg"></center>'
|
|
|
|
+ '"And where did the attack occur?"'
|
|
|
|
|
|
-if $ARGS[0] = 'repeat':
|
|
|
|
- minut += 2
|
|
|
|
- gs 'pain', 2, 'armR', 'pinch'
|
|
|
|
- gs 'stat'
|
|
|
|
|
|
+ if $loc = 'city_center':
|
|
|
|
+ '"Here, i-in the city center. But he pulled me away. I... I don''t remember how far..."'
|
|
|
|
|
|
- police_event = rand(1,5)
|
|
|
|
- !else repeat offender, the looks doesn''t matter only the variable that you''re being booked again
|
|
|
|
- !randomized events
|
|
|
|
- if police_event = 1:
|
|
|
|
- '"Look who''s back! She just couldn''t stay out of trouble."'
|
|
|
|
- 'The others smile and shake their heads as he leads you further inside the police station.'
|
|
|
|
|
|
+ elseif $loc = 'city_residential':
|
|
|
|
+ '"In th-the residential district. But he pulled me away. I... I don''t remember how far..."'
|
|
|
|
|
|
- elseif police_event = 2:
|
|
|
|
- '"She really likes getting in trouble! Must be the good food that is served here."'
|
|
|
|
- 'The others laugh and shake their heads as he leads you further inside the police station.'
|
|
|
|
|
|
+ elseif $loc = 'city_industrial':
|
|
|
|
+ '"In th-the industrial district. But he pulled me away. I... I don''t remember how far..."'
|
|
|
|
|
|
- elseif police_event = 3:
|
|
|
|
- '"Look who I brought back with me. She just can''t keep away from here!"'
|
|
|
|
- 'The others smile and shake their heads as he leads you further inside the police station.'
|
|
|
|
|
|
+ elseif $loc = 'city_island':
|
|
|
|
+ '"On th-the island, Vasilyevsky Island. But he pulled me away. I... I don''t remember how far..."'
|
|
|
|
|
|
- elseif police_event = 4:
|
|
|
|
- '"Time to book <<$pcs_lastname>> again. She just can''t keep out of trouble."'
|
|
|
|
- 'The others shake their heads as he leads you further inside the police station.'
|
|
|
|
|
|
+ elseif $loc = 'city_park':
|
|
|
|
+ '"In th-the park. But he pulled me away. I... I don''t remember how far..."'
|
|
|
|
+ end
|
|
|
|
|
|
- elseif police_event = 5:
|
|
|
|
- '"You really like to get in trouble, don''t you?"'
|
|
|
|
- 'The others shake their heads as he leads you further inside the police station.'
|
|
|
|
- end
|
|
|
|
|
|
+ '"Can you describe what he looked like?"'
|
|
|
|
+ 'The blood drains from your face. "I... I-!"'
|
|
|
|
+ '"Anything about him will be helpful. Height? Build? Hair color? Eye color?"'
|
|
|
|
|
|
- killvar 'police_event'
|
|
|
|
|
|
+ act 'I... can''t...':
|
|
|
|
+ cla
|
|
|
|
+ *nl
|
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogation1.jpg"></center>'
|
|
|
|
+ '"He was... I don''t remember how tall he was... And... he was wearing a nondescript hoody, I couldn''t tell what his body type was... And-! And... I don''t know what he looks like... he was behind me during... the event..."'
|
|
|
|
+ 'The officer doesn''t say anything but you see him slightly shake his head. You realize that the information you gave him is going to be of little to no use at all. A rape in town and nothing else to go off of? You might as well have told him you a pidgeon did it.'
|
|
|
|
+ *nl
|
|
|
|
+ 'For a moment, you wonder how many other girls like you have sat at this desk filing a report just like this one only for it to go nowhere. You wonder if any of them were been raped by the same man who raped you...'
|
|
|
|
|
|
- act 'Continue further in': gt 'police_station', 'booking'
|
|
|
|
-end
|
|
|
|
|
|
+ act'Finish the interview':
|
|
|
|
+ cla & *clr
|
|
|
|
+ minut += rand(2,5)
|
|
|
|
+ gs'stat'
|
|
|
|
|
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/cityrec.jpg"></center>'
|
|
|
|
+ 'With that, you conclude the interview and are led to the front door.'
|
|
|
|
+ '"We''ll take this information into consideration. Again, we''re very sorry for what happened to you."'
|
|
|
|
+ 'And then he walks away. Leaving you so very alone...'
|
|
|
|
|
|
-if $ARGS[0] = 'multiple':
|
|
|
|
- minut += 2
|
|
|
|
- gs 'pain', 2, 'armR', 'pinch'
|
|
|
|
- gs 'stat'
|
|
|
|
|
|
+ act'Leave': gt 'city_center'
|
|
|
|
+ end
|
|
|
|
|
|
- police_event = rand(1,5)
|
|
|
|
- !triggered more than 5 times, randomized
|
|
|
|
- if police_event = 1:
|
|
|
|
- '"You''re getting a bit familiar with this place, aren''t you?"'
|
|
|
|
- 'The others shake their heads as he leads you further inside the police station.'
|
|
|
|
|
|
+ if cumsumvag+cumsumass > 0:
|
|
|
|
+ act 'Can I get a rape kit?':
|
|
|
|
+ cla & *clr
|
|
|
|
+ minut += 2
|
|
|
|
+ gs'stat'
|
|
|
|
|
|
- elseif police_event = 2:
|
|
|
|
- 'The staff sitting at the reception desk glance at you as the arresting officer sighs, "Why won''t you learn? You know doing this will only lead to worse things..."'
|
|
|
|
- 'The others shake their heads as he leads you further inside the police station.'
|
|
|
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/cubicle.jpg"></center>'
|
|
|
|
+ '"C-can I get a... a rape kit...?" you mumble.'
|
|
|
|
+ 'The officer nods at you and pulls a small box out of a drawer in his desk.'
|
|
|
|
+ '"If you just come this way ma''am." The two of you get up and he leads you through the office area to the bathroom where he hands you the box. Looking down at it, you read the label on it.'
|
|
|
|
+ *nl
|
|
|
|
+ '<i><b>SEXUAL ASSAULT EVIDENCE COLLECTION KIT</b></i>'
|
|
|
|
+ *nl
|
|
|
|
+ 'You take it from him, cradling it in your hands.'
|
|
|
|
+ '"This will let you catch him right?" The officer shrugs in return.'
|
|
|
|
+ '"It depends. DNA evidence is only useful if we can match it to the person it came from."'
|
|
|
|
+ '"So you''re saying this might not do anything?"'
|
|
|
|
+ 'He shrugs again. "It''s better than nothing."'
|
|
|
|
|
|
- elseif police_event = 3:
|
|
|
|
- 'The staff sitting at the reception desk glance at you as the arresting officer sighs, "I''m getting tired of seeing you around here, <<$pcs_lastname>>..."'
|
|
|
|
- 'The others shake their heads as he leads you further inside the police station.'
|
|
|
|
|
|
+ act 'Use the rape kit':
|
|
|
|
+ cla & *clr
|
|
|
|
+ minut += 20
|
|
|
|
+ gs'stat'
|
|
|
|
|
|
- elseif police_event = 4:
|
|
|
|
- 'The staff sitting at the reception desk glance at you while the officer sighs tiredly, "You''re flushing your life straight down the shitter if you keep this up, <<$pcs_lastname>>."'
|
|
|
|
- 'The others shake their heads as he leads you further inside the police station.'
|
|
|
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/cityext.jpg"></center>'
|
|
|
|
+ 'Closing the bathroom door, you open the kit and you swab your insides, feeling humiliated and disgusted when it comes back covered in semen. Packaging it up, you re-open the door and hand the evidence to the officer.'
|
|
|
|
+ 'With that, you conclude the interview and are led to the front door.'
|
|
|
|
+ '"We''ll take this information into consideration. Again, we''re very sorry for what happened to you." And then he walks away.'
|
|
|
|
+ *nl
|
|
|
|
+ 'Leaving you alone with your thoughts and memories of your rape...'
|
|
|
|
|
|
- elseif police_event = 5:
|
|
|
|
- 'The staff sitting at the reception desk glance at you as the arresting officer sighs, "Here we go again. You know the drill, <<$pcs_lastname>>..."'
|
|
|
|
- 'The others shake their heads as he leads you further inside the police station.'
|
|
|
|
|
|
+ act 'Leave': gt 'city_center'
|
|
|
|
+ end
|
|
|
|
+ end
|
|
|
|
+ end
|
|
|
|
+ end
|
|
|
|
+ end
|
|
end
|
|
end
|
|
-
|
|
|
|
- killvar 'police_event'
|
|
|
|
- act 'Continue further in': gt 'police_station', 'booking'
|
|
|
|
end
|
|
end
|
|
|
|
|
|
-if $ARGS[0] = 'regular':
|
|
|
|
- minut += 2
|
|
|
|
- gs 'pain', 2, 'armR', 'pinch'
|
|
|
|
- gs 'stat'
|
|
|
|
-
|
|
|
|
- police_event = rand(1,8)
|
|
|
|
- !triggered more than 10 times, randomized
|
|
|
|
- if police_event = 1:
|
|
|
|
- 'The staff sitting at the reception desk glance your way as the arresting officer glares down at you, "I''m sick and tired of processing you, <<$pcs_lastname>>! I hope they lock you away for a long time!"'
|
|
|
|
- 'The others shake their heads as he leads you further inside the police station.'
|
|
|
|
|
|
|
|
- elseif police_event = 2:
|
|
|
|
- 'The staff sitting at the reception desk glance your way as the arresting officer smirks, "Well, if it isn''t our favorite customer. How long will you be staying this time?"'
|
|
|
|
- 'The others laugh loudly as he leads you further inside the police station.'
|
|
|
|
|
|
|
|
- elseif police_event = 3:
|
|
|
|
- 'The staff sitting at the reception desk glance at you as the arresting officer sighs heavily, "Why do you continue doing this, <<$pcs_lastname>>? Aren''t you getting tired of this life?"'
|
|
|
|
- 'The others shake their heads as he leads you further inside the police station.'
|
|
|
|
|
|
|
|
- elseif police_event = 4:
|
|
|
|
- 'The staff sitting at the reception desk glance at you as the arresting officer smiles sarcastically, "What a surprise, it''s our favorite little criminal!"'
|
|
|
|
- 'The others shake their heads as he leads you further inside the police station.'
|
|
|
|
|
|
+ !!===================================================================!!
|
|
|
|
+ !! !!
|
|
|
|
+ !! ARRESTS !!
|
|
|
|
+ !! !!
|
|
|
|
+ !!===================================================================!!
|
|
|
|
|
|
- elseif police_event = 5:
|
|
|
|
- 'The staff sitting at the reception desk glance at you as the arresting officer sighs heavily, "May they lock you up for a long time..."'
|
|
|
|
- 'The others shake their heads as he leads you further inside the police station.'
|
|
|
|
|
|
|
|
- elseif police_event = 6:
|
|
|
|
- 'The staff sitting at the reception desk glance at you as the arresting officer sighs heavily, "There''s really no saving you, <<$pcs_lastname>>..."'
|
|
|
|
- 'The others shake their heads as he leads you further inside the police station.'
|
|
|
|
|
|
+if $ARGS[0] = 'entrance':
|
|
|
|
+ menu_off = 1
|
|
|
|
|
|
- elseif police_event = 7:
|
|
|
|
- 'The staff sitting at the reception desk glance at you as the arresting officer sighs heavily, "I hope they give you a long sentence this time..."'
|
|
|
|
- 'The others shake their heads as he leads you further inside the police station.'
|
|
|
|
|
|
+ '<center><h1><font color="maroon">Reception area</font></h1></center>'
|
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/cityrec.jpg"></center>'
|
|
|
|
+ 'The officer drags you in by the arm, his grip tightening whenever he feels the slightest bit of resistance from you. You expect him to take you straight in to be booked, but to your dismay he stops at the front desk to put you on display to the other officers as he gloats.'
|
|
|
|
+ *nl
|
|
|
|
|
|
- elseif police_event = 8:
|
|
|
|
- 'The staff sitting at the reception desk glance at you as the arresting officer sighs heavily, "I don''t know what to say anymore, <<$pcs_lastname>>... You''re really a lost case..."'
|
|
|
|
- 'The others shake their heads as he leads you further inside the police station.'
|
|
|
|
- end
|
|
|
|
|
|
+ !first time offender, event where Sveta gets caught stealing
|
|
|
|
+ !need to add a variable to store that Sveta has been brought into the police station
|
|
|
|
|
|
- killvar 'police_event'
|
|
|
|
- act 'Continue further in': gt 'police_station', 'booking'
|
|
|
|
|
|
+ gs 'court_arrest_events', 'booking_start', $ARGS[1]
|
|
end
|
|
end
|
|
|
|
|
|
|
|
|
|
!Goes through the process of getting booked, pretty straight forward, an event when Sveta gets booked the first time (three ways how this goes) and repeatable bookings
|
|
!Goes through the process of getting booked, pretty straight forward, an event when Sveta gets booked the first time (three ways how this goes) and repeatable bookings
|
|
if $ARGS[0] = 'booking':
|
|
if $ARGS[0] = 'booking':
|
|
- if temp_tot_booked = 1:
|
|
|
|
|
|
+ if func('court_functions', 'get_total_arrests') = 1:
|
|
gt 'police_station', 'booking1'
|
|
gt 'police_station', 'booking1'
|
|
else
|
|
else
|
|
gt 'police_station', 'booking2'
|
|
gt 'police_station', 'booking2'
|
|
@@ -309,9 +182,7 @@ if $ARGS[0] = 'booking1':
|
|
'The other officer looks you up and down, evaluating you at a glance. "<<$pcs_lastname>> was it, right?"'
|
|
'The other officer looks you up and down, evaluating you at a glance. "<<$pcs_lastname>> was it, right?"'
|
|
|
|
|
|
act 'Play along': gt 'police_station', 'booking1_play_along'
|
|
act 'Play along': gt 'police_station', 'booking1_play_along'
|
|
-
|
|
|
|
act 'Answer brashly': gt 'police_station', 'booking1_brash'
|
|
act 'Answer brashly': gt 'police_station', 'booking1_brash'
|
|
-
|
|
|
|
act 'Try to weasel your way out': gt 'police_station', 'booking1_weasel'
|
|
act 'Try to weasel your way out': gt 'police_station', 'booking1_weasel'
|
|
end
|
|
end
|
|
|
|
|
|
@@ -924,375 +795,91 @@ if $ARGS[0] = 'interrogation':
|
|
minut += 10
|
|
minut += 10
|
|
gs 'stat'
|
|
gs 'stat'
|
|
|
|
|
|
- detecrand = rand (1,100)
|
|
|
|
|
|
+ detecrand = rand (1, 100)
|
|
|
|
|
|
!Then we add a bonus or penalty to the roll, depending on his relationship with you:
|
|
!Then we add a bonus or penalty to the roll, depending on his relationship with you:
|
|
- if policeQW['bookingofficer_rel'] >= 90:
|
|
|
|
- detecrand += 10
|
|
|
|
- elseif policeQW['bookingofficer_rel'] >= 80:
|
|
|
|
- detecrand += 8
|
|
|
|
- elseif policeQW['bookingofficer_rel'] >= 70:
|
|
|
|
- detecrand += 6
|
|
|
|
- elseif policeQW['bookingofficer_rel'] >= 60:
|
|
|
|
- detecrand += 4
|
|
|
|
- elseif policeQW['bookingofficer_rel'] >= 50:
|
|
|
|
- detecrand += 2
|
|
|
|
- elseif policeQW['bookingofficer_rel'] >= 25:
|
|
|
|
|
|
+ if policeQW['bookingofficer_rel'] < 25:
|
|
|
|
+ detecrand -= 10
|
|
|
|
+ elseif policeQW['bookingofficer_rel'] < 50:
|
|
detecrand += 0
|
|
detecrand += 0
|
|
|
|
+ elseif policeQW['bookingofficer_rel'] < 60:
|
|
|
|
+ detecrand += 2
|
|
|
|
+ elseif policeQW['bookingofficer_rel'] < 70:
|
|
|
|
+ detecrand += 4
|
|
|
|
+ elseif policeQW['bookingofficer_rel'] < 80:
|
|
|
|
+ detecrand += 6
|
|
|
|
+ elseif policeQW['bookingofficer_rel'] < 90:
|
|
|
|
+ detecrand += 8
|
|
else
|
|
else
|
|
- detecrand -= 10
|
|
|
|
|
|
+ detecrand += 10
|
|
end
|
|
end
|
|
|
|
|
|
-
|
|
|
|
'<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/interrogationroom.jpg"></center>'
|
|
'<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/interrogationroom.jpg"></center>'
|
|
'The detective leads you to a small private room with only some chairs and a table. He shoves you in and closes the door behind him.'
|
|
'The detective leads you to a small private room with only some chairs and a table. He shoves you in and closes the door behind him.'
|
|
'He tells you to take a seat and you quietly comply. "I''ll be right back I need to get something..." he says.'
|
|
'He tells you to take a seat and you quietly comply. "I''ll be right back I need to get something..." he says.'
|
|
'You take a seat on the chair and look around anxiously while waiting for the detective to return. As he returns you see him holding a paper.'
|
|
'You take a seat on the chair and look around anxiously while waiting for the detective to return. As he returns you see him holding a paper.'
|
|
|
|
|
|
- if $policeQW['crime_flag'] = 'shoplift':
|
|
|
|
- !if caught stealing
|
|
|
|
- if book_response = 5: gt 'police_station', 'shoplift_hard'
|
|
|
|
-
|
|
|
|
- if book_response = 4: gt 'police_station', 'shoplift_easy'
|
|
|
|
-
|
|
|
|
- !Normal response
|
|
|
|
|
|
+ act 'Continue':
|
|
if book_response = 1:
|
|
if book_response = 1:
|
|
if detecrand >= 86:
|
|
if detecrand >= 86:
|
|
- gt 'police_station', 'shoplift_easy'
|
|
|
|
|
|
+ $policeQW['detective_type'] = 'easy'
|
|
|
|
+ gt 'court_arrest_events', 'interrogation_start', 'easy'
|
|
|
|
|
|
elseif detecrand >= 16:
|
|
elseif detecrand >= 16:
|
|
- gt 'police_station', 'shoplift_norm'
|
|
|
|
-
|
|
|
|
- else
|
|
|
|
- gt 'police_station', 'shoplift_hard'
|
|
|
|
- end
|
|
|
|
-
|
|
|
|
- !Bribe the booking officer
|
|
|
|
- elseif book_response = 2:
|
|
|
|
- if detecrand >= 31:
|
|
|
|
- gt 'police_station', 'shoplift_easy'
|
|
|
|
-
|
|
|
|
- elseif detecrand >= 11:
|
|
|
|
- gt 'police_station', 'shoplift_norm'
|
|
|
|
|
|
+ $policeQW['detective_type'] = 'norm'
|
|
|
|
+ gt 'court_arrest_events', 'interrogation_start', 'norm'
|
|
|
|
|
|
else
|
|
else
|
|
- gt 'police_station', 'shoplift_hard'
|
|
|
|
|
|
+ $policeQW['detective_type'] = 'hard'
|
|
|
|
+ gt 'court_arrest_events', 'interrogation_start', 'hard'
|
|
end
|
|
end
|
|
|
|
|
|
!Give the officer a hard time
|
|
!Give the officer a hard time
|
|
- elseif book_response = 3:
|
|
|
|
|
|
+ elseif book_response = 2:
|
|
if detecrand >= 91:
|
|
if detecrand >= 91:
|
|
- gt 'police_station', 'shoplift_easy'
|
|
|
|
|
|
+ $policeQW['detective_type'] = 'easy'
|
|
|
|
+ gt 'court_arrest_events', 'interrogation_start', 'easy'
|
|
|
|
|
|
elseif detecrand >= 71:
|
|
elseif detecrand >= 71:
|
|
- gt 'police_station', 'shoplift_norm'
|
|
|
|
|
|
+ $policeQW['detective_type'] = 'norm'
|
|
|
|
+ gt 'court_arrest_events', 'interrogation_start', 'norm'
|
|
|
|
|
|
else
|
|
else
|
|
- gt 'police_station', 'shoplift_hard'
|
|
|
|
- end
|
|
|
|
- end
|
|
|
|
-
|
|
|
|
- elseif $policeQW['crime_flag'] = 'prostitution':
|
|
|
|
- !if caught whoring
|
|
|
|
- if book_response = 5: gt 'police_station', 'prostitution_hard'
|
|
|
|
-
|
|
|
|
- if book_response = 4: gt 'police_station', 'prostitution_easy'
|
|
|
|
-
|
|
|
|
- !Normal response
|
|
|
|
- if book_response = 1:
|
|
|
|
- if detecrand >= 86:
|
|
|
|
- gt 'police_station', 'prostitution_easy'
|
|
|
|
-
|
|
|
|
- elseif detecrand >= 16:
|
|
|
|
- gt 'police_station', 'prostitution_norm'
|
|
|
|
-
|
|
|
|
- else
|
|
|
|
- gt 'police_station', 'prostitution_hard'
|
|
|
|
|
|
+ $policeQW['detective_type'] = 'hard'
|
|
|
|
+ gt 'court_arrest_events', 'interrogation_start', 'hard'
|
|
end
|
|
end
|
|
|
|
|
|
!Bribe the booking officer
|
|
!Bribe the booking officer
|
|
- elseif book_response = 2:
|
|
|
|
|
|
+ elseif book_response = 3:
|
|
if detecrand >= 31:
|
|
if detecrand >= 31:
|
|
- gt 'police_station', 'prostitution_easy'
|
|
|
|
|
|
+ $policeQW['detective_type'] = 'easy'
|
|
|
|
+ gt 'court_arrest_events', 'interrogation_start', 'easy'
|
|
|
|
|
|
elseif detecrand >= 11:
|
|
elseif detecrand >= 11:
|
|
- gt 'police_station', 'prostitution_norm'
|
|
|
|
|
|
+ $policeQW['detective_type'] = 'norm'
|
|
|
|
+ gt 'court_arrest_events', 'interrogation_start', 'norm'
|
|
|
|
|
|
else
|
|
else
|
|
- gt 'police_station', 'prostitution_hard'
|
|
|
|
|
|
+ $policeQW['detective_type'] = 'hard'
|
|
|
|
+ gt 'court_arrest_events', 'interrogation_start', 'hard'
|
|
end
|
|
end
|
|
|
|
|
|
- !Give the officer a hard time
|
|
|
|
- elseif book_response = 3:
|
|
|
|
- if detecrand >= 91:
|
|
|
|
- gt 'police_station', 'prostitution_easy'
|
|
|
|
-
|
|
|
|
- elseif detecrand >= 71:
|
|
|
|
- gt 'police_station', 'prostitution_norm'
|
|
|
|
-
|
|
|
|
- else
|
|
|
|
- gt 'police_station', 'prostitution_hard'
|
|
|
|
- end
|
|
|
|
- end
|
|
|
|
- end
|
|
|
|
-end
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-if $ARGS[0] = 'shoplift_easy':
|
|
|
|
-!easy going detective
|
|
|
|
- minut += 20
|
|
|
|
- $policeQW['detective_type'] = 'easy'
|
|
|
|
- gs 'stat'
|
|
|
|
-
|
|
|
|
- picrand = rand(1, 2)
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogation<<picrand>>.jpg"></center>'
|
|
|
|
- 'He takes a seat at the table opposite of you, "So caught stealing, eh?" he asks.'
|
|
|
|
- 'You nervously look around trying to avoid eye-contact...'
|
|
|
|
- 'He''s quick to notice your nervousness and tells you to relax, he only wants to know what happened. "Now start from the beginning..."'
|
|
|
|
- 'You take a deep breath and begin confessing your crime as the detective listens attentively.'
|
|
|
|
-
|
|
|
|
- act 'Continue':
|
|
|
|
- *clr & cla
|
|
|
|
- gs 'stat'
|
|
|
|
-
|
|
|
|
- if policeQW['toldonguard'] = 2:
|
|
|
|
- policeQW['toldonguard'] = 1
|
|
|
|
-
|
|
|
|
- picrand = rand(1, 2)
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogation<<picrand>>.jpg"></center>'
|
|
|
|
- 'You tear up, "So in the end the security guard forced me to have sex with him..."'
|
|
|
|
- 'The detective looks up, "Sounds awful! I''ll send some officers over to have a talk with him and we''ll take actions against him... assuming you''re telling the truth."'
|
|
|
|
- 'You nod your head, "I am, I promise!" You say before continuing to admit to everything while the detective writes down some notes.'
|
|
|
|
- '"Okay <<$pcs_firstname>>, we have a civil court judge for these kind of cases and as you''ve made my job easy by admitting to everything, I can get you in front of him today. Don''t worry I''ll put in a good word for you," he reassures gently.'
|
|
|
|
-
|
|
|
|
- else
|
|
|
|
- picrand = rand(1, 2)
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogation<<picrand>>.jpg"></center>'
|
|
|
|
- 'As you finish you see the detective write down one last thing before looking at you, "Good, that''s everything I need."'
|
|
|
|
- '"What will happen to me?" you ask.'
|
|
|
|
- '"Don''t worry, it was a petty crime and you''ve been more than cooperative with me and the booking officer, so I''ll put in a good word for you to the civil court judge," he reassures you.'
|
|
|
|
- end
|
|
|
|
-
|
|
|
|
- act 'Return to the holding cell': gt 'police_station', 'returncell'
|
|
|
|
- end
|
|
|
|
-end
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-if $ARGS[0] = 'shoplift_norm':
|
|
|
|
-!normal detective
|
|
|
|
- minut += 20
|
|
|
|
- $policeQW['detective_type'] = 'norm'
|
|
|
|
- gs 'stat'
|
|
|
|
-
|
|
|
|
- picrand = rand(1, 2)
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogation<<picrand>>.jpg"></center>'
|
|
|
|
- 'He takes a seat opposite of you, "So caught stealing, eh?" he asks.'
|
|
|
|
- 'You nervously look around trying to avoid eye-contact...'
|
|
|
|
- '"Look here <<$pcs_firstname>>, I''m just trying to do my job so lets make this quick and easy: tell the truth and confess to everything."'
|
|
|
|
- 'You take a deep breath and begin to talk.'
|
|
|
|
-
|
|
|
|
- act 'Continue':
|
|
|
|
- *clr & cla
|
|
|
|
- gs 'stat'
|
|
|
|
-
|
|
|
|
- if policeQW['toldonguard'] = 2:
|
|
|
|
- policeQW['toldonguard'] = 1
|
|
|
|
-
|
|
|
|
- picrand = rand(1, 2)
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogation<<picrand>>.jpg"></center>'
|
|
|
|
- 'You tear up, "So in the end the security guard forced me to have sex with him..."'
|
|
|
|
- 'The detective really isn''t paying attention to you as he scribbles things down, "I''ll see if there are any free officers to head over and interrogate the security guard about it."'
|
|
|
|
- 'You nod your head before continuing the confession. The officer looks bored, but he continues writing everything down.'
|
|
|
|
- '"Okay <<$pcs_firstname>>, we have a civil court judge for these kind of cases and since you''ve already admitted to everything... we might as well take you in front of him and see how it goes," he says tiredly.'
|
|
|
|
-
|
|
|
|
- else
|
|
|
|
- picrand = rand(1, 2)
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogation<<picrand>>.jpg"></center>'
|
|
|
|
- 'As you finish you confessing, the detective looks at you with an unreadable expression. "Well, you''ve pretty much confessed to everything, <<$pcs_firstname>>. It''s an open and shut case."'
|
|
|
|
- '"What will happen to me?" you ask.'
|
|
|
|
- '"Who knows, I''m not the civil court judge," he shrugs.'
|
|
|
|
- end
|
|
|
|
-
|
|
|
|
- act 'Return to the holding cell': gt 'police_station', 'returncell'
|
|
|
|
- end
|
|
|
|
-end
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-if $ARGS[0] = 'shoplift_hard':
|
|
|
|
-!rough detective
|
|
|
|
- minut += 20
|
|
|
|
- $policeQW['detective_type'] = 'hard'
|
|
|
|
- gs 'stat'
|
|
|
|
-
|
|
|
|
- picrand = rand(1, 2)
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogation<<picrand>>.jpg"></center>'
|
|
|
|
- 'He takes a seat opposite of you, "So caught stealing, eh?" he asks.'
|
|
|
|
- 'You shrug your shoulders nonchalantly, not really caring what might happen.'
|
|
|
|
- '"Don''t waste my time, <<$pcs_firstname>>," he threatens. "If you won''t take this seriously, then I won''t put in the effort to give a shit what happens to you. Now, stop fucking around and tell me everything you did."'
|
|
|
|
- 'You stutter as you begin confessing.'
|
|
|
|
-
|
|
|
|
- act 'Continue':
|
|
|
|
- *clr & cla
|
|
|
|
- gs 'stat'
|
|
|
|
|
|
+ !! Flirt and comply
|
|
|
|
+ elseif book_response = 4:
|
|
|
|
+ $policeQW['detective_type'] = 'easy'
|
|
|
|
+ gt 'court_arrest_events', 'interrogation_start', 'easy'
|
|
|
|
|
|
- if policeQW['toldonguard'] = 2:
|
|
|
|
- policeQW['toldonguard'] = 1
|
|
|
|
-
|
|
|
|
- picrand = rand(1, 2)
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogation<<picrand>>.jpg"></center>'
|
|
|
|
- 'You tear up, "So in the end the security guard forced me to have sex with him..."'
|
|
|
|
- 'The detective''s scowl deepens as he glares at you. "You think you can just say shit like that and get away with everything? Stop lying, or I''ll throw you back in that cell with that crazy woman."'
|
|
|
|
- 'You shake your head, "I''m telling the truth! Why won''t you believe me?"'
|
|
|
|
- 'The detective lets out a loud sigh, "Sticking to your lies, huh? Fine but let me be clear: lying about a hard working security officer like this just to get away with stealing is going to make you an enemy to a lot of people around here, including the judge you''re about to see. I''m sure he''ll love to hear your swan song."'
|
|
|
|
-
|
|
|
|
- else
|
|
|
|
- picrand = rand(1, 2)
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogation<<picrand>>.jpg"></center>'
|
|
|
|
- 'As you finish, the detective looks up at you, "Good, that''s everything I need from you. Makes my job easier, y''know."'
|
|
|
|
- '"What will happen to me?" you ask.'
|
|
|
|
- '"Hopefully the civil court judge will give be going for a long and hard sentence. Criminals need to be taught a lesson," he says coldly.'
|
|
|
|
|
|
+ !! Flirt then refuse
|
|
|
|
+ elseif book_response = 5:
|
|
|
|
+ $policeQW['detective_type'] = 'hard'
|
|
|
|
+ gt 'court_arrest_events', 'interrogation_start', 'hard'
|
|
end
|
|
end
|
|
-
|
|
|
|
- act 'Return to the holding cell': gt 'police_station', 'returncell'
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
|
|
|
|
|
|
-if $ARGS[0] = 'prostitution_easy':
|
|
|
|
- !easy going detective
|
|
|
|
- minut += 20
|
|
|
|
- $policeQW['detective_type'] = 'easy'
|
|
|
|
- gs 'stat'
|
|
|
|
-
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogationpro.jpg"></center>'
|
|
|
|
- 'He takes a seat opposite of you, "So caught prostituting, eh?" he asks.'
|
|
|
|
- 'You nervously look around trying to avoid eye-contact...'
|
|
|
|
- 'He''s quick to notice your nervousness and tells you to relax, he only wants to know what happened. "Now start from the beginning..."'
|
|
|
|
- 'You take a deep breath and begin confessing your crime as the detective listens attentively.'
|
|
|
|
-
|
|
|
|
- act 'Continue':
|
|
|
|
- *clr & cla
|
|
|
|
- gs 'stat'
|
|
|
|
-
|
|
|
|
- if policeQW['prostitution_bribe'] = 2:
|
|
|
|
- !if tried to bribe the officer with sex
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogationpro.jpg"></center>'
|
|
|
|
- 'After a while listening to your story the detective clears his throat, "And this was when you tried to offer the officer sex?"'
|
|
|
|
- 'You stop and nod your head, "Yes, I... I thought it would get me off the hook..." You continue to confess while the detective writes down some notes.'
|
|
|
|
- '"Okay <<$pcs_firstname>>, we have a civil court judge for these kind of cases and since you''ve already admitted to everything, we might as well take you in front of him. I''ll try to put in a good word for you," he says.'
|
|
|
|
-
|
|
|
|
- elseif policeQW['prostitution_bribe'] = 1:
|
|
|
|
- !else if tried to bribe the officer with money
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogationpro.jpg"></center>'
|
|
|
|
- 'After a while listening to your story the detective clears his throat, "And this was when you tried to offer the officer money?"'
|
|
|
|
- 'You stop and nod your head, "Yes, I... I thought it would get me off the hook..." You continue to confess while the detective writes down some notes.'
|
|
|
|
- '"Okay <<$pcs_firstname>>, we have a civil court judge for these kind of cases and since you''ve already admitted to everything, we might as well take you in front of him. I''ll try to put in a good word for you," he says.'
|
|
|
|
-
|
|
|
|
- else
|
|
|
|
- !this will show up otherwise
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogationpro.jpg"></center>'
|
|
|
|
- 'As you finish, you see the detective write down one last thing before looking at you, "Good, that''s everything I need."'
|
|
|
|
- '"What will happen to me?" you ask.'
|
|
|
|
- '"Don''t worry, the civil court judge probably won''t care too much about the crime and both the booking officer and I will put in a good word for you since you made our job easy and confessed to everything. The punishment, if there is one, shouldn''t be too bad," he reassures you.'
|
|
|
|
- end
|
|
|
|
-
|
|
|
|
- act 'Return to the holding cell': gt 'police_station', 'returncell'
|
|
|
|
- end
|
|
|
|
-end
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-if $ARGS[0] = 'prostitution_norm':
|
|
|
|
-!normal detective
|
|
|
|
- minut += 20
|
|
|
|
- $policeQW['detective_type'] = 'norm'
|
|
|
|
- gs 'stat'
|
|
|
|
-
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogationpro.jpg"></center>'
|
|
|
|
- 'He takes a seat opposite of you, "So caught prostituting, eh?" he asks.'
|
|
|
|
- 'You nervously look around trying to avoid eye-contact...'
|
|
|
|
- '"Look here <<$pcs_firstname>>, I''m just trying to do my job here so how about you confess and we''ll take it from there..."'
|
|
|
|
- 'You take a deep breath and begin to talk.'
|
|
|
|
-
|
|
|
|
- act 'Continue':
|
|
|
|
- *clr & cla
|
|
|
|
- gs 'stat'
|
|
|
|
-
|
|
|
|
- if policeQW['prostitution_bribe'] = 2:
|
|
|
|
- !if tried to bribe the officer with sex
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogationpro.jpg"></center>'
|
|
|
|
- 'You tear up, "And this is where I thought I could bribe the officer with sex..."'
|
|
|
|
- 'The detective, not really paying attention, scribbles it down, "Attempted to bribe the officer with sex," he repeats.'
|
|
|
|
- 'You nod your head before continuing to confess to the bored looking officer.'
|
|
|
|
- '"Okay <<$pcs_firstname>>, we have a civil court judge for these kind of cases and since you''ve already admitted to everything, we might as well take you in front of him and we''ll see how it goes..." he says tiredly.'
|
|
|
|
-
|
|
|
|
- elseif policeQW['prostitution_bribe'] = 1:
|
|
|
|
- !if tried to bribe the officer with money
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogationpro.jpg"></center>'
|
|
|
|
- 'You tear up, "And this is where I thought I could bribe the officer with money..."'
|
|
|
|
- 'The detective, not really paying attention, scribbles it down, "Attempted to bribe the officer with money," he repeats.'
|
|
|
|
- 'You nod your head before continuing to confess to the bored looking officer.'
|
|
|
|
- '"Okay <<$pcs_firstname>>, we have a civil court judge for these kind of cases and since you''ve already admitted to everything, we might as well take you in front of him and we''ll see how it goes..." he says tiredly.'
|
|
|
|
-
|
|
|
|
- else
|
|
|
|
- !this will show up otherwise
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogationpro.jpg"></center>'
|
|
|
|
- 'As you finish, you see the detective write down one last thing before looking at you, "Well, you''ve pretty much confessed to everything, <<$pcs_firstname>>. It''s an open and shut case."'
|
|
|
|
- '"What will happen to me?" you ask.'
|
|
|
|
- '"Truth be told, I don''t really know what kind of sentence the judge will be going for..." he tells you.'
|
|
|
|
- end
|
|
|
|
-
|
|
|
|
- act 'Return to the holding cell': gt 'police_station', 'returncell'
|
|
|
|
- end
|
|
|
|
-end
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-if $ARGS[0] = 'prostitution_hard':
|
|
|
|
-!rough detective
|
|
|
|
- minut += 20
|
|
|
|
- $policeQW['detective_type'] = 'hard'
|
|
|
|
- gs 'stat'
|
|
|
|
-
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogationpro.jpg"></center>'
|
|
|
|
- 'He takes a seat opposite of you, "So caught prostituting, eh?" he asks.'
|
|
|
|
- 'You shrug your shoulders nonchalantly not really caring what might happened.'
|
|
|
|
- '"Don''t waste my time, <<$pcs_firstname>>," he threatens. "If you won''t take this seriously, then I won''t put in the effort to give a shit what happens to you. Now, stop fucking around and tell me everything you did."'
|
|
|
|
- 'You stutter as you begin confessing.'
|
|
|
|
-
|
|
|
|
- act 'Continue':
|
|
|
|
- *clr & cla
|
|
|
|
- gs 'stat'
|
|
|
|
-
|
|
|
|
- if policeQW['prostitution_bribe'] = 2:
|
|
|
|
- !if tried to bribe the officer with sex
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogationpro.jpg"></center>'
|
|
|
|
- 'You tear up, "And this is where I thought I could bribe the officer with sex..."'
|
|
|
|
- 'The detective''s face twists into a scowl. "You think you can get away with this by accusing someone of rape?!"'
|
|
|
|
- 'You shake your head, "Not at all! I''ve heard from the other girls that they''ve gotten away by doing that, so I thought--"'
|
|
|
|
- 'He slams his fist down on the table. "You think you can get away with telling these kind of lies against our fine police force?! You''re in deep shit now, <<$pcs_firstname>>. I''m taking you to see the judge, and we''ll see how he likes hearing you make a mockery of our justice system."'
|
|
|
|
-
|
|
|
|
- elseif policeQW['prostitution_bribe'] = 1:
|
|
|
|
- !if tried to bribe the officer with money
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogationpro.jpg"></center>'
|
|
|
|
- 'You tear up, "And this is where I thought I could bribe the officer with money..."'
|
|
|
|
- 'The detective''s face twists into a scowl. "You thought you could just buy your way out of this? That''s not how the world works, your actions have consequences!"'
|
|
|
|
- 'You shake your head, "Not at all! I''ve heard from the other girls that they''ve gotten away by doing that, so I thought--"'
|
|
|
|
- 'He slams his fist down on the table. "You think you can get away with telling these kind of lies against our fine police force?! You''re in deep shit now, <<$pcs_firstname>>. I''m taking you to see the judge, and we''ll see how he likes hearing you make a mockery of our justice system."'
|
|
|
|
-
|
|
|
|
- else
|
|
|
|
- !this will show up otherwise
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogationpro.jpg"></center>'
|
|
|
|
- 'As you finish you see the detective looks at you, "Good just what I was looking for. You''ve confessed everything. Makes my and the prosecutors job easier."'
|
|
|
|
- '"What will happen to me?" you ask.'
|
|
|
|
- '"Hopefully the judge will give you a long and hard sentence." he angrily answers you.'
|
|
|
|
- end
|
|
|
|
-
|
|
|
|
- act 'Return to the holding cell': gt 'police_station', 'returncell'
|
|
|
|
- end
|
|
|
|
-end
|
|
|
|
-
|
|
|
|
|
|
|
|
if $ARGS[0] = 'returncell':
|
|
if $ARGS[0] = 'returncell':
|
|
- killvar 'book_response'
|
|
|
|
minut += 180
|
|
minut += 180
|
|
!! add the letter to be sent
|
|
!! add the letter to be sent
|
|
policeQW_courtletter_dates[] = daystart + 7
|
|
policeQW_courtletter_dates[] = daystart + 7
|
|
@@ -1308,21 +895,7 @@ if $ARGS[0] = 'returncell':
|
|
*clr & cla
|
|
*clr & cla
|
|
gs 'stat'
|
|
gs 'stat'
|
|
|
|
|
|
- if $policeQW['crime_flag'] = 'shoplift':
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/cityhold.jpg"></center>'
|
|
|
|
- '"I got caught while I was stealing stuff," you answer nonchalantly.'
|
|
|
|
- 'The woman smirks, "A petty crime, you''ll be fine."'
|
|
|
|
- '"What are you in for?" you ask her.'
|
|
|
|
- 'She starts laughing, "I refused to bribe one of these fuckers while I was prostituting so they brought me in as a punishment."'
|
|
|
|
- '"I see..." you answer a bit taken back by her openness.'
|
|
|
|
-
|
|
|
|
- elseif $policeQW['crime_flag'] = 'prostitution':
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/cityhold.jpg"></center>'
|
|
|
|
- '"I got caught while I was prostituting," you answer nonchalantly.'
|
|
|
|
- 'She smiles surprisingly, "You too?!" The two of you start to laugh loudly.'
|
|
|
|
- '"I refused to bribe one of these fuckers while I was prostituting so they brought me in as a punishment," she tells you, "So where do you usually work I haven''t seen you around?" she asks.'
|
|
|
|
- '"Yeah same thing happened to me," you answer, "Here and there. I try to keep myself away from the usual spots." you explain.'
|
|
|
|
- end
|
|
|
|
|
|
+ gs 'court_arrest_events', 'cellmate_story'
|
|
|
|
|
|
act 'Keep talking':
|
|
act 'Keep talking':
|
|
*clr & cla
|
|
*clr & cla
|
|
@@ -1335,7 +908,7 @@ if $ARGS[0] = 'returncell':
|
|
'"Go on before they change their mind," she smiles.'
|
|
'"Go on before they change their mind," she smiles.'
|
|
'You say goodbye to each other and the officer leads you towards the entrance and as the police station doors open you can feel the fresh wind breeze against your face.'
|
|
'You say goodbye to each other and the officer leads you towards the entrance and as the police station doors open you can feel the fresh wind breeze against your face.'
|
|
|
|
|
|
- act 'Walk outside':gt 'city_center'
|
|
|
|
|
|
+ act 'Walk outside': gt 'city_center'
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
|
|
@@ -1350,121 +923,9 @@ if $ARGS[0] = 'returncell':
|
|
'Some time passes by and the cell door opens, "<<$pcs_lastname>>, it''s your time to get released."'
|
|
'Some time passes by and the cell door opens, "<<$pcs_lastname>>, it''s your time to get released."'
|
|
'You quickly jump up and hurry out from the holding cell. The officer leads you towards the entrance and as the police station doors open you can feel the fresh wind breeze against your face.'
|
|
'You quickly jump up and hurry out from the holding cell. The officer leads you towards the entrance and as the police station doors open you can feel the fresh wind breeze against your face.'
|
|
|
|
|
|
- act 'Walk outside':gt 'city_center'
|
|
|
|
|
|
+ act 'Walk outside': gt 'city_center'
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
|
|
|
|
|
|
-if $ARGS[0] = 'rape_report':
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/cityrec.jpg"></center>'
|
|
|
|
- 'One step after another, you trudge through town until you suddenly find yourself standing inside the police station. On the other side of a plexiglass reception, you can see several officers milling about, though none pay attention to you. Stepping up to the window, you pick up the phone and hear a buzzer sound on the other side. One of the officers picks it up without hesitation and looks at you.'
|
|
|
|
- '"Can I help you?"'
|
|
|
|
- '"I- I''d like t-to report a r-rape..." you stammer out. The officer nods but his expression doesn''t change in the slightest.'
|
|
|
|
- '"Someone will come out to meet you. Follow them and they''ll take your statement in the back."'
|
|
|
|
-
|
|
|
|
- act 'Continue':
|
|
|
|
- cla & *clr
|
|
|
|
- minut += rand(2,5)
|
|
|
|
- gs'stat'
|
|
|
|
-
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogation1.jpg"></center>'
|
|
|
|
- 'As promised, someone comes out and takes you into their office space behind. You sit down at a shoddy looking desk and the officer takes his place on the other side of it.'
|
|
|
|
- '"Alright ma''am, tell me what happened to you."'
|
|
|
|
- 'You explain to the officer as best as you can what happened to you while he takes notes. How you were randomly attacked, how you were violated.'
|
|
|
|
-
|
|
|
|
- act 'Continue':
|
|
|
|
- cla & *clr
|
|
|
|
- minut += rand(2,5)
|
|
|
|
- gs'stat'
|
|
|
|
-
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogation2.jpg"></center>'
|
|
|
|
- '"And where did the attack occur?"'
|
|
|
|
-
|
|
|
|
- if $loc = 'city_center':
|
|
|
|
- '"Here, i-in the city center. But he pulled me away. I... I don''t remember how far..."'
|
|
|
|
-
|
|
|
|
- elseif $loc = 'city_residential':
|
|
|
|
- '"In th-the residential district. But he pulled me away. I... I don''t remember how far..."'
|
|
|
|
-
|
|
|
|
- elseif $loc = 'city_industrial':
|
|
|
|
- '"In th-the industrial district. But he pulled me away. I... I don''t remember how far..."'
|
|
|
|
-
|
|
|
|
- elseif $loc = 'city_island':
|
|
|
|
- '"On th-the island, Vasilyevsky Island. But he pulled me away. I... I don''t remember how far..."'
|
|
|
|
-
|
|
|
|
- elseif $loc = 'city_park':
|
|
|
|
- '"In th-the park. But he pulled me away. I... I don''t remember how far..."'
|
|
|
|
- end
|
|
|
|
-
|
|
|
|
- '"Can you describe what he looked like?"'
|
|
|
|
- 'The blood drains from your face. "I... I-!"'
|
|
|
|
- '"Anything about him will be helpful. Height? Build? Hair color? Eye color?"'
|
|
|
|
-
|
|
|
|
- act 'I... can''t...':
|
|
|
|
- cla
|
|
|
|
- *nl
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/shared/police/interrogation1.jpg"></center>'
|
|
|
|
- '"He was... I don''t remember how tall he was... And... he was wearing a nondescript hoody, I couldn''t tell what his body type was... And-! And... I don''t know what he looks like... he was behind me during... the event..."'
|
|
|
|
- 'The officer doesn''t say anything but you see him slightly shake his head. You realize that the information you gave him is going to be of little to no use at all. A rape in town and nothing else to go off of? You might as well have told him you a pidgeon did it.'
|
|
|
|
- *nl
|
|
|
|
- 'For a moment, you wonder how many other girls like you have sat at this desk filing a report just like this one only for it to go nowhere. You wonder if any of them were been raped by the same man who raped you...'
|
|
|
|
-
|
|
|
|
- act'Finish the interview':
|
|
|
|
- cla & *clr
|
|
|
|
- minut += rand(2,5)
|
|
|
|
- gs'stat'
|
|
|
|
-
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/cityrec.jpg"></center>'
|
|
|
|
- 'With that, you conclude the interview and are led to the front door.'
|
|
|
|
- '"We''ll take this information into consideration. Again, we''re very sorry for what happened to you."'
|
|
|
|
- 'And then he walks away. Leaving you so very alone...'
|
|
|
|
-
|
|
|
|
- act'Leave': gt 'city_center'
|
|
|
|
- end
|
|
|
|
-
|
|
|
|
- if cumsumvag+cumsumass > 0:
|
|
|
|
- act 'Can I get a rape kit?':
|
|
|
|
- cla & *clr
|
|
|
|
- minut += 2
|
|
|
|
- gs'stat'
|
|
|
|
-
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/cubicle.jpg"></center>'
|
|
|
|
- '"C-can I get a... a rape kit...?" you mumble.'
|
|
|
|
- 'The officer nods at you and pulls a small box out of a drawer in his desk.'
|
|
|
|
- '"If you just come this way ma''am." The two of you get up and he leads you through the office area to the bathroom where he hands you the box. Looking down at it, you read the label on it.'
|
|
|
|
- *nl
|
|
|
|
- '<i><b>SEXUAL ASSAULT EVIDENCE COLLECTION KIT</b></i>'
|
|
|
|
- *nl
|
|
|
|
- 'You take it from him, cradling it in your hands.'
|
|
|
|
- '"This will let you catch him right?" The officer shrugs in return.'
|
|
|
|
- '"It depends. DNA evidence is only useful if we can match it to the person it came from."'
|
|
|
|
- '"So you''re saying this might not do anything?"'
|
|
|
|
- 'He shrugs again. "It''s better than nothing."'
|
|
|
|
-
|
|
|
|
- act 'Use the rape kit':
|
|
|
|
- cla & *clr
|
|
|
|
- minut += 20
|
|
|
|
- gs'stat'
|
|
|
|
-
|
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/police/cityext.jpg"></center>'
|
|
|
|
- 'Closing the bathroom door, you open the kit and you swab your insides, feeling humiliated and disgusted when it comes back covered in semen. Packaging it up, you re-open the door and hand the evidence to the officer.'
|
|
|
|
- 'With that, you conclude the interview and are led to the front door.'
|
|
|
|
- '"We''ll take this information into consideration. Again, we''re very sorry for what happened to you." And then he walks away.'
|
|
|
|
- *nl
|
|
|
|
- 'Leaving you alone with your thoughts and memories of your rape...'
|
|
|
|
-
|
|
|
|
- act 'Leave': gt 'city_center'
|
|
|
|
- end
|
|
|
|
- end
|
|
|
|
- end
|
|
|
|
- end
|
|
|
|
- end
|
|
|
|
- end
|
|
|
|
-end
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-killvar 'temp_tot_booked'
|
|
|
|
-
|
|
|
|
-
|
|
|
|
--- police_station ---------------------------------
|
|
--- police_station ---------------------------------
|
|
-
|
|
|