foto_practice.qsrc 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714
  1. # foto_practice
  2. if $ARGS[0] = 'start':
  3. practice_session = 1
  4. menu_off = 1
  5. gs'stat'
  6. *clr & cla
  7. minut += 5
  8. if model['status'] = 0:model['status'] = 1
  9. gs 'stat'
  10. '<center><b><font color="maroon">Photographer</font></b></center>'
  11. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/photo/fotograph.jpg"></center>'
  12. if model_job_week >= 2:
  13. '"Hello <<$pcs_firstname>>. We''ve already done a paid shoot with you this week, so we can''t do another one. But would you like to get some practice in?"'
  14. else
  15. '"Oh, you want to practice today?"'
  16. end
  17. act '"Maybe not today"' :gt 'foto','studio'
  18. act '"Yes, please"':
  19. cla
  20. '"What kind of shoot would you like to do today? Fashion shoots or glamour shoots?"'
  21. act'"I''d like to practice fashion shoots"':
  22. cla & *clr
  23. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/photo/fotograph.jpg"></center>'
  24. '"Alright, we can do that. What would you like to do?"'
  25. gs'foto_practice','fashion'
  26. gs'foto_practice','bikini'
  27. gs'foto_practice','lingerie'
  28. gs'foto_practice','sexy'
  29. end
  30. act'"I''d like to practice glamour shoots"':
  31. cla & *clr
  32. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/photo/fotograph.jpg"></center>'
  33. '"Alright, we can do that. What would you like to do?"'
  34. gs'foto_practice','transparent'
  35. gs'foto_practice','trans_ling'
  36. gs'foto_practice','topless'
  37. gs'foto_practice','nude'
  38. end
  39. end
  40. end
  41. if $ARGS[0] = 'fashion':
  42. act 'Fashion':
  43. cla
  44. act 'Maybe not today':gt 'foto','studio'
  45. act 'Practice (2:00)':
  46. *clr & cla
  47. minut += 120
  48. modelpayfin = 0
  49. gs 'exp_gain', 'mdlng', rand(3,5)
  50. fashionshoot = rand(1,4)
  51. gs 'stat'
  52. if fashionshoot <= 2:'<center><video autoplay loop src="images/locations/city/citycenter/photo/fashion/<<rand(1,5)>>.mp4"></video></center>'
  53. if fashionshoot >= 3 and fashionshoot < 5:'<center><img <<$set_imgh>> src="images/locations/city/citycenter/photo/fashion/<<rand(1,14)>>.jpg"></center>'
  54. if fashionshoot < 5:'You dress up in the latest in fashion wear and spend the next two hours sexily posing for the photographer.'
  55. if fashionshoot = 5:
  56. '<center><video autoplay loop src="images/locations/city/citycenter/photo/fashion4.mp4"></video></center>'
  57. 'You spend two hours putting on various dresses, practicing modelling for the online catalogs of retail clothing stores. Apparently for consistency they want you to have the exact same expression on your face every time, so you spend most of the time practicing that.'
  58. end
  59. if pcs_mdlng < 20:
  60. act'Continue':
  61. cla
  62. *nl
  63. 'You have fun during the shoot but you can tell from the photographer''s reactions that you''re not doing as well as you should be.'
  64. '<i>I guess I need to get better at this...</i>'
  65. act'Continue':
  66. cla & *clr
  67. *nl
  68. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  69. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  70. act 'Leave':gt 'foto', 'end'
  71. end
  72. end
  73. else
  74. act'Continue':
  75. cla & *clr
  76. *nl
  77. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  78. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  79. act 'Leave':gt 'foto', 'end'
  80. end
  81. end
  82. end
  83. end
  84. end
  85. if $ARGS[0] = 'bikini':
  86. act 'Bikini modelling':
  87. cla
  88. act 'Maybe not today':gt 'foto','studio'
  89. if pcs_inhib < 20:
  90. act 'Practice (2:00)':
  91. *clr & cla
  92. minut += 120
  93. modelpayfin = 0
  94. gs 'exp_gain', 'mdlng', 1
  95. if pcs_inhib < 50:inhib_exp += rand(1,3)
  96. gs 'stat'
  97. '<center><video autoplay loop src="images/locations/city/citycenter/photo/bikini/<<rand(4,5)>>.mp4"></video></center>'
  98. 'Bikini modelling isn''t too bad, but you''d still be pretty embarrassed if you ever saw someone reading a magazine with pictures of you like this on the cover. Still, you''re determined to work your way up to it and gain more confidence in your body and your modelling skills.'
  99. if pcs_mdlng < 20:
  100. act'Continue':
  101. cla
  102. *nl
  103. 'You do your best, but you still can''t help but be self conscious. Your movements are rigid and awkward and you really just have no idea what kind of expression it is you have on your face. You <i>hope</i> it''s sexy...'
  104. 'You spend the majority of the practice shoot trying to stay calm and feel more natural about exposing yourself.'
  105. act'Continue':
  106. cla & *clr
  107. *nl
  108. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  109. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  110. act 'Leave':gt 'foto', 'end'
  111. end
  112. end
  113. else
  114. act'Continue':
  115. cla & *clr
  116. *nl
  117. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  118. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  119. if pcs_mdlng >= 40 and commercial = 0:
  120. act 'Leave':gt'foto_events','commercial'
  121. else
  122. act 'Leave':gt 'foto', 'end'
  123. end
  124. end
  125. end
  126. end
  127. else
  128. act 'Practice (2:00)':
  129. *clr & cla
  130. minut += 120
  131. modelpayfin = 0
  132. gs 'exp_gain', 'mdlng', rand(6,10)
  133. if pcs_inhib < 50:inhib_exp += 1
  134. gs 'stat'
  135. '<center><video autoplay loop src="images/locations/city/citycenter/photo/bikini/<<rand(4,5)>>.mp4"></video></center>'
  136. 'You go ahead and put on the bikini that the photographer wants to use and get to posing for him.'
  137. if pcs_mdlng < 20:
  138. act'Continue':
  139. cla
  140. *nl
  141. 'You''re still not used to this whole modelling thing. The poses the photographer wants you in feel strange and unnatural. It kind of feels like writing with your non-dominant hand. It''s good you''re doing this because you clearly need practice.'
  142. act'Continue':
  143. cla & *clr
  144. *nl
  145. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  146. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  147. act 'Leave':gt 'foto', 'end'
  148. end
  149. end
  150. else
  151. act'Continue':
  152. cla & *clr
  153. *nl
  154. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  155. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  156. if pcs_mdlng >= 40 and commercial = 0:
  157. act 'Leave':gt'foto_events','commercial'
  158. else
  159. act 'Leave':gt 'foto', 'end'
  160. end
  161. end
  162. end
  163. end
  164. end
  165. end
  166. end
  167. if $ARGS[0] = 'lingerie':
  168. act 'Lingerie modelling':
  169. cla
  170. act 'Maybe not today':gt 'foto','studio'
  171. if pcs_inhib < 25:
  172. act 'Practice (2:00)':
  173. *clr & cla
  174. minut += 120
  175. modelpayfin = 0
  176. gs 'exp_gain', 'mdlng', 1
  177. if pcs_inhib < 50:inhib_exp += rand (1,3)
  178. gs 'stat'
  179. '<center><video autoplay loop src="images/locations/city/citycenter/photo/lingerie/<<rand(1,2)>>.mp4"></video></center>'
  180. 'You''re too embarrassed to do a shoot like this that would be released to the public, but you''re determined to work your way up to it so put on some sexy lingerie and spend the next two hours striking various poses for a photographer.'
  181. if pcs_mdlng < 20:
  182. act'Continue':
  183. cla
  184. *nl
  185. 'Even without explicit nudity, you feel exposed and self conscious. It''s hard to focus on getting it right when all you can think about is how much skin you''re showing.'
  186. 'You spend the majority of the practice shoot trying to stay calm and feel more natural about exposing yourself.'
  187. act'Continue':
  188. cla & *clr
  189. *nl
  190. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  191. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  192. act 'Leave':gt 'foto', 'end'
  193. end
  194. end
  195. else
  196. act'Continue':
  197. cla & *clr
  198. *nl
  199. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  200. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  201. if pcs_mdlng >= 40 and commercial = 0:
  202. act 'Leave':gt'foto_events','commercial'
  203. else
  204. act 'Leave':gt 'foto', 'end'
  205. end
  206. end
  207. end
  208. end
  209. else
  210. act 'Practice (2:00)':
  211. *clr & cla
  212. minut += 120
  213. modelpayfin = 0
  214. gs 'exp_gain', 'mdlng', rand(6,10)
  215. if pcs_inhib < 50:inhib_exp += 2
  216. gs 'stat'
  217. '<center><video autoplay loop src="images/locations/city/citycenter/photo/lingerie/<<rand(1,2)>>.mp4"></video></center>'
  218. 'You put on some sexy lingerie and spend the next two hours striking various poses for a photographer.'
  219. if pcs_mdlng < 20:
  220. act'Continue':
  221. cla
  222. *nl
  223. 'It''s hard to show off the beauty of the lingerie without just making the shoot all about you and your body''s physical attractiveness instead. Not that you personally mind, but the photographer says it''s important for the companies selling the clothing.'
  224. act'Continue':
  225. cla & *clr
  226. *nl
  227. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  228. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  229. act 'Leave':gt 'foto', 'end'
  230. end
  231. end
  232. else
  233. act'Continue':
  234. cla & *clr
  235. *nl
  236. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  237. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  238. if pcs_mdlng >= 40 and commercial = 0:
  239. act 'Leave':gt'foto_events','commercial'
  240. else
  241. act 'Leave':gt 'foto', 'end'
  242. end
  243. end
  244. end
  245. end
  246. end
  247. end
  248. end
  249. if $ARGS[0] = 'sexy':
  250. act 'Sexy clothing':
  251. cla
  252. act 'Maybe not today':gt 'foto','studio'
  253. if pcs_inhib < 30:
  254. act 'Practice (2:00)':
  255. *clr & cla
  256. minut += 120
  257. modelpayfin = 0
  258. gs 'exp_gain', 'mdlng', 1
  259. inhib_exp += rand(1,4)
  260. gs 'stat'
  261. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/photo/sexy/<<rand(1,12)>>.jpg"></center>'
  262. 'Exposing your breasts for the world to see is a step up from just modelling lingerie and it still isn''t something you''re willing to do. But this is practice so it isn''t going to be published anywhere and the photographers are recommending it to you so you can feel more comfortable on set.'
  263. 'You put on some loose clothing and give it a go. The next two hours are filled with instructions from the photographer and clicks from the camera with your nipples occasionally slipping out.'
  264. if pcs_mdlng < 20:
  265. act'Continue':
  266. cla
  267. *nl
  268. 'You''re having difficulty getting in the poses the photographer wants you in. You know that it''s because you''re subconsciously still trying to hide your breasts when the photographer wants them visible. It''s embarrassing after all...'
  269. act'Continue':
  270. *clr & cla
  271. *nl
  272. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  273. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  274. act 'Leave':gt 'foto', 'end'
  275. end
  276. end
  277. else
  278. act'Continue':
  279. *clr & cla
  280. *nl
  281. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  282. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  283. if pcs_mdlng >= 40 and commercial = 0:
  284. act 'Leave':gt'foto_events','commercial'
  285. else
  286. act 'Leave':gt 'foto', 'end'
  287. end
  288. end
  289. end
  290. end
  291. else
  292. act 'Practice (2:00)':
  293. *clr & cla
  294. minut += 120
  295. modelpayfin = 0
  296. gs 'exp_gain', 'mdlng', rand(5,8)
  297. inhib_exp += 2
  298. gs 'stat'
  299. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/photo/sexy/<<rand(1,12)>>.jpg"></center>'
  300. 'You dressed up in loose clothes and spend the next two hours striking various poses for a photographer, your nipples occasionally slipping out.'
  301. if pcs_mdlng < 20:
  302. act'Continue':
  303. cla
  304. *nl
  305. 'You''re having difficulty getting in the poses the photographer wants you in. You haven''t quite figured out the best methods of subtly exposing your breasts in a way that''s visually appealing and not just a regular nip slip.'
  306. act'Continue':
  307. cla & *clr
  308. *nl
  309. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  310. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  311. act 'Leave':gt 'foto', 'end'
  312. end
  313. end
  314. else
  315. act'Continue':
  316. cla & *clr
  317. *nl
  318. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  319. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  320. if pcs_mdlng >= 40 and commercial = 0:
  321. act 'Leave':gt'foto_events','commercial'
  322. else
  323. act 'Leave':gt 'foto', 'end'
  324. end
  325. end
  326. end
  327. end
  328. end
  329. end
  330. end
  331. if $ARGS[0] = 'transparent':
  332. act 'Transparent clothing that exposes your breasts':
  333. cla
  334. act 'Maybe not today':gt 'foto','studio'
  335. if pcs_inhib < 40:
  336. act 'Practice (2:00)':
  337. *clr & cla
  338. minut += 120
  339. modelpayfin = 0
  340. gs 'exp_gain', 'mdlng', 1
  341. inhib_exp += rand(1,4)
  342. gs 'stat'
  343. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/photo/seethru/<<rand(1,9)>>.jpg"><img <<$set_imgh>> src="images/locations/city/citycenter/photo/seethru2.jpg"></center>'
  344. 'In one way, this is better than actually showing your bare nipples. In another way, it''s worse because even though the fabric covers them, the thinness of it completely exposes your breasts. Every flash from the camera feels like it pierces through you, highlighting not your body but specifically your breasts, as if you were truly naked.'
  345. act'Continue':
  346. *clr & cla
  347. *nl
  348. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  349. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  350. if pcs_mdlng >= 40 and commercial = 0:
  351. act 'Leave':gt'foto_events','commercial'
  352. else
  353. act 'Leave':gt 'foto', 'end'
  354. end
  355. end
  356. end
  357. else
  358. act 'Practice (2:00)':
  359. *clr & cla
  360. minut += 120
  361. modelpayfin = 0
  362. gs 'exp_gain', 'mdlng', 1
  363. inhib_exp += rand(1,4)
  364. gs 'stat'
  365. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/photo/seethru/<<rand(1,9)>>.jpg"><img <<$set_imgh>> src="images/locations/city/citycenter/photo/seethru2.jpg"></center>'
  366. 'You feel like practicing something risqué today without being completely nude. You pick out a transparent top and go to the practice set.'
  367. *nl
  368. 'You spend two hours posing for the photographer, learning the best ways to make a see-through top work for you and make you look even sexier.'
  369. act'Continue':
  370. *clr & cla
  371. *nl
  372. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  373. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  374. if pcs_mdlng >= 40 and commercial = 0:
  375. act 'Leave':gt'foto_events','commercial'
  376. else
  377. act 'Leave':gt 'foto', 'end'
  378. end
  379. end
  380. end
  381. end
  382. end
  383. end
  384. if $ARGS[0] = 'trans_ling':
  385. act 'Transparent Lingerie':
  386. cla
  387. act 'Not for me':gt 'foto','studio'
  388. if pcs_inhib < 55:
  389. act 'Practice (2:00)':
  390. *clr & cla
  391. minut += 120
  392. modelpayfin = 0
  393. gs 'exp_gain', 'mdlng', 1
  394. inhib_exp += rand(1,2)
  395. gs 'stat'
  396. '<center><video autoplay loop src="images/locations/city/citycenter/photo/ling_trans/<<rand(1,3)>>.mp4"></video></center>'
  397. 'It''s okay... It''s just like a normal lingerie shoot... Except that your nipples will be clearly visible. That makes it just like a topless so it''s fine right? Even though the transparent lace feels more exposing than being topless...'
  398. 'You slip into the lacy underwear and spend the next two hours practicing poses with the photographer.'
  399. if pcs_mdlng < 20:
  400. act'Continue':
  401. cla
  402. *nl
  403. 'Each time the camera clicks, you give a small yelp, shielding your nipples from the flash that threatens to highlight them by turning your back. The sighs of the photographer from behind the camera are very audible.'
  404. 'You''re going to have to work on your basic confidence as a model if you want to start confronting your confidence in your own body.'
  405. act'Continue':
  406. *clr & cla
  407. *nl
  408. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  409. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  410. act 'Leave':gt 'foto', 'end'
  411. end
  412. end
  413. else
  414. act'Continue':
  415. *clr & cla
  416. *nl
  417. inhib_exp += rand(1,3)
  418. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  419. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  420. *nl
  421. 'You have the discipline to not turn or shy your body away from the camera to hide yourself, but your expressions are very rigid and sometimes awkward. Maybe you need to work more on your confidence in your body before you''ll be able to progress here.'
  422. if pcs_mdlng >= 40 and commercial = 0:
  423. act 'Leave':gt'foto_events','commercial'
  424. else
  425. act 'Leave':gt 'foto', 'end'
  426. end
  427. end
  428. end
  429. end
  430. else
  431. act 'Practice (2:00)':
  432. *clr & cla
  433. minut += 120
  434. modelpayfin = 0
  435. gs 'exp_gain', 'mdlng', rand(8,10)
  436. inhib_exp += 4
  437. gs 'stat'
  438. '<center><video autoplay loop src="images/locations/city/citycenter/photo/ling_trans/<<rand(1,3)>>.mp4"></video></center>'
  439. 'You put on some lacy underwear and spend the next two hours practicing poses with the photographer.'
  440. if pcs_mdlng < 20:
  441. act'Continue':
  442. cla
  443. *nl
  444. 'As the shoot progresses, you find it difficult surprisingly difficult to use the lingerie to your advantage. Despite its inherent seductiveness, there are certain poses and postures that you need to be in to fully accentuate what you''re trying to show off underneath. You probably need more practice.'
  445. act'Continue':
  446. *clr & cla
  447. *nl
  448. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  449. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  450. act 'Leave':gt 'foto', 'end'
  451. end
  452. end
  453. else
  454. act'Continue':
  455. *clr & cla
  456. *nl
  457. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  458. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  459. if pcs_mdlng >= 40 and commercial = 0:
  460. act 'Leave':gt'foto_events','commercial'
  461. else
  462. act 'Leave':gt 'foto', 'end'
  463. end
  464. end
  465. end
  466. end
  467. end
  468. end
  469. end
  470. if $ARGS[0] = 'topless':
  471. act 'Topless':
  472. cla
  473. act 'Maybe not today':gt 'foto','studio'
  474. if pcs_inhib < 50:
  475. act 'Practice (2:00)':
  476. *clr & cla
  477. minut += 120
  478. modelpayfin = 0
  479. gs 'exp_gain', 'mdlng', 1
  480. inhib_exp += rand(2,5)
  481. gs 'stat'
  482. '<center><video autoplay loop src="images/locations/city/citycenter/photo/model4.mp4"></video></center>'
  483. 'A topless shoot without even a bikini or a loose shirt to hide your breasts... Unthinkable that you could ever do it for real! But it''s only a practice shoot right now. You''re not comfortable with it, but if you want to grow as a model, this is what you have to do.'
  484. *nl
  485. 'You put on the bottoms the photographer chose for you and omit a top leaving your breasts exposed. You spend two hours striking various poses with breasts uncovered and listen to instruction while the photographer takes pictures of you.'
  486. if pcs_inhib < 20:
  487. act'Continue':
  488. cla & *clr
  489. '<center><video autoplay loop src="images/locations/city/citycenter/photo/nudepractice3.mp4"></video></center>'
  490. 'You try your best to follow the photographers instructions but your nerves are palpable. Every time the camera clicks, you jolt, body rigid, panic coursing through you. If you even want to consider do a topless shoot, you need to be more bold.'
  491. act'Continue':
  492. *clr & cla
  493. *nl
  494. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  495. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  496. act 'Leave':gt 'foto', 'end'
  497. end
  498. end
  499. else
  500. act'Continue':
  501. *clr & cla
  502. *nl
  503. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  504. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  505. if pcs_mdlng >= 40 and commercial = 0:
  506. act 'Leave':gt'foto_events','commercial'
  507. else
  508. act 'Leave':gt 'foto', 'end'
  509. end
  510. end
  511. end
  512. end
  513. else
  514. act 'Practice (2:00)':
  515. *clr & cla
  516. minut += 120
  517. modelpayfin = 0
  518. gs 'exp_gain', 'mdlng', rand(6,10)
  519. inhib_exp += 3
  520. gs 'stat'
  521. '<center><video autoplay loop src="images/locations/city/citycenter/photo/model4.mp4"></video></center>'
  522. 'You put on the bottoms the photographer chose for you and omit a top leaving your breasts exposed. You spend two hours striking various poses, covering and uncovering your breasts, and listen to instruction while the photographer takes pictures of you.'
  523. if pcs_mdlng < 20:
  524. act'Continue':
  525. cla
  526. *nl
  527. 'You try your best to follow the photographers instructions but your movements are more than a little stiff. You get the feeling you aren''t being very sexy when you are hiding <i>or</i> revealing your breasts.'
  528. act'Continue':
  529. *clr & cla
  530. *nl
  531. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  532. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  533. act 'Leave':gt 'foto', 'end'
  534. end
  535. end
  536. else
  537. act'Continue':
  538. *clr & cla
  539. *nl
  540. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  541. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  542. if pcs_mdlng >= 40 and commercial = 0:
  543. act 'Leave':gt'foto_events','commercial'
  544. else
  545. act 'Leave':gt 'foto', 'end'
  546. end
  547. end
  548. end
  549. end
  550. end
  551. end
  552. end
  553. if $ARGS[0] = 'tasteful':
  554. end
  555. if $ARGS[0] = 'topless_nude':
  556. end
  557. if $ARGS[0] = 'nude':
  558. act 'Nude':
  559. cla
  560. act 'Maybe not today':gt 'foto','studio'
  561. act 'Practice (2:00)':
  562. *clr & cla
  563. minut += 120
  564. modelpayfin = 0
  565. pcs_mood += 5
  566. if pcs_inhib < 60:
  567. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/photo/fotograph.jpg"></center>'
  568. 'You start to step onto the set before the photographer stops you.'
  569. '"Hey, I''ve been watching you from time to time and I couldn''t help but notice that you still seem a little uncomfortable being naked in the studio. I also took the liberty of looking up your past shoots and I noticed you haven''t done any nude shoots yet either.'
  570. 'You blush hard, cringing a little bit and checking yourself when you unconsciously trying to cover up your exposed nipples and pussy.'
  571. '"Y-yeah. I guess I''m still not used to this kind of thing. Part of why I''m practicing these kinds of shoots is to get a little more comfortable being naked."'
  572. 'The photographer nods. "Yeah, I thought as much. With that in mind, I thought we''d do a confidence building exercise instead of a normal practice shoot to help you get used to being on camera. It''ll feel a little silly, but we think you''ll get used to being comfortable in your own body a lot faster. Sound good?"'
  573. act'No thanks':
  574. cla & *clr
  575. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/photo/fotograph.jpg"></center>'
  576. '"Thanks for the offer, but I think I''d rather just try to practice the normal way."'
  577. '"Well, if you''re sure. But I''m telling you, it won''t help very much until you''re more comfortable."'
  578. act'Continue':
  579. cla & *clr
  580. gs 'exp_gain', 'mdlng', rand(1,3)
  581. inhib_exp += 1
  582. gs 'stat'
  583. '<center><video autoplay loop src="images/locations/city/citycenter/photo/nudepractice3.mp4"></video></center>'
  584. 'You hate to admit it, but he''s right. You keep holding yourself too stiff, striking the wrong pose, not paying attention to your expression, and a myriad of other mistakes. Every time the camera flashes, you feel panic course through your entire body, and you''re sure it shows.'
  585. *nl
  586. 'Two hours later, you don''t feel like you learned very much and you don''t feel much more confident in your body either.'
  587. act'End practice':gt'foto','end'
  588. end
  589. end
  590. act'Yes':
  591. cla & *clr
  592. gs 'exp_gain', 'mdlng', 1
  593. gs 'stat'
  594. '<center><video autoplay loop src="images/locations/city/citycenter/photo/nudepractice2.mp4"></video></center>'
  595. if pcs_inhib >= 60:
  596. gs 'sweat', 'add', 20
  597. pcs_mood += 10
  598. pcs_stam -= 20
  599. inhib_exp += 10
  600. gs'stat'
  601. 'You nod and he leads you onto the set, setting up a video camera in front.'
  602. 'Loud music starts to pump into the room and over the noise the photographer shouts at you to start jumping up and down and dance in front of the camera.'
  603. 'You do as he says, getting into it. Though at first you feel a bit dumb, within minutes you''ve almost forgotten your nakedness and start having a surprising amount of fun just jumping up and down and generally being silly.'
  604. 'The next two hours pass with intervals of resting and dancing and before you know it, your practice is over.'
  605. *nl
  606. if pcs_inhib < 60:'You''re tired and you''re sweaty, but you also feel pretty good, and <i>a lot</i> more confident in your body.'
  607. if pcs_inhib >= 60:'The photographer comes over to you, asking how you feel it went. You start to answer him when you notice how straight you''re standing. As you talk more and more and the discussion turns to how your breasts bounced, you realize you don''t feel any embarrassment talking about your body. In fact, you don''t have any desire to cover yourself up at all. The exercise worked! You''re comfortable being naked!'
  608. act'End practice':gt'foto','end'
  609. else
  610. 'Loud music starts to pump into the room and over the noise the photographer shouts at you to start jumping up and down and dance in front of the camera.'
  611. 'You do as he says, feeling rather silly, like he said you would. You must have had some kind of expression on your face because he shouts at you again.'
  612. '"Smile! Laugh! Have a good time!"'
  613. 'You try your best to comply, breasts bouncing up and down, hair flying all over the place, still feeling dumb.'
  614. act'Continue':
  615. cla & *clr
  616. '<center><video autoplay loop src="images/locations/city/citycenter/photo/nudepractice2.mp4"></video></center>'
  617. 'As you keep dancing and more and more time passes, you realize... you''re actually starting to enjoy yourself!'
  618. 'Your dancing continues and you still feel silly but now in a good way. You''re having so much fun that you suddenly realize that you forgot you were naked!'
  619. act'Continue':
  620. inhib_exp += 10
  621. gs'stat'
  622. cla & *clr
  623. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/photo/foto.jpg"></center>'
  624. 'The music stops abruptly and you lean on your knees, a bit winded. The photographer comes up to you.'
  625. '"So, how''re you feeling?"'
  626. 'Face flushed from the jumping, you smile back at him.'
  627. '"Great! I actually almost forgot I was naked for a minute there! This is really working!" Already, you don''t feel as shy standing in front of him and the rest of the crew.'
  628. '"Glad to hear it''s working. We''ll take a short break now, alternating between intervals of you dancing and resting. This is just a practice shoot and we can''t reasonably ask you to jump up and down for two hours, so take a breather. We''ll start the music back up soon enough."'
  629. act'Continue':
  630. cla & *clr
  631. gs 'sweat', 'add', 20
  632. pcs_mood += 10
  633. pcs_stam -= 20
  634. gs'stat'
  635. '<center><video autoplay loop src="images/locations/city/citycenter/photo/nudepractice2.mp4"></video></center>'
  636. 'You spend the rest of the two hours jumping up and down, laughing, and generally having fun. At the end of it, you''re tired and a bit sweaty, but you also feel a lot more confident about being naked.'
  637. act'End practice':gt'foto','end'
  638. end
  639. end
  640. end
  641. end
  642. end
  643. else
  644. gs 'exp_gain', 'mdlng', rand(9,10)
  645. inhib_exp += 2
  646. gs 'stat'
  647. '<center><video autoplay loop src="images/locations/city/citycenter/photo/nudepractice.mp4"></video></center>'
  648. 'You spend a good portion of the next two hours laughing with the photographer and the rest of the staff, practicing the ridiculous and convoluted poses required for nude modelling.'
  649. if pcs_mdlng < 20:
  650. act'Continue':
  651. cla
  652. *nl
  653. 'Without clothes, the shoot becomes all about posture. You''re very comfortable and confident in your body, but you never realized how much of an advantage clothes were for making yourself sexier on camera and how straining it can be to pose in ways that compensate. This is going to take some getting used to.'
  654. act'Continue':
  655. cla & *clr
  656. *nl
  657. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  658. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  659. act 'Leave':gt 'foto', 'end'
  660. end
  661. end
  662. else
  663. act'Continue':
  664. cla & *clr
  665. *nl
  666. '<center><video autoplay loop src="images/locations/city/citycenter/photo/modelbts2.mp4"></video></center>'
  667. 'The practice shoot ends and he calls you over to his computer to show you what you need to work on.'
  668. if pcs_mdlng >= 40 and commercial = 0:
  669. act 'Leave':gt'foto_events','commercial'
  670. else
  671. act 'Leave':gt 'foto', 'end'
  672. end
  673. end
  674. end
  675. end
  676. end
  677. end
  678. end
  679. --- foto_practice ---------------------------------