fit.qsrc 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896
  1. # fit
  2. if $ARGS[0] = 'start':
  3. *clr & cla
  4. gs 'shortgs', 'setloc', 'fit', $ARGS[0]
  5. killvar '$locclass'
  6. menu_off = 0
  7. minut += 5
  8. frost = 0
  9. gs 'stat'
  10. gs 'themes', 'indoors'
  11. '<center><b><font color="maroon">Fitness Center</font></b></center>'
  12. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/desk.jpg"></center>'
  13. *nl
  14. 'This modern and well staffed fitness center provides all the latest equipment and trainers to help you make the most of them.'
  15. *nl
  16. 'There is a <a href="exec: gt ''food'', ''watercooler''">drinking fountain</a> near the doors to the bathrooms.'
  17. *nl
  18. 'At the reception you may buy '+iif(abonement > 0, 'a subscription package', 'an additional subscription package')+' for access to all available facilities.'
  19. *nl
  20. if abonement > 0:'Your existing subscription package is valid for <<abonement>> more classes.'
  21. *nl
  22. '<b>Classes included in subscription:</b>'
  23. *nl
  24. 'Running'
  25. 'CrossFit'
  26. 'Aerobics'
  27. 'Weights'
  28. 'Cross Trainer'
  29. 'Tennis'
  30. 'Dancing'
  31. 'Kickboxing'
  32. 'Swimming pool.'
  33. *nl
  34. 'Sportswear is required for all available classes.'
  35. act 'Leave': killvar 'epayments' & minut += 5 & gt 'city_center'
  36. if abonement > 0:
  37. act 'Go to the dressing room': gt 'fit', 'dressing_room'
  38. elseif money > 100:
  39. act 'Use the pool (100 <b>₽</b>)':
  40. money -= 100
  41. gs 'stat'
  42. gt 'fit', 'dressing_room'
  43. end
  44. end
  45. !! Pay cash or card - Hooded Silence.
  46. *nl
  47. if abonement = 0:
  48. 'How long do you want to subscribe for?'
  49. else
  50. 'Extend your subscription:'
  51. end
  52. $epayments['method'] = ''
  53. $epayments['item_variable'] = 'abonement'
  54. $epayments['description'] = 'lesson subscriptions and facilities access'
  55. $epayments['loc'] = 'fit'
  56. $epayments['loc_arg'] = 'start'
  57. $epayments['banner']= 'locations/city/citycenter/gym/desk.jpg'
  58. '<center><table width="90%" align="center" width="90%" cellspacing="0" cellpadding="0" valign="top">'
  59. if money >= 3000 or karta + bankDebtLimit => 3000:
  60. '<tr><td> <a href="exec: epayments[''value''] = 3000 & epayments[''quantity''] = 30 & gs ''shortgs'',''payments'' ">3,000<b> ₽</b> for 30 lessons</a></td>'
  61. end
  62. if money >= 2250 or karta + bankDebtLimit => 2250:
  63. '<td> <a href="exec: epayments[''value''] = 2250 & epayments[''quantity''] = 20 & gs ''shortgs'',''payments'' ">2,250<b> ₽</b> for 20 lessons</a></td>'
  64. end
  65. if money >= 1500 or karta + bankDebtLimit => 1500:
  66. '<td><a href="exec: epayments[''value''] = 1500 & epayments[''quantity''] = 10 & gs ''shortgs'',''payments'' ">1,500<b> ₽</b> for 10 lessons</a></td>'
  67. end
  68. '</tr></table></center>'
  69. end
  70. if $ARGS[0] = 'dressing_room':
  71. gs 'shortgs', 'setloc', 'fit', $ARGS[0]
  72. menu_off = 0
  73. $sexloc = 'fit'
  74. $location_type = 'private'
  75. $locclass = 'changingroom'
  76. *clr & cla
  77. gs 'stat'
  78. '<center><b><font color="maroon">Dressing</font></b></center>'
  79. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/locker.jpg"></center>'
  80. 'Recruiting girls for local track team, the winners will receive cash prizes.'
  81. 'Attention, visitors to the sports section must wear sports outfits and shoes when using the facilities.'
  82. *nl
  83. if abonement > 0:'Your existing subscription package is valid for <<abonement>> more classes.'
  84. *nl
  85. if nichTanya['Known'] = 0 and (rand(1,100) <= 20 or nichDebug = 1):
  86. 'In the locker room you notice <a href="exec:gt ''fit'', ''fitgirl''">a cute girl</a>.'
  87. end
  88. act 'Exit the locker room':
  89. if $clothingworntype ! 'nude' and PCloswimwear = 0:
  90. if Fit['FMR'] = 0 and vidage <= 40 and hotcat >=6 and fame['city_sport'] >=10:
  91. gt 'fit', 'FMR'
  92. else
  93. gt 'fit', 'start'
  94. end
  95. else
  96. cla
  97. msg'<b><font color = red>You need to get dressed.</font></b>'
  98. act 'Return': gt 'fit', 'dressing_room'
  99. end
  100. end
  101. if mc_inventory['shampoo'] > 0:
  102. act 'Take a shower (0:15)':
  103. cla
  104. *clr
  105. menu_off = 1
  106. minut += 15
  107. pcs_horny += 1
  108. pcs_hairbsh = 0
  109. pcs_makeup = 1
  110. if pcs_inhib < 15:inhib_exp += rand(1,2)
  111. dynamic $showerdin
  112. '<center><video autoplay loop src="images/shared/home/bathroom/dush.mp4"></video></center>'
  113. 'You go into the bathroom and turn on the shower. You lather your body and wash in the shower.'
  114. if deodorant_on = 1: gs 'sweat', 'remove_deo' & '<br>Your deodorant gets washed away in the shower.'
  115. act 'Get out of the shower':gt 'fit', 'dressing_room'
  116. end
  117. else
  118. '<font color="red">You''ve run out of shampoo and will have to buy some more before you can wash yourself.</font>'
  119. end
  120. act 'Use mirror':
  121. cla
  122. gt 'mirror', 'start'
  123. end
  124. act 'Change outfit':
  125. cla
  126. gt 'wardrobe', 'start'
  127. end
  128. gs 'wardrobe', 'default_sport_options'
  129. if (pcs_makeup = 1 or cosmetic_tattoo > 0) and PCloswimwear = 1:
  130. act 'Use the pool': gs 'shoes', 'strip' & gt 'bass', 'start'
  131. else
  132. if PCloswimwear = 0:
  133. act 'Change into swimwear': gt 'changingroom', 'view_swim_list'
  134. *pl 'You need to put some swimwear on first if you want to go in the pool.'
  135. end
  136. if pcs_makeup <> 1 and cosmetic_tattoo = 0: *pl 'You need to wash your make-up off first if you want to go in the pool.'
  137. end
  138. if abonement > 0:
  139. if $clothingworntype = 'danilovich_outfits' and $shoeworntype = 'danilovich':
  140. act 'Go to the gym':
  141. cla
  142. gt 'fit', 'gym'
  143. end
  144. act 'Go to the dance studio':
  145. cla
  146. gt 'danceclass'
  147. end
  148. act 'Go do a crossfit workout':
  149. cla
  150. gt 'crossfit_north_box', 'box'
  151. end
  152. end
  153. if runnerQW['joined_team'] = 0:
  154. act 'Join track team':
  155. cla
  156. *clr
  157. minut += 5
  158. runnerQW['joined_team'] = 1
  159. 'You signed up for the track team.'
  160. act 'Leave':gt 'fit', 'dressing_room'
  161. end
  162. elseif $clothingworntype = 'danilovich_outfits' and $shoeworntype = 'danilovich' and pcs_stam >= stammax / 5 and pcs_energy >= 20:
  163. act 'Go to team practice':gt 'beg', 'start'
  164. if week = 6 and pcs_run >= 20 and runnerQW['comp_day'] ! daystart:
  165. act '<b>Enter competition race</b>':runnerQW['comp_day'] = daystart & gt 'beg1', 'start'
  166. end
  167. elseif $clothingworntype = 'danilovich_outfits' and $shoeworntype = 'danilovich' and pcs_stam >= stammax / 5:
  168. act 'Go to team practice': '<br><font color="red">You feel too hungry to do this.</font>'
  169. if week = 6 and pcs_run >= 20 and runnerQW['comp_day'] ! daystart:
  170. act '<b>Enter competition race</b>': '<br><font color="red">You feel too hungry to do this.</font>'
  171. end
  172. elseif $clothingworntype = 'danilovich_outfits' and $shoeworntype = 'danilovich':
  173. act 'Go to team practice': '<br><font color="red">You are to exhausted to do this. Recover your stamina before trying to train.</font>'
  174. if week = 6 and pcs_run >= 20 and runnerQW['comp_day'] ! daystart:
  175. act '<b>Enter competition race</b>': '<br><font color="red">You are to exhausted to do this. Recover your stamina before entering the race.</font>'
  176. end
  177. end
  178. end
  179. if mc_inventory['deodorant'] > 0 and deodorant_on = 0:
  180. 'Your deodorant will last you for <b><<mc_inventory[''deodorant'']>></b> more '+iif(mc_inventory['deodorant'] = 1, 'application.', 'applications.')
  181. act 'Apply deodorant (0:01)':
  182. *clr & cla
  183. menu_off = 1
  184. minut += 1
  185. mc_inventory['deodorant'] -= 1
  186. gs 'sweat', 'deo'
  187. iif(func('body_din','pregnancyVisibility') = 1, '<center><img <<$set_imgh>> src="images/shared/home/bathroom/deodorant_preg.jpg"></center>', '<center><img <<$set_imgh>> src="images/shared/home/bathroom/deodorant.jpg"></center>')
  188. 'You apply deodorant to your armpits. It will keep you feeling fresh and clean for longer.'
  189. act 'Continue': menu_off = 0 & gt $loc, $loc_arg
  190. end
  191. end
  192. dynamic $tampon
  193. end
  194. if $ARGS[0] = 'fitgirl':
  195. menu_off = 1
  196. '<center><img <<$set_imgh>> src="images/characters/city/tanya/gym/idle0.jpg"></center>'
  197. 'The girl notices you looking and returns the smile. She undresses and taking some toiletries goes into the shower.'
  198. act 'Turn away':gt 'fit', 'dressing_room'
  199. act 'Follow her':
  200. *clr & cla
  201. pcs_hairbsh = 0
  202. pcs_makeup = 1
  203. noshampoo = 1
  204. dynamic $showerdin
  205. shovertania += 1
  206. gs 'stat'
  207. '<center><img <<$set_imgh>> src="images/characters/city/tanya/gym/shower0.jpg"></center>'
  208. 'There''s no one in the shower, except this girl. The girl looks around and seeing you smiles again then turns away.'
  209. act 'Leave the shower':gt 'fit', 'dressing_room'
  210. gs 'willpower', 'misc', 'force'
  211. if will_cost <= pcs_willpwr:
  212. act 'Molest her (<<will_cost>> Willpower)':
  213. *clr & cla
  214. gs 'willpower', 'pay', 'self'
  215. gs 'stat'
  216. '<center><img <<$set_imgh>> src="images/characters/city/tanya/gym/shower_mol0.jpg"></center>'
  217. 'You walk up to the girl and gently place one hand on her right breast. She turns to face you.'
  218. gs 'arousal', 'foreplay', 5, 'dom', 'lesbian'
  219. gs 'stat'
  220. if pcs_apprnc < 80:
  221. 'The girl pushes you off, and shouts something very rude about you and each and everyone of your relatives, you run out to the locker room.'
  222. act 'Go':gt 'fit', 'dressing_room'
  223. elseif pcs_apprnc >= 80:
  224. 'The girl quickly turns around. She looks a little bit puzzled as she realizes that it was you who grabbed her. She probably expected to see a guy and isn''t sure what to do.'
  225. act 'Take advantage of the confusion':
  226. cla
  227. *clr
  228. gs 'clothing', 'strip_all'
  229. '<center><img <<$set_imgh>> src="images/characters/city/tanya/gym/shower_mol1.jpg"></center>'
  230. 'While she is trying to understand what is happening you begin fondling her sex with your fingers, and then her hand strokes your ass.'
  231. gs 'arousal', 'foreplay', 10, 'dom', 'lesbian'
  232. gs 'stat'
  233. act 'Further': gt 'fit', 'tanyaIntroduction'
  234. end
  235. act 'Wait for her reaction':
  236. *clr & cla
  237. gs 'stat'
  238. if pcs_apprnc < 100:
  239. gs 'arousal', 'end'
  240. 'The girl smiles at you, but removes your hand and leaves, blowing you a kiss.'
  241. act 'Continue':gt 'fit', 'dressing_room'
  242. elseif pcs_apprnc >= 100:
  243. cla
  244. *clr
  245. gs 'clothing', 'strip_all'
  246. '<center><img <<$set_imgh>> src="images/characters/city/tanya/gym/shower_mol2.jpg"></center>'
  247. 'The girl presses up to you even stronger and kisses your lips.'
  248. gs 'arousal', 'kiss', 5, 'dom', 'lesbian'
  249. gs 'stat'
  250. act 'Further':
  251. gt 'fit', 'tanyaIntroduction'
  252. end
  253. end
  254. end
  255. end
  256. end
  257. else
  258. act 'Molest her (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  259. end
  260. end
  261. end
  262. if $ARGS[0] = 'tanyaIntroduction':
  263. '<center><img <<$set_imgh>> src="images/characters/city/tanya/gym/shower1.jpg"></center>'
  264. 'Just as the both of you are about to get more intimate a group of middleaged women enters the showers. They haven''t noticed you yet. The girl next to you is clearly afraid of being spotted in the shower with you and takes her first opportunity to quietely escape to the dressing room.'
  265. 'You follow her only a few seconds later. She has already begun to dress herself.'
  266. if $pantyworntype = 'none': gs 'underwear', 'wear'
  267. gs 'panties', 'dispose'
  268. gs 'clothing', 'wear_last_worn'
  269. nichTanya['Relationship'] = 1
  270. nichTanya['Known'] = 1
  271. npc_rel['A218'] += 5
  272. nichTanya['FuckLast'] = daystart
  273. gs 'arousal', 'end'
  274. gs 'stat'
  275. '"You can at least tell me your name, seeing as you did not even have the decency to do so before you assaulted me." The girl says, catching her breath. Despite her words she doesn''t seem to be angry with you.'
  276. '"I am <<$pcs_nickname>>, and how can I assault someone so keen?" You ask trying to find your panties.'
  277. '"Looking for this?" asks the girl twirling your panties on her finger.'
  278. '"Yes, can I have them back, please?" you ask, while holding out your hand.'
  279. '"Nope. You seduced me. I have never been with a girl before and I think I earned this as a memento." With these words, Tanya slips your panties in her pocket.'
  280. '"My name is Tanya by the way. I live only a short distance from here with my parents. You might come over if you like. Usually I''m home in the late afternoon. We could continue were we left off." she winks at you and leaves.'
  281. '<i>You can now visit Tanya at her parents home in the Downtown area once a day after 16:00.</i>'
  282. act 'Back':gt 'fit', 'dressing_room'
  283. end
  284. if $ARGS[0] = 'gym':
  285. *clr & cla
  286. killvar '$locclass'
  287. menu_off = 1
  288. minut += 5
  289. sportzalrand = RAND(0,20)
  290. gs 'stat'
  291. gs 'themes', 'indoors'
  292. '<center><b><font color="maroon">Fitness Center</font></b></center>'
  293. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/schedule.jpg"></center>'
  294. 'In the fitness center there are a lot of different classes and clubs, designed to improve physical development.'
  295. *nl
  296. if abonement > 0:'Your existing subscription package is valid for <<abonement>> more classes.'
  297. if mid($start_type,1,2) = 'sg':
  298. if hour >= 10 and hour < 12 and week = 7 and centr = 1: 'In the hall you see <a href="exec:gt ''VolleyTrenCentr''">Mikhail Nikolaevich</a> talking with a strange man.'
  299. if hour >= 10 and hour < 12 and week = 7 and centr = 2 and ricewine < 2: 'In the hall you see <a href="exec:gt ''VolleyTrenCentr''">Guang</a>'
  300. end
  301. gs 'fit', 'exercise_end'
  302. if pcs_energy >= 20 and pcs_stam >= stammax / 5:
  303. act 'Aerobics (Burn fat)':
  304. cla
  305. *clr
  306. abonement -= 1
  307. gs 'exercise', 'tier1', 30, 'vital', 'react'
  308. fat -= rand(0,4)
  309. if pcs_inhib < 30:inhib_exp += rand(1,2)
  310. '<center><img <<$set_imgh>> src="images/pc/activities/exercises/gym/fit11.jpg"></center>'
  311. 'You do very vigorous exercises to the music, and burn some fat.'
  312. if pcs_stam < 30:
  313. *nl
  314. 'You are too tired to do any more exercise and will have to rest and regain some stamina.'
  315. gs 'fit', 'exercise_end'
  316. else
  317. act'Continue': gt 'fit', 'gym'
  318. end
  319. end
  320. act 'Light weights (Build strength)':
  321. cla
  322. *clr
  323. abonement -= 1
  324. gs 'exercise', 'tier3', 30, 'stren'
  325. if pcs_inhib < 30:inhib_exp += rand(1,2)
  326. '<center><img <<$set_imgh>> src="images/pc/activities/exercises/gym/fit2.jpg"></center>'
  327. 'You pump dumbells doing reps at fairly low total weight, building strength.'
  328. if pcs_stam < 30:
  329. *nl
  330. 'You are too tired to do any more exercise and will have to rest and regain some stamina.'
  331. gs 'fit', 'exercise_end'
  332. else
  333. act'Continue': gt 'fit', 'gym'
  334. end
  335. end
  336. act 'Heavy weights (Build muscle <font color=red>This can lead to extreme strength at a cost to appearance</font>)':
  337. cla
  338. *clr
  339. abonement -= 1
  340. gs 'exercise', 'tier3', 30, 'stren_plus'
  341. if pcs_inhib < 30:inhib_exp += rand(1,2)
  342. '<center><img <<$set_imgh>> src="images/pc/activities/exercises/gym/fit6.jpg"></center>'
  343. 'You pump the heavy weights doing low reps with high total weight, building muscle.'
  344. if pcs_stam < 30:
  345. *nl
  346. 'You are too tired to do any more exercise and will have to rest and regain some stamina.'
  347. gs 'fit', 'exercise_end'
  348. else
  349. act'Continue': gt 'fit', 'gym'
  350. end
  351. end
  352. act 'Squats (Tone your butt)':
  353. cla
  354. *clr
  355. abonement -= 1
  356. gs 'exercise', 'tier2', 30, 'stren', 'butt_tr'
  357. if pcs_inhib < 30:inhib_exp += rand(1,2)
  358. '<center><img <<$set_imgh>> src="images/pc/activities/exercises/butt_gym.jpg"></center>'
  359. 'You do various squats to tone your thighs and glutes, it also helps with building strength.'
  360. if pcs_stam < 30:
  361. *nl
  362. 'You are too tired to do any more exercise and will have to rest and regain some stamina.'
  363. gs 'fit', 'exercise_end'
  364. else
  365. act'Continue': gt 'fit', 'gym'
  366. end
  367. end
  368. act 'Cross trainer (endurance)':
  369. cla & *clr
  370. abonement -= 1
  371. gs 'exercise', 'tier3', 30, 'vital'
  372. if pcs_inhib < 30:inhib_exp += rand(1,2)
  373. '<center><img <<$set_imgh>> src="images/pc/activities/exercises/gym/fit3.jpg"></center>'
  374. 'You spend a half hour doing reps on the cross trainer developing your endurance.'
  375. if pcs_stam < 30:
  376. *nl
  377. 'You are too tired to do any more exercise and will have to rest and regain some stamina.'
  378. gs 'fit', 'exercise_end'
  379. else
  380. act'Continue': gt 'fit', 'gym'
  381. end
  382. end
  383. act 'Tennis practice (agility)':
  384. cla
  385. *clr
  386. abonement -= 1
  387. gs 'exercise', 'tier3', 30, 'agil'
  388. if pcs_inhib < 30:inhib_exp += rand(1,2)
  389. '<center><img <<$set_imgh>> src="images/pc/activities/exercises/gym/fit4.jpg"></center>'
  390. 'You run tennis exercises, concentrating on defensive drills.'
  391. if pcs_stam < 30:
  392. *nl
  393. 'You are too tired to do any more exercise and will have to rest and regain some stamina.'
  394. gs 'fit', 'exercise_end'
  395. else
  396. act'Continue': gt 'fit', 'gym'
  397. end
  398. end
  399. act 'Tennis practice (reactions)':
  400. cla
  401. *clr
  402. abonement -= 1
  403. gs 'exercise', 'tier3', 30, 'react'
  404. if pcs_inhib < 30:inhib_exp += rand(1,2)
  405. '<center><img <<$set_imgh>> src="images/pc/activities/exercises/gym/fit4.jpg"></center>'
  406. 'You run tennis exercises, concentrating on court reactions.'
  407. if pcs_stam < 30:
  408. *nl
  409. 'You are too tired to do any more exercise and will have to rest and regain some stamina.'
  410. gs 'fit', 'exercise_end'
  411. else
  412. act'Continue': gt 'fit', 'gym'
  413. end
  414. end
  415. act 'Go to the kickboxing gym':gt 'fit', 'kickboxing'
  416. elseif pcs_energy >= 20:
  417. act 'Aerobics (Burn fat)': '<br><font color="red">You are to exhausted to do this. Recover your stamina before trying to train.</font>'
  418. act 'Free weights (Build muscle)': '<br><font color="red">You are to exhausted to do this. Recover your stamina before trying to train.</font>'
  419. act 'Cross trainer (endurance)': '<br><font color="red">YYou are to exhausted to do this. Recover your stamina before trying to train.</font>'
  420. act 'Tennis practice (agility)': '<br><font color="red">You are to exhausted to do this. Recover your stamina before trying to train.</font>'
  421. act 'Tennis practice (reactions)': '<br><font color="red">You are to exhausted to do this. Recover your stamina before trying to train.</font>'
  422. act 'Go to the kickboxing gym': '<br><font color="red">You are to exhausted to do this. Recover your stamina before trying to train.</font>'
  423. else
  424. act 'Aerobics (Burn fat)': '<br><font color="red">You feel too hungry to do this.</font>'
  425. act 'Free weights (Build muscle)': '<br><font color="red">You feel too hungry to do this.</font>'
  426. act 'Cross trainer (endurance)': '<br><font color="red">You feel too hungry to do this.</font>'
  427. act 'Tennis practice (agility)': '<br><font color="red">You feel too hungry to do this.</font>'
  428. act 'Tennis practice (reactions)': '<br><font color="red">You feel too hungry to do this.</font>'
  429. act 'Go to the kickboxing gym': '<br><font color="red">You feel too hungry to do this.</font>'
  430. end
  431. end
  432. if $ARGS[0] = 'exercise_end':
  433. menu_off = 1
  434. RESULT = rand(0, 19)
  435. act 'Leave':
  436. if RESULT = 0:
  437. cla
  438. *clr
  439. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/sex/zal1.jpg"></center>'
  440. 'You see a nice guy on the weight machine.'
  441. act 'Continue':gt 'fit', 'dressing_room'
  442. act 'Flirt':
  443. cla
  444. *clr
  445. guy += 1
  446. gs 'npcgeneratec', 0, 'guy from the gym', rand(19,45)
  447. gs 'boyStat', $npclastgenerated
  448. samecount = 1
  449. picrand = 17
  450. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/sex/zal2.jpg"></center>'
  451. 'You go up to the guy lying on the machine, squat and start stroking his cock through his pants. The man rises and kisses you on the lips, then lowers his pants releasing his impressive size dick.'
  452. gs 'arousal', 'foreplay', 10, 'dom'
  453. gs 'stat'
  454. act 'Suck':gt 'sex', 'minet'
  455. end
  456. elseif RESULT = 1:
  457. cla
  458. *clr
  459. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/sex/zal3.jpg"></center>'
  460. 'As you finish training, a guy sits behind, caresses your breasts and kisses your ear, sucking the lobe.'
  461. gs 'willpower', 'misc', 'self', 'medium'
  462. if will_cost <= pcs_willpwr:
  463. act 'Hit him in the balls (<<will_cost>> Willpower)':
  464. *clr & cla
  465. gs 'willpower', 'pay', 'self'
  466. gs 'stat'
  467. gt 'fit', 'dressing_room'
  468. 'Event text'
  469. act 'Next action': gt 'farawayistan'
  470. end
  471. else
  472. act 'Hit him in the balls (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  473. end
  474. act 'Enjoy':
  475. cla
  476. *clr
  477. guy += 1
  478. gs 'npcgeneratec', 0, 'guy from the gym', rand(19,45)
  479. gs 'boyStat', $npclastgenerated
  480. picrand = 18
  481. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/sex/zal4.jpg"></center>'
  482. 'Guy gets up and moves around to face you, he pulls out his cock and lays it on your chest, eventually moving the head to your mouth.'
  483. gs 'arousal', 'foreplay', 15, 'sub'
  484. gs 'stat'
  485. act 'Suck':gt 'sex', 'minet'
  486. end
  487. elseif RESULT = 2:
  488. cla
  489. 'As you finish training, a fit girl offers to play a little squash with you as she waits for her boyfriend to come.'
  490. act 'Refuse':gt 'fit', 'dressing_room'
  491. act 'Agree':
  492. cla
  493. *clr
  494. picrand = 15
  495. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/sex/zal5.jpg"></center>'
  496. 'You have fun playing with the girl. Neither of you are any good, but it just amuses you. After some time you notice a man looking at your clumsy attempts. He offers to show you how to play correctly.'
  497. 'He stands just behind you and puts one hand on your hand, guiding your racket and showing you how to strike the ball. He places his other hand on your side first. You feel his hand stroking your hip and gradually approaching your crotch. He pushes you a bit backwards, making your butt touch his groin.'
  498. 'You feel his cock resting against your back, poking it a bit. You make eye contact with the girl and her smile makes you know that she understands what is going on; this guy must be her boyfriend.'
  499. act 'Escape from these perverts':gt 'fit', 'dressing_room'
  500. act 'Enjoy':
  501. guy += 1
  502. girl += 1
  503. gs 'npcgeneratec', 0, 'guy from the gym', rand(19,45)
  504. gs 'boyStat', $npclastgenerated
  505. gt 'podrsex', 'suck'
  506. gs 'arousal', 'foreplay', 15, 'group', 'lesbian'
  507. gs 'stat'
  508. end
  509. end
  510. elseif RESULT = 3:
  511. cla
  512. *clr
  513. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/sex/zal6.jpg"></center>'
  514. 'You train near to a girl and engage in conversation, two guys obviously take you for girlfriends and try to chat you up.'
  515. act 'Continue':gt 'fit', 'dressing_room'
  516. act 'Flirt back':
  517. cla
  518. *clr
  519. picrand = 12
  520. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/sex/zal7.jpg"></center>'
  521. 'You flirt with a guy, and notice that he is getting very excited and constantly glancing behind you. Turning, you see that the girl is already on her haunches and sucking the second guy with gusto.'
  522. act 'Leave':gt 'fit', 'dressing_room'
  523. act 'Suck':
  524. guy += 2
  525. girl += 1
  526. gang += 1
  527. gs 'npcgeneratec', 0, 'guy from the gym', rand(19,45)
  528. gs 'boyStat', $npclastgenerated
  529. gs 'npcgeneratec', 0, 'guy from the gym', rand(19,45)
  530. gs 'boyStat', $npclastgenerated, 'a'
  531. gs 'arousal', 'bj', 15, 'group', 'lesbian'
  532. gs 'stat'
  533. gt 'sexdvanadva', 'var'
  534. end
  535. end
  536. else
  537. gt 'fit', 'dressing_room'
  538. end
  539. end
  540. end
  541. if $ARGS[0] = 'kickboxing':
  542. cla
  543. *clr
  544. killvar '$locclass'
  545. menu_off = 1
  546. minut += 5
  547. gs 'stat'
  548. gs 'razrKik'
  549. gs 'themes', 'indoors'
  550. '<center><b><font color="maroon">Kickboxing Gym</font></b></center>'
  551. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/kik.jpg"></center>'
  552. 'This section is dominated by the ring itself, square like a boxing ring and the only equipment that can''t be easily moved.'
  553. 'Around it there are various punching bags of different sizes and weights and a couple of coaches with practice pads.'
  554. 'You can try your luck in a fight here on Saturdays but safety concerns limit everyone to a maximum of 1 bout per week.'
  555. act 'Return to dressing room': gt 'fit', 'dressing_room'
  556. if pcs_energy >= 20 and pcs_stam >= stammax / 5:
  557. act 'Work on your jabs':
  558. cla
  559. *clr
  560. abonement -= 1
  561. gs 'exercise', 'tier3', 30, 'jab', 'react'
  562. if pcs_inhib < 30:inhib_exp += rand(1,2)
  563. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/kik1.jpg"></center>'
  564. 'You practice your jabs on the speed bag and double-end bag, straight punches with a step forward. These strikes are not so powerful, but they are fast.'
  565. act 'Leave':gt 'fit', 'kickboxing'
  566. end
  567. act 'Work on your heavy punches':
  568. cla
  569. *clr
  570. abonement -= 1
  571. gs 'exercise', 'tier3', 30, 'stren', 'punch'
  572. if pcs_inhib < 30:inhib_exp += rand(1,2)
  573. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/kik1.jpg"></center>'
  574. 'You practice your power punches on the heavy bag. These are high impact and powerful, but they are hard to get to their target.'
  575. act 'Leave':gt 'fit', 'kickboxing'
  576. end
  577. act 'Work on your kicking':
  578. cla
  579. *clr
  580. abonement -= 1
  581. gs 'exercise', 'tier3', 30, 'stren', 'kick'
  582. if pcs_inhib < 30:inhib_exp += rand(1,2)
  583. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/kik1.jpg"></center>'
  584. 'You practice your powerful kicks on a kickboxing bag. These impacts are very powerful and able to cut down an opponant, but are very difficult to hit with.'
  585. act 'Leave':gt 'fit', 'kickboxing'
  586. end
  587. act 'Work on defence':
  588. cla
  589. *clr
  590. abonement -= 1
  591. gs 'exercise', 'tier3', 30, 'def', 'agil'
  592. if pcs_inhib < 30:inhib_exp += rand(1,2)
  593. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/kickboxing/kik1.jpg"></center>'
  594. 'You practice your defense movements.'
  595. act 'Leave':gt 'fit', 'kickboxing'
  596. end
  597. act 'Sparring (training bout in the ring)':
  598. cla
  599. *clr
  600. 'You need to choose a partner for sparring'
  601. if pcs_inhib < 30:inhib_exp += rand(1,2)
  602. act 'Pick a random partner':
  603. abonement -= 1
  604. pcs_mood += 2
  605. gs 'exercise', 'tier3', 30, 'jab', 'punch', 'kick', 'def'
  606. pointKik = 0
  607. pointKikV = 0
  608. round = 1
  609. minround = 0
  610. gs 'npcgeneratec', 1, 'sparring partner', rand(19,45)
  611. gs 'boyStat', $npclastgenerated
  612. strenV = rand(10, 20)
  613. speedV = rand(10, 20)
  614. agilV = rand(10, 20)
  615. reactV = rand(10, 20)
  616. vitalV = rand(10, 20)
  617. intelV = 10
  618. willV = 10
  619. !!skills
  620. JabV = rand(5, 20)
  621. PunchV = rand(5, 20)
  622. KikV = rand(5, 20)
  623. KikDefV = rand(5, 20)
  624. !!parameters
  625. healthV = vitalV * 10 + strenV * 5
  626. formula = 3
  627. sparing = 1
  628. gt 'kikbox', 'start'
  629. end
  630. end
  631. if week = 6 and kickbox['amateur_fight_day'] ! daystart:
  632. 'You can take part in an amateur fight.'
  633. act 'Amateur fight':
  634. kickbox['amateur_fight_day'] = daystart
  635. pcs_mood += 2
  636. gs 'exercise', 'tier3', 30, 'jab', 'punch', 'kick', 'def'
  637. pointKik = 0
  638. pointKikV = 0
  639. round = 1
  640. minround = 0
  641. kickbox['opponent'] = kickbox['sash'] + rand(0, 1)
  642. if kickbox['opponent'] = 0:
  643. gs 'npcgeneratec', 1, 'Useless rival', rand(19,45)
  644. gs 'boyStat', $npclastgenerated
  645. strenV = rand(10, 20)
  646. speedV = rand(10, 20)
  647. agilV = rand(10, 20)
  648. reactV = rand(10, 20)
  649. vitalV = rand(10, 20)
  650. intelV = 10
  651. willV = 10
  652. !!skills
  653. JabV = rand(10, 30)
  654. PunchV = rand(10, 30)
  655. KikV = rand(10, 30)
  656. KikDefV = rand(10, 30)
  657. !!parameters
  658. healthV = vitalV * 10 + strenV * 5
  659. formula = 3
  660. kickbox['amateur'] = 1
  661. elseif kickbox['opponent'] = 1:
  662. gs 'npcgeneratec', 1, '3rd class rival', rand(19,45)
  663. gs 'boyStat', $npclastgenerated
  664. strenV = rand(15, 25)
  665. speedV = rand(15, 25)
  666. agilV = rand(15, 25)
  667. reactV = rand(15, 25)
  668. vitalV = rand(15, 25)
  669. intelV = 10
  670. willV = 10
  671. !!skills
  672. JabV = rand(15, 35)
  673. PunchV = rand(15, 35)
  674. KikV = rand(15, 35)
  675. KikDefV = rand(15, 35)
  676. !!parameters
  677. healthV = vitalV * 10 + strenV * 5
  678. formula = 3
  679. kickbox['amateur'] = 1
  680. elseif kickbox['opponent'] = 2:
  681. gs 'npcgeneratec', 1, '2rd class rival', rand(19,45)
  682. gs 'boyStat', $npclastgenerated
  683. strenV = rand(20, 30)
  684. speedV = rand(20, 30)
  685. agilV = rand(20, 30)
  686. reactV = rand(20, 30)
  687. vitalV = rand(20, 30)
  688. intelV = 10
  689. willV = 10
  690. !!skills
  691. JabV = rand(30, 50)
  692. PunchV = rand(30, 50)
  693. KikV = rand(30, 50)
  694. KikDefV = rand(30, 50)
  695. !!parameters
  696. healthV = vitalV * 10 + strenV * 5
  697. formula = 3
  698. kickbox['amateur'] = 1
  699. elseif kickbox['opponent'] = 3:
  700. gs 'npcgeneratec', 1, '1st class rival', rand(19,45)
  701. gs 'boyStat', $npclastgenerated
  702. strenV = rand(30, 40)
  703. speedV = rand(30, 40)
  704. agilV = rand(30, 40)
  705. reactV = rand(30, 40)
  706. vitalV = rand(30, 40)
  707. intelV = 10
  708. willV = 10
  709. !!skills
  710. JabV = rand(40, 60)
  711. PunchV = rand(40, 60)
  712. KikV = rand(40, 60)
  713. KikDefV = rand(40, 60)
  714. !!parameters
  715. healthV = vitalV * 10 + strenV * 5
  716. formula = 3
  717. kickbox['amateur'] = 1
  718. elseif kickbox['opponent'] = 4:
  719. gs 'npcgeneratec', 1, 'Excellent rival', rand(19,45)
  720. gs 'boyStat', $npclastgenerated
  721. strenV = rand(40, 60)
  722. speedV = rand(40, 60)
  723. agilV = rand(40, 60)
  724. reactV = rand(40, 60)
  725. vitalV = rand(40, 60)
  726. intelV = 10
  727. willV = 10
  728. !!skills
  729. JabV = rand(60, 80)
  730. PunchV = rand(60, 80)
  731. KikV = rand(60, 80)
  732. KikDefV = rand(60, 80)
  733. !!parameters
  734. healthV = vitalV * 10 + strenV * 5
  735. formula = 3
  736. kickbox['amateur'] = 1
  737. elseif kickbox['opponent'] >= 5:
  738. gs 'npcgeneratec', 1, 'Best rival in the gym', rand(19,45)
  739. gs 'boyStat', $npclastgenerated
  740. strenV = rand(60, 100)
  741. speedV = rand(60, 100)
  742. agilV = rand(60, 100)
  743. reactV = rand(60, 100)
  744. vitalV = rand(60, 100)
  745. intelV = 10
  746. willV = 10
  747. !!skills
  748. JabV = rand(80, 110)
  749. PunchV = rand(80, 110)
  750. KikV = rand(80, 110)
  751. KikDefV = rand(80, 110)
  752. !!parameters
  753. healthV = vitalV * 10 + strenV * 5
  754. formula = 3
  755. kickbox['amateur'] = 1
  756. end
  757. gt 'kikbox', 'start'
  758. end
  759. end
  760. else
  761. *nl
  762. 'You are too hunger or fatigued to do anymore exercises now.'
  763. end
  764. end
  765. if $ARGS[0] = 'FMR':
  766. *clr & cla
  767. killvar '$locclass'
  768. menu_off = 0
  769. minut += 5
  770. Fit['FMR'] = 1
  771. gs 'stat'
  772. '<center><b><font color="maroon">Photographer</font></b></center>'
  773. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/photo/fotograph.jpg"></center>'
  774. if model['status'] = 1:
  775. '"Hey! <<$pcs_nickname>>!"'
  776. 'Waiting for you, there is a man with several cameras hanging from his neck. You remember him, as one of Aphrodite''s photographers. Now that you think about it, he has been hanging around some of the sports events, you have participated.'
  777. '"<<$pcs_nickname>>, the agency has sent me to tell you, that our sponsors want to give you an opportunity as a fitness model. Congratulations! You are getting famous!"'
  778. 'You smile, at the sudden good news. The fitness jobs in the agency are paid based not only on your modeling cache but taking into consideration your relative sports fame and bodybuild. Good job!'
  779. '"Congratulations <<$pcs_nickname>>! you have earned it!"'
  780. 'Saying this, he turns around, and after waving a final goodbye, he leaves.'
  781. act 'Leave':gt 'fit', 'start'
  782. else
  783. 'Waiting for you, there is a man with several cameras hanging from his neck. You vaguely remember him, hanging around some of the sports events, you have participated in. He smiles and quickly takes your hands in a handshake.'
  784. '"<<$pcs_lastname>> Isn''t it? I''m here to make you a proposal. Don''t be afraid! Not that kind of "proposal". A serious... business... career-oriented... proposal. Tell me... would you consider becoming a model?"'
  785. 'You blink, utterly taken by the sudden verbal barrage... What has he said? You a model?! You have the looks, and it''s not that weird for a woman in the sports career to be offered a job in the model business, but, are you going to trust this stranger? Sensing your hesitation, the man pushes a business card into your hands, before continuing.'
  786. '"Don''t worry. You don''t need to answer me right now, investigate, ask around if you want, and when you''ve made your decision. Come to see us. If you pass some basic tests, you can initiate a new exciting career."'
  787. 'Saying this, the man turns around, and after waving goodbye, he leaves. On the card, the name "Aphrodite Photography" can be read with and attached are directions. You remember seeing that name around the city center. Maybe you could go and take a look?'
  788. act 'Leave':gt 'fit', 'start'
  789. end
  790. end
  791. --- fit ---------------------------------