obj_din.qsrc 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352
  1. # obj_din
  2. if $ARGS[0] = 'chartabs':
  3. cla
  4. !0: Character
  5. !1: Skills
  6. !2: Stats
  7. !4: Pain
  8. !5: Traits
  9. !6: Renown
  10. !7: Magic
  11. $tabsname[] = 'Character'
  12. $tabsaction[] = 'menu_page = 0 & gs ''obj_din'', ''description'''
  13. $tabsname[] = 'Skills'
  14. $tabsaction[] = 'menu_page = 1 & gs ''obj_din'', ''skills'''
  15. $tabsname[] = 'Statistics'
  16. $tabsaction[] = 'menu_page = 2 & gs ''obj_din'', ''stats'''
  17. $tabsname[] = 'Pain'
  18. $tabsaction[] = 'menu_page = 3 & gs ''obj_din'', ''pain'''
  19. $tabsname[] = 'Traits'
  20. $tabsaction[] = 'menu_page = 4 & gs ''traits'', ''menu'''
  21. $tabsname[] = 'Renown'
  22. $tabsaction[] = 'menu_page = 5 & gs ''obj_din'', ''reputation'''
  23. if $start_type[1] ! 'nomagic':
  24. $tabsname[] = 'Magic'
  25. $tabsaction[] = 'menu_page = 6 & gs ''obj_din'', ''magic'''
  26. end
  27. gs 'tabhead',menu_page
  28. act 'Exit the menu': gs 'obj_din', 'menu_exit' & gt $menu_loc, $menu_arg
  29. end
  30. if $ARGS[0] = 'bodytabs':
  31. cla
  32. !0: Face
  33. !1: Body
  34. !2: Clothes
  35. !3: Bra
  36. !4: Panties
  37. !5: Shoes
  38. !6: Tattoos
  39. !7: Magic
  40. $tabsname[] = 'Looks'
  41. $tabsaction[] = 'menu_page = 0 & gs ''obj_din'', ''face'''
  42. $tabsname[] = 'Body'
  43. $tabsaction[] = 'menu_page = 1 & gs ''obj_din'', ''body'''
  44. $tabsname[] = 'Clothes'
  45. $tabsaction[] = 'menu_page = 2 & gs ''obj_din'', ''clothes'''
  46. $tabsname[] = 'Bra'
  47. $tabsaction[] = 'menu_page = 3 & gs ''obj_din'', ''bra'''
  48. $tabsname[] = 'Panties'
  49. $tabsaction[] = 'menu_page = 4 & gs ''obj_din'', ''panties'''
  50. $tabsname[] = 'Shoes'
  51. $tabsaction[] = 'menu_page = 5 & gs ''obj_din'', ''shoes'''
  52. $tabsname[] = 'Tattoos'
  53. $tabsaction[] = 'menu_page = 6 & gs ''obj_din'', ''tattoos'''
  54. $tabsname[] = 'Piercings'
  55. $tabsaction[] = 'menu_page = 7 & gs ''obj_din'', ''piercing'''
  56. gs 'tabhead',menu_page
  57. act 'Exit the menu': gs 'obj_din', 'menu_exit' & gt $menu_loc, $menu_arg
  58. end
  59. if $ARGS[0] = 'settingtabs':
  60. cla
  61. !0: Gameplay
  62. !1: Display
  63. !2: Status
  64. !3: Phone
  65. !4: Mods
  66. !5: About
  67. $tabsname[] = 'Gameplay Settings'
  68. $tabsaction[] = 'menu_page = 0 & dynamic $cheatmenu[''setting'']'
  69. $tabsname[] = 'Display Settings'
  70. $tabsaction[] = 'menu_page = 1 & dynamic $cheatmenu[''display'']'
  71. $tabsname[] = 'Status Window Settings'
  72. $tabsaction[] = 'menu_page = 2 & dynamic $cheatmenu[''status'']'
  73. if settingmode ! 1:
  74. $tabsname[] = 'Phone Theme Settings'
  75. $tabsaction[] = 'menu_page = 3 & dynamic $cheatmenu[''theme'']'
  76. $tabsname[] = 'Mods'
  77. $tabsaction[] = 'menu_page = 4 & gt ''mod_setting'''
  78. $tabsname[] = 'About'
  79. $tabsaction[] = 'menu_page = 5 & dynamic $cheatmenu[''about'']'
  80. else
  81. $tabsname[] = 'Mods'
  82. $tabsaction[] = 'menu_page = 3 & gt ''mod_setting'''
  83. $tabsname[] = 'About'
  84. $tabsaction[] = 'menu_page = 4 & dynamic $cheatmenu[''about'']'
  85. end
  86. gs 'tabhead',menu_page
  87. if settingmode = 1:
  88. act '<center><b>Return to character creation</b></center>':
  89. killvar 'menu_page'
  90. settingmode = 0
  91. gt 'begin', 'start'
  92. end
  93. else
  94. !call from Menu - Game settings
  95. act 'Enter cheat menu': killvar 'menu_page' & gs '$menu_cheat'
  96. act 'Get Game Settings': killvar 'menu_page' & gt 'initg', 'get_game_set'
  97. act 'Set Game Settings': killvar 'menu_page' & gt 'initg', 'set_game_set'
  98. act 'Emergency Exit': gs 'obj_din', 'menu_exit' & gt 'obj_din', 'emergency'
  99. act 'Exit the menu': gs 'obj_din', 'menu_exit' & gt $menu_loc, $menu_arg
  100. end
  101. end
  102. if $ARGS[0] = 'cheattabs':
  103. cla
  104. !0: Index
  105. !1: Recurrent
  106. !2: State
  107. !3: Appearance
  108. !4: Skill
  109. !5: Relationships
  110. !6: Documents
  111. !7: Magic
  112. !8: Time
  113. !9: NPCChanger
  114. !10: Pain
  115. !11: DNA
  116. !12: ImageSets
  117. !13: Items
  118. !14: fame
  119. '<center><b><table width="90%" cellspacing="0" cellpadding="10" align="center" valign="top"><tr>'
  120. if menu_page = 0:
  121. $cheat_tab_list = '<th>Index</th>'
  122. else
  123. $cheat_tab_list = '<th><a href="exec:menu_page = 0 & dynamic $cheatmenu[''index'']">Index</a></th>'
  124. end
  125. if menu_page = 1:
  126. $cheat_tab_list += '<th>Recurrent</th>'
  127. else
  128. $cheat_tab_list += '<th><a href="exec:menu_page = 1 & dynamic $cheatmenu[''permanent'']">Recurrent</a></th>'
  129. end
  130. if menu_page = 2:
  131. $cheat_tab_list += '<th>State</th>'
  132. else
  133. $cheat_tab_list += '<th><a href="exec:menu_page = 2 & dynamic $cheatmenu[''state'']">State</a></th>'
  134. end
  135. if menu_page = 3:
  136. $cheat_tab_list += '<th>Appearance</th>'
  137. else
  138. $cheat_tab_list += '<th><a href="exec:menu_page = 3 & dynamic $cheatmenu[''looks'']">Appearance</a></th>'
  139. end
  140. if menu_page = 4:
  141. $cheat_tab_list += '<th>Skill</th>'
  142. else
  143. $cheat_tab_list += '<th><a href="exec:menu_page = 4 & dynamic $cheatmenu[''stats'']">Skill</a></th>'
  144. end
  145. $cheat_tab_list += '<tr>'
  146. if menu_page = 5:
  147. $cheat_tab_list += '<th>Relationships</th>'
  148. else
  149. $cheat_tab_list += '<th><a href="exec:menu_page = 5 & dynamic $cheatmenu[''reputation'']">Relationships</a></th>'
  150. end
  151. if menu_page = 6:
  152. $cheat_tab_list += '<th>Documents</th>'
  153. else
  154. $cheat_tab_list += '<th><a href="exec:menu_page = 6 & dynamic $cheatmenu[''documents'']">Documents</a></th>'
  155. end
  156. if menu_page = 7:
  157. if $start_type[1] = 'nomagic':
  158. $cheat_tab_list += ''
  159. else
  160. $cheat_tab_list += '<th>Magic</th>'
  161. end
  162. else
  163. if $start_type[1] = 'nomagic':
  164. $cheat_tab_list += ''
  165. else
  166. $cheat_tab_list += '<th><a href="exec:menu_page = 7 & dynamic $cheatmenu[''magic'']">Magic</a></th>'
  167. end
  168. end
  169. if menu_page = 8:
  170. $cheat_tab_list += '<th>Time</th>'
  171. else
  172. $cheat_tab_list += '<th><a href="exec:menu_page = 8 & dynamic $cheatmenu[''time'']">Time</a></th>'
  173. end
  174. if menu_page = 9:
  175. $cheat_tab_list += '<th>NPC Editor</th>'
  176. else
  177. $cheat_tab_list += '<th><a href="exec:menu_page = 9 & gs ''NPCChanger'', ''Start''">NPC Editor</a></th>'
  178. end
  179. if menu_page = 15:
  180. $cheat_tab_list += '<th>NPC Finder</th>'
  181. else
  182. $cheat_tab_list += '<th><a href="exec:menu_page = 15 & gs ''npc_finder''">NPC Finder</a></th>'
  183. end
  184. $cheat_tab_list += '<tr>'
  185. if menu_page = 10:
  186. $cheat_tab_list += '<th>Pain</th>'
  187. else
  188. $cheat_tab_list += '<th><a href="exec:menu_page = 10 & dynamic $cheatmenu[''pain'']">Pain</a></th>'
  189. end
  190. if menu_page = 11:
  191. $cheat_tab_list += '<th>DNA</th>'
  192. else
  193. $cheat_tab_list += '<th><a href="exec:menu_page = 11 & dynamic $cheatmenu[''DNA'']">DNA</a></th>'
  194. end
  195. if menu_page = 12:
  196. $cheat_tab_list += '<th>Image Sets</th>'
  197. else
  198. $cheat_tab_list += '<th><a href="exec:menu_page = 12 & dynamic $cheatmenu[''bdimmain'']">Image Sets</a></th>'
  199. end
  200. if menu_page = 13:
  201. $cheat_tab_list += '<th>Items</th>'
  202. else
  203. $cheat_tab_list += '<th><a href="exec:menu_page = 13 & dynamic $cheatmenu[''items'']">Items</a></th>'
  204. end
  205. if menu_page = 14:
  206. $cheat_tab_list += '<th>Fame</th>'
  207. else
  208. $cheat_tab_list += '<th><a href="exec:menu_page = 14 & dynamic $cheatmenu[''fame'']">Fame</a></th>'
  209. end
  210. $cheat_tab_list += '</table></b></center>'
  211. $cheat_tab_list
  212. act 'Settings menu': gs 'obj_din', 'menu_exit' & gs '$menu_setting'
  213. act 'Emergency Exit': gs 'obj_din', 'menu_exit' & gt 'obj_din', 'emergency'
  214. act 'Exit the menu': gs 'obj_din', 'menu_exit' & gt $menu_loc, $menu_arg
  215. end
  216. if $ARGS[0] = 'menu_exit':
  217. settingmode = 0
  218. menu_off = 0
  219. killvar 'cheatmenu'
  220. killvar 'menu_page'
  221. end
  222. if $ARGS[0] = 'menu_disabled': '<font color="red"><b>Menu is disabled for this event</b></font>'
  223. if $ARGS[0] = 'description':
  224. *clr & cla
  225. $BACKIMAGE = ''
  226. gs 'obj_din','chartabs'
  227. gs 'AppearanceSystem'
  228. gs 'body_desc'
  229. !'<center><img src="images/system/icons/description.png"><br></center>'
  230. '<center><h1>Character Description</h1></center>'
  231. '<center><table width="90%" cellspacing="0" cellpadding="20" valign="top"><tr><td>'
  232. 'Your name is <<$pcs_firstname>> <<$pcs_lastname>>.'
  233. !!!0.2.6 extension
  234. if mid($start_type,1,2) = 'sg':
  235. 'Your friends and family call you <<$pcs_nickname>>.'
  236. else
  237. 'Your friends call you <<$pcs_nickname>>.'
  238. end
  239. 'Your start background is: ' + $start_type['cat']
  240. !!!
  241. *nl
  242. if func('homes_properties', 'get_accessible_property_count') = 0:
  243. 'You have nowhere to live, if this is an error, you can set your current home <a href="exec:gs ''obj_din'', ''current_home''">here</a>.'
  244. elseif $home['current'] = '':
  245. 'You don''t have a current home set. If this is an error, you can set your current home <a href="exec:gs ''obj_din'', ''current_home''">here</a>.'
  246. else
  247. 'Your current home is <a href="exec:gs ''obj_din'', ''current_home''"><<$home[''name'']>></a>.'
  248. end
  249. if succubusflag = 1 and sucpcinfo >= 4:
  250. 'You are a Succubus.'
  251. 'Succubus Level: <<succublvl>>'
  252. end
  253. if age = vidage:
  254. 'You are <<age>> years old.'
  255. else
  256. 'You are <<age>> years old, but you appear to be <<vidage>>.'
  257. end
  258. if birthday <= 9 and birthmonth <= 9:
  259. $birthdayD = '0<<birthday>>.0<<birthmonth>>.<<birthyear>>.'
  260. elseif birthday > 9 and birthmonth <= 9:
  261. $birthdayD = '<<birthday>>.0<<birthmonth>>.<<birthyear>>.'
  262. elseif birthday > 9 and birthmonth > 9:
  263. $birthdayD = '<<birthday>>.<<birthmonth>>.<<birthyear>>.'
  264. else
  265. $birthdayD = '0<<birthday>>.<<birthmonth>>.<<birthyear>>.'
  266. end
  267. 'Your date of birth is <<$birthdayD>>'
  268. *nl
  269. '<<$pcs_apprnc>>'
  270. *nl
  271. 'You are <<pcs_hgt>>cm tall and <a href="exec:gs ''obj_din'', ''show_body''"><<$bodyVars[''desc'']>></a>.'
  272. 'Your breasts would be considered an EU <a href="exec:gs ''obj_din'', ''show_tits''"><<$titsize>></a>.'
  273. '<<$nipplesize>>'
  274. *nl
  275. if preg = 1:
  276. if denypreg = 1 and pregchem > 2688:
  277. 'You seem to be putting on a bit of weight, your belly is definitely bigger.'
  278. *nl
  279. elseif pregchem > 4704:
  280. 'You''re rapidly approaching the finish line and have entered the third trimester. Your belly is so big now that you can barely remember what your toes look like. Your back hurts most of the time and it is a struggle to get to your feet if you sit down. The baby seems to think that your bladder makes a nice punching bag.'
  281. *nl
  282. elseif pregchem > 3696:
  283. 'Your belly is quite swollen now and shows under even the loosest of clothes. You find yourself constantly caressing your belly without realizing it.'
  284. *nl
  285. elseif pregchem > 3192 and knowpreg = 1:
  286. 'You are showing for sure now. Your tummy is starting to become rounder as it grows larger each day, although you can still wear baggy clothes to hide it. At least the morning sickness and nausea seem to have gone away for the most part.'
  287. *nl
  288. elseif pregchem > 3192 and knowpreg = 0:
  289. 'You can''t seem to stop gaining weight and your belly looks like it is getting bigger everyday, although you can still wear baggy clothes to hide it. At least the flu you''ve been fighting lately seems to have finally gone away for the most part.'
  290. *nl
  291. elseif pregchem > 1800 and knowpreg = 1:
  292. iif(lactation['growthsoreness_on']>0,'Your breasts look and feel swollen and tingle at the slightest touch. ','') + 'Waking up is getting harder to do and it takes you longer to get going in the morning. Lately, just the thought of food is enough to turn your stomach.'
  293. *nl
  294. elseif pregchem > 1800 and knowpreg = 0:
  295. iif(lactation['growthsoreness_on']>0,'Your breasts look and feel swollen and tingle at the slightest touch. ','') + 'Waking up is getting harder to do and it takes you longer to get going in the morning. Lately, just the thought of food is enough to turn your stomach.'
  296. *nl
  297. elseif pregchem > 1200 and lactation['preggrowth'] > 0:
  298. 'You''ve noticed that your breasts seem firmer lately and your nipples seem to be sticking out more.'
  299. *nl
  300. end
  301. end
  302. '<<$lip>>'
  303. '<<$pcs_throat>>'
  304. '<<$skin>>'
  305. '<<$glaza>>'
  306. '<<$pcs_makeup>>.'
  307. '<<$pcs_leghair>>'
  308. '<<$pcs_pubes>>'
  309. '<<$pcs_vag>>'
  310. '<<$pcs_butt>>'
  311. '<<$pcs_ass>>'
  312. *nl
  313. if avatar_hair = 1:
  314. 'Your hair: <<$av_hair>>.'
  315. else
  316. '<<$hair>>'
  317. end
  318. if defcurly = 0 and curly > 0: 'Your curls are good for another <<curly>> days.'
  319. if defcurly = 1 and straight > 0: 'Your hair should be straight for another <<straight>> days.'
  320. *nl
  321. if pcs_mass['body'] < 10 and strenbuf > 0 and dounspell = 0: '<b><font color="red">You are showing signs of malnourishment. You should probably eat more and more often.</font></b>'
  322. if pcs_mass['body'] < 10 and strenbuf = 0 and dounspell = 0: '<b><font color="red">You are dangerously malnourished, which has led to a loss in muscle mass. You''re in a critical condition and likely to pass out!</font></b>'
  323. if pcs_missing_teeth = 1:
  324. 'You have lost <<pcs_missing_teeth>> <a href="exec:gs ''obj_din'', ''show_missing_teeth''">tooth</a>.'
  325. elseif pcs_missing_teeth >= 2:
  326. 'You have lost <<pcs_missing_teeth>> <a href="exec:gs ''obj_din'', ''show_missing_teeth''">teeth</a>.'
  327. end
  328. if pcs_brace = 1:
  329. 'You are wearing a brace on your <a href="exec:gs ''obj_din'', ''show_teeth''">teeth</a> .'
  330. elseif pcs_teeth = -1:
  331. 'You have a perfect white <a href="exec:gs ''obj_din'', ''show_teeth''">smile</a>.'
  332. elseif pcs_teeth > 0:
  333. 'Your <a href="exec:gs ''obj_din'', ''show_teeth''">teeth</a> are not straight at all. It might be a good idea to see a dentist to straighten them.'
  334. else
  335. 'Your <a href="exec:gs ''obj_din'', ''show_teeth''">teeth</a> are miscoloured. It might be a good idea to see a dentist to get them cleaned up.'
  336. end
  337. !! 'pcs_apprnc <<pcs_apprnc>>'
  338. !! 'curlykoef <<curlykoef>> a maximum of 1'
  339. !! 'tits <<tits>> A maximum of 6'
  340. !! 'pcs_lip <<pcs_lip>> a maximum of 4'
  341. !! 'tanKoef <<tanKoef>> a maximum of 1'
  342. !! 'skin <<skin>> a maximum of 4'
  343. !! 'pcs_makeup <<pcs_makeup>> a maximum of 6'
  344. !! 'pcs_lashes <<pcs_lashes>> a maximum of 2'
  345. !! 'pcs_eyesize <<pcs_eyesize>> a maximum of 3'
  346. !! 'bodykoef <<bodykoef>> a maximum of 8'
  347. !! 'lobkoef <<lobkoef>> a maximum of 3'
  348. !! 'odevnesh <<odevnesh>> a maximum of 15'
  349. !! 'pcs_sweat <<pcs_sweat>> the maximum 0'
  350. !! 'pcs_hairbsh <<pcs_hairbsh>> a maximum of 1'
  351. '</td></tr></table></center>'
  352. end
  353. if $ARGS[0] = 'current_home':
  354. *clr & cla
  355. !'<center><img src="images/system/icons/description.png"><br></center>'
  356. '<center><h1><<$pcs_firstname>>''s Home Location</h1></center>'
  357. '<center><table cellspacing="0" cellpadding="20" valign="top"><tr><td>'
  358. *nl
  359. 'Your current home is <<$home[''name'']>>.'
  360. *nl
  361. act 'Return to main description': gt 'obj_din', 'description'
  362. !!This is correct it just looks wrong
  363. if func('homes_properties', 'can_live_here', 'city_apartment'): 'Set current home as <a href="exec:gs ''homes_properties'', ''set_home'', ''city_apartment'' & gs ''obj_din'', ''current_home''">City residential apartment</a>'
  364. if func('homes_properties', 'can_live_here', 'parents_home'): 'Set current home as <a href="exec:gs ''homes_properties'', ''set_home'', ''parents_home'' & gs ''obj_din'', ''current_home''">Parent''s home in Pavlovsk</a>'
  365. if func('homes_properties', 'can_live_here', 'village_cottage'): 'Set current home as <a href="exec:gs ''homes_properties'', ''set_home'', ''village_cottage'' & gs ''obj_din'', ''current_home''">My cottage in the cooperative farm</a>'
  366. if func('homes_properties', 'can_live_here', 'old_town_apartment'): 'Set current home as <a href="exec:gs ''homes_properties'', ''set_home'', ''old_town_apartment'' & gs ''obj_din'', ''current_home''">Old town apartment</a>'
  367. if func('homes_properties', 'can_live_here', 'matryona_mansion'): 'Set current home as <a href="exec:gs ''homes_properties'', ''set_home'', ''matryona_mansion'' & gs ''obj_din'', ''current_home''">Matryona mansion</a>'
  368. if func('homes_properties', 'can_live_here', 'pavlovsk_hotel'): 'Set current home as <a href="exec:gs ''homes_properties'', ''set_home'', ''pavlovsk_hotel'' & gs ''obj_din'', ''current_home''">My hotel room in Pavlovsk</a>'
  369. if func('homes_properties', 'can_live_here', 'maid_bedroom'): 'Set current home as <a href="exec:gs ''homes_properties'', ''set_home'', ''maid_bedroom'' & gs ''obj_din'', ''current_home''">Nicholas'' apartment</a>'
  370. if func('homes_properties', 'can_live_here', 'niko_apartment'): 'Set current home as <a href="exec:gs ''homes_properties'', ''set_home'', ''niko_apartment'' & gs ''obj_din'', ''current_home''">Niko''s apartment</a>'
  371. if func('homes_properties', 'can_live_here', 'shulga_apartment'): 'Set current home as <a href="exec:gs ''homes_properties'', ''set_home'', ''shulga_apartment'' & gs ''obj_din'', ''current_home''">Uncle Sergey''s apartment</a>'
  372. if func('homes_properties', 'can_live_here', 'lyceum_dorm'): 'Set current home as <a href="exec:gs ''homes_properties'', ''set_home'', ''lyceum_dorm'' & gs ''obj_din'', ''current_home''">Lyceum school</a>'
  373. if func('homes_properties', 'can_live_here', 'university_dorm'): 'Set current home as <a href="exec:gs ''homes_properties'', ''set_home'', ''university_dorm'' & gs ''obj_din'', ''current_home''">University halls</a>'
  374. if func('homes_properties', 'can_live_here', 'hunters_lodge'): 'Set current home as <a href="exec:gs ''homes_properties'', ''set_home'', ''hunters_lodge'' & gs ''obj_din'', ''current_home''">Hunter''s lodge in Gadukino</a>'
  375. if func('homes_properties', 'can_live_here', 'shared_apartment'): 'Set current home as <a href="exec:gs ''homes_properties'', ''set_home'', ''shared_apartment'' & gs ''obj_din'', ''current_home''">Shared apartment in Pavlovsk</a>'
  376. if func('homes_properties', 'can_live_here', 'grandparents_house'): 'Set current home as <a href="exec:gs ''homes_properties'', ''set_home'', ''grandparents_house'' & gs ''obj_din'', ''current_home''">Grandparent''s house in Gadukino</a>'
  377. if func('homes_properties', 'can_live_here', 'city_house'): 'Set current home as <a href="exec:gs ''homes_properties'', ''set_home'', ''city_house'' & gs ''obj_din'', ''current_home''">My house in the City residential district</a>'
  378. if func('homes_properties', 'can_live_here', 'meynold_household'): 'Set current home as <a href="exec:gs ''homes_properties'', ''set_home'', ''meynold_household'' & gs ''obj_din'', ''current_home''">Meynold Houshold</a>'
  379. !!Apostrophe colour correction - KS ''''
  380. '</td></tr></table></center>'
  381. end
  382. if $ARGS[0] = 'skills':
  383. *clr & cla
  384. gs 'obj_din','chartabs'
  385. !'<center><img src="images/system/icons/stats.png"><br></center>'
  386. '<center><h1>Character Skills</h1></center>'
  387. '<center><table width="90%" cellspacing="0" cellpadding="20" valign="top"><tr>'
  388. '<td width="25%" cellspacing="0" cellpadding="10" valign="top">'
  389. '<b>Base Skills</b>'
  390. *nl
  391. '<font color="grey">base / modified</font>'
  392. *nl
  393. 'Strength - <<pcs_stren>> / <<stren_lvl>>'
  394. 'Agility - <<pcs_agil>> / <<agil_lvl>>'
  395. 'Endurance - <<pcs_vital>> / <<vital_lvl>>'
  396. 'Intelligence - <<pcs_intel>> / <<intel_lvl>>'
  397. 'Spirit - <<pcs_sprt>> / <<sprt_lvl>>'
  398. 'Reaction - <<pcs_react>> / <<react_lvl>>'
  399. 'Charisma - <<pcs_chrsm>> / <<chrsm_lvl>>'
  400. 'Perception - <<pcs_prcptn>> / <<prcptn_lvl>>'
  401. if $start_type[1] ! 'nomagic': 'Magic - <<pcs_magik>>'
  402. 'Attractiveness - <<pcs_apprnc>>'
  403. !'Speed <<speed>>' - not used
  404. *nl
  405. '<b>Mental Skills</b>'
  406. *nl
  407. if pcs_splcstng > 0: 'Spell Casting - <<pcs_splcstng>>'
  408. if pcs_humint > 0:'People skills - <<pcs_humint>>'
  409. if pcs_persuas > 0:'Persuasion - <<pcs_persuas>>'
  410. if pcs_observ > 0:'Observation - <<pcs_observ>>'
  411. '</td><td width="25%" cellspacing="0" cellpadding="10" valign="top">'
  412. '<b>Sport Skills</b>'
  413. *nl
  414. if pcs_jab > 0: 'Jabs - <<pcs_jab>>'
  415. if pcs_punch > 0: 'Power Strikes - <<pcs_punch>>'
  416. if pcs_kick > 0: 'Kicks - <<pcs_kick>>'
  417. if pcs_def > 0: 'Defense - <<pcs_def>>'
  418. if pcs_run > 0: 'Running - <<pcs_run>>'
  419. if pcs_vball > 0: 'Volleyball - <<pcs_vball>>'
  420. if pcs_ftbll > 0: 'Football - <<pcs_ftbll>>'
  421. if pcs_wrstlng > 0: 'Wrestling - <<pcs_wrstlng>>'
  422. if pcs_shoot > 0: 'Shooting Accuracy - <<pcs_shoot>>'
  423. if pcs_bushcraft > 0: 'Bushcraft - <<pcs_bushcraft>>'
  424. if pcs_chess > 0: 'Chess - <<pcs_chess>>'
  425. if pcs_icesktng > 0: 'Ice Skating - <<pcs_icesktng>>'
  426. if pcs_gaming > 0: 'Gaming - <<pcs_gaming>>'
  427. if pcs_pool > 0: 'Pool - <<pcs_pool>>'
  428. *nl
  429. '<b>Artistic Skills</b>'
  430. *nl
  431. if pcs_vokal > 0: 'Singing <<pcs_vokal>>'
  432. if pcs_instrmusic > 0: 'Instrumental Music - <<pcs_instrmusic>>'
  433. if pcs_photoskl > 0: 'Photography - <<pcs_photoskl>>'
  434. if pcs_artskls > 0: 'Artistic Skills - <<pcs_artskls>>'
  435. if pcs_perform > 0: 'Performance - <<pcs_perform>>'
  436. if pcs_musicprod > 0: 'Music Production - <<pcs_musicprod>>'
  437. '</td><td width="25%" cellspacing="0" cellpadding="10" valign="top">'
  438. '<b>Job Skills</b>'
  439. *nl
  440. if pcs_compskl > 0: 'Computer Skill - <<pcs_compskl>>'
  441. if pcs_comphckng > 0: 'Hacking - <<pcs_comphckng>>'
  442. if pcs_hndiwrk > 0: 'Handy-work - <<pcs_hndiwrk>>'
  443. if pcs_sewng > 0: 'Tailoring - <<pcs_sewng>>'
  444. if pcs_servng > 0: 'Serving - <<pcs_servng>>'
  445. if pcs_medcn > 0: 'Medicine - <<pcs_medcn>>'
  446. if teachlevel > 0: 'Teacher - credibility <<teachlevel>>'
  447. *nl
  448. '<b>Other Skills</b>'
  449. *nl
  450. if SchoolAtestat = 0 and mid($start_type,1,2) = 'sg':
  451. if schoolprogul > 0: 'School absenteeism - <<schoolprogul>> days'
  452. end
  453. '</td><td width="25%" cellspacing="0" cellpadding="10" valign="top">'
  454. '<b>Beauty Skills</b>'
  455. *nl
  456. if pcs_makeup > 0: 'Makeup Skill - <<pcs_makupskl>>'
  457. if pcs_danc > 0: 'Modern Dancing - <<pcs_danc>>'
  458. if pcs_dancero > 0: 'Erotic Dancing - <<pcs_dancero>>'
  459. if pcs_dancpol > 0: 'Pole Dancing - <<pcs_dancpol>>'
  460. if pcs_cheer > 0: 'Cheerleading - <<pcs_cheer>>'
  461. if pcs_mdlng > 0: 'Modelling - <<pcs_mdlng>>'
  462. *nl
  463. '<b>Sexual Skills</b>'
  464. *nl
  465. 'Inhibition <<100-pcs_inhib>>'
  466. 'Exhibitionist preference: <<exhibitionism[''pref'']>>'
  467. 'Exhibitionist sex: <<exhibitionism[''exp'']>>'
  468. if SUB > 0: 'Submissiveness <<SUB>>'
  469. if pcs_dom > 0: 'Dominance <<pcs_dom>>'
  470. 'Submissive sex: <<sub[''exp'']>>'
  471. 'Dominant sex: <<dom[''exp'']>>'
  472. 'Lesbian sex preference: <<lesbian[''pref'']>>'
  473. 'Lesbian sex: <<lesbian[''exp'']>>'
  474. '</td></tr></table></center>'
  475. end
  476. if $ARGS[0] = 'husb_cheat_count':
  477. if husband > 0:
  478. if guy > before_h_guy :
  479. guy_cheat += guy - guy_cheat
  480. before_h_guy = guy
  481. end
  482. if girl > before_h_girl:
  483. girl_cheat += girl - before_h_girl
  484. before_h_girl = girl
  485. end
  486. end
  487. if before_h_girl > 0 and before_h_guy > 0:
  488. 'During your marriage you have cheated on your husband with <<guy_cheat>> guys and <<girl_cheat>> girls.'
  489. elseif before_h_guy > 0:
  490. 'During your marriage you have cheated on your husband with <<guy_cheat>> guys.'
  491. elseif before_h_girl > 0:
  492. 'During your marriage you have cheated on your husband with <<girl_cheat>> girls.'
  493. end
  494. end
  495. if $ARGS[0] = 'stats':
  496. *clr & cla
  497. gs 'obj_din','chartabs'
  498. gs 'housing', 'rent'
  499. !'<center><img src="images/system/icons/statistics.png"><br></center>'
  500. '<center><h1>Character Statistics</h1></center>'
  501. '<center><table width="90%" cellspacing="0" cellpadding="10" valign="top"><tr>'
  502. '<td width="35%" cellspacing="0" cellpadding="0" valign="top">'
  503. '<center><b>General Statistics</b></center>'
  504. *nl
  505. if opPRE = 0: 'It has been <<daystart>> days since the game started.'
  506. *nl
  507. if SchoolAtestat = 0 and mid($start_type,1,2) = 'sg':
  508. gs 'grades', 'assing_grade_description', 'school'
  509. gs 'grades', 'grade above', 'school', 90
  510. gs 'grades', 'grade above', 'school', 70
  511. gs 'grades', 'grade above', 'school', 50
  512. gs 'grades', 'grade above', 'school', 40
  513. if class['school_grades_above_90'] = 13:
  514. 'You are getting top marks in all your classes. You are one of the best student in the school, maybe even the best student in school.'
  515. elseif class['school_grades_above_90'] > 6 and class['school_grades_above_40'] = 13:
  516. 'You are getting top marks in more that half of your classes and not failing any of the others. You are one of the best students in the school.'
  517. elseif class['school_grades_above_90'] > 6:
  518. 'You are getting top marks in more that half of your classes and even if you are failing some of the others you are still one of the best students in the school and should have no problem getting into the university if you want.'
  519. elseif class['school_grades_above_90'] > 0 and class['school_grades_above_70'] = 13:
  520. 'You are only getting top marks in a few of your classes but the rest of you grades are still good. You should have no trouble getting into university if you want.'
  521. elseif class['school_grades_above_90'] > 0 and class['school_grades_above_70'] > 10 and class['school_grades_above_40'] =13:
  522. 'You are only getting top marks in a few of your classes but only a few of your grades are bad and you are not failing any classes. You should probably have no trouble getting into university if you want, but improving the bad grades would not be a bad idea.'
  523. elseif class['school_grades_above_90'] > 0 and class['school_grades_above_70'] > 10:
  524. 'You are only getting top marks in a few of your classes but only a few of your grades are bad and you are failing some classes. If you want to get into university you should probably try to improve the failing and bad grades.'
  525. elseif class['school_grades_above_90'] > 0 and class['school_grades_above_40'] > 6:
  526. 'You are getting top marks in a few of your classes but failing a lot of classes. If you want to get into university you need to do something about your failing and bad grades.'
  527. elseif class['school_grades_above_90'] > 0:
  528. 'Even a top mark or two is not helping when you are failing more than half your classes. It will require a lot of work if you want to go to a university after school.'
  529. elseif class['school_grades_above_70'] = 13:
  530. 'You are getting good grades in all of your classes but no excellent grades. You should probably have no trouble getting into university if you want, but getting some of those excellent marks will not hurt.'
  531. elseif class['school_grades_above_70'] > 6 and class['school_grades_above_40'] =13:
  532. 'You are getting good grades in over half of your classes but no excellent grades, at least you are not failing any classes. If you want to get into university it would not hurt to improve some of the bad grades.'
  533. elseif class['school_grades_above_70'] > 6 and class['school_grades_above_40'] >10:
  534. 'You are getting good grades in over half of your classes but no excellent grades and you are failing a few classes. If you want to get into university you need to improve some of the bad grades.'
  535. elseif class['school_grades_above_70'] > 0 and class['school_grades_above_40'] = 13:
  536. 'You are getting good grades in a few of your classes and no excellent grades. At least you are not failing any classes. If you want to get into university you need to improve some of the bad grades.'
  537. elseif class['school_grades_above_70'] > 0 and class['school_grades_above_40'] >10:
  538. 'You are getting good grades in a few of your classes but no excellent grades and you are failing a few classes. If you want to get into university you need to improve some of the bad grades.'
  539. elseif class['school_grades_above_70'] > 0 and class['school_grades_above_40'] >6:
  540. 'You are getting good grades in a few of your classes but no excellent grades and you are failing a lot of classes. If you want to get into university you really need to improve your grade in some of your classes you are failing.'
  541. elseif class['school_grades_above_70'] > 0:
  542. 'A good grade or two is not not enough when you are failing more than half your classes. It will require a lot of work to turn this one around.'
  543. elseif class['school_grades_above_40'] = 13:
  544. 'You are not getting any good grades, but at least you are not failing any. It will require a lot of work if you want to go to a university after school.'
  545. elseif class['school_grades_above_40'] > 10:
  546. 'With you general bad grades failing a few as you do puts you in danger of not graduation high school.'
  547. elseif class['school_grades_above_40'] > 6:
  548. 'With failing a lot of classes and barely passing the rest you will not graduate high school unless you can get your grades up before graduation.'
  549. else
  550. 'You are failing high school, you need to do something about this right now, if you want to graduate.'
  551. end
  552. if schoolprogul > 0: 'School absenteeism - <<schoolprogul>> days'
  553. end
  554. *nl
  555. !! TODO: Have
  556. if (accessible_property['city_apartment'] = 1 and func('homes_properties', 'get_rent_days', 'city_apartment') > 0) or (accessible_property['old_town_apartment'] = 1 and func('homes_properties', 'get_rent_days', 'old_town_apartment') > 0):
  557. *nl
  558. if accessible_property['city_apartment'] = 1 and accessible_property['old_town_apartment'] =1:
  559. 'You have rented an apartment in the city residential area, which is paid up for <b><<func(''homes_properties'', ''get_rent_days'', ''city_apartment'')>></b> days, and you also have an apartment in Pushkin, which is paid up for <b><<func(''homes_properties'', ''get_rent_days'', ''old_town_apartment'')>></b> days. Utilities are due on the 25th of <<$month>>.'
  560. elseif accessible_property['city_apartment'] = 1:
  561. 'You have rented an apartment in the city residential area, and you''re paid up for <<func(''homes_properties'', ''get_rent_days'', ''city_apartment'')>> days. Utilities are due on the 25th of <<$month>>.'
  562. elseif accessible_property['old_town_apartment'] > 0:
  563. 'You have rented an apartment in Pushkin, and you''re paid up for <<func(''homes_properties'', ''get_rent_days'', ''old_town_apartment'')>> days. Utilities are due on the 25th of <<$month>>.'
  564. end
  565. if accessible_property['city_apartment'] = 1:
  566. rentdue = func('homes_properties', 'get_rent_amount', 'city_apartment')
  567. if karta >= rentdue or money >= rentdue or money + stolmoney >= rentdue or karta + bankDebtLimit >= rentdue:
  568. *nl
  569. *p 'The monthly rent for your city apartment is <<rentdue>> <b>₽</b>. '
  570. if karta >= rentdue:
  571. !From bank
  572. *p 'You can make an advance <a href="exec:karta -=rentdue & gs ''homes_properties'', ''add_rent_days'', ''city_apartment'' & gs ''$menu_obnovit''">payment</a> from your bank account.'
  573. elseif money >= rentdue:
  574. !From cash
  575. *p 'You can make an advance <a href="exec:money -= rentdue & gs ''homes_properties'', ''add_rent_days'', ''city_apartment'' & gs ''$menu_obnovit''">payment</a> from your on-hand cash.'
  576. *nl
  577. elseif stolmoney >= rentdue:
  578. !From drawer
  579. *p 'You can make an advance <a href="exec:stolmoney -= rentdue & gs ''homes_properties'', ''add_rent_days'', ''city_apartment'' & gs ''$menu_obnovit''">payment</a> from the cash you have in your stash drawer.'
  580. *nl
  581. elseif money + stolmoney >= rentdue:
  582. !From cash and drawer
  583. *p 'You can make an advance <a href="exec:money -= (rentdue - stolmoney) & stolmoney = 0 & gs ''homes_properties'', ''add_rent_days'', ''city_apartment'' & gs ''$menu_obnovit''">payment</a> from your on-hand cash and the cash in your stash drawer.'
  584. *nl
  585. elseif karta + bankDebtLimit >= rentdue:
  586. !From bank and overdraw
  587. *p 'You can make an advance <a href="exec:karta -= rentdue & gs ''homes_properties'', ''add_rent_days'', ''city_apartment'' & gs ''$menu_obnovit''">payment</a> from your bank account and overdraw facility.'
  588. *nl
  589. else
  590. *p 'You can''t afford to make an advance payment right now, but you should try to have enough money in your account, so you don''t get evicted.'
  591. *nl
  592. end
  593. end
  594. killvar 'rentdue'
  595. end
  596. if accessible_property['old_town_apartment'] > 0:
  597. rentdue = func('homes_properties', 'get_rent_amount', 'old_town_apartment')
  598. if karta >= rentdue or money >= rentdue or money + stolmoney >= rentdue or karta + bankDebtLimit >= rentdue:
  599. *nl
  600. *p 'The monthly rent for your Pushkin apartment is <<rentdue>> <b>₽</b>. '
  601. if karta >= rentdue:
  602. !From bank
  603. *p 'You can make an advance <a href="exec:karta -= rentdue & gs ''homes_properties'', ''set_access'', ''old_town_apartment'', 1 & gs ''homes_properties'', ''add_rent_days'', ''old_town_apartment'' & gs ''$menu_obnovit''">payment</a> from your bank account.'
  604. *nl
  605. elseif money >= rentdue:
  606. !From cash
  607. *p 'You can make an advance <a href="exec:money -= rentdue & gs ''homes_properties'', ''set_access'', ''old_town_apartment'', 1 & gs ''homes_properties'', ''add_rent_days'', ''old_town_apartment'' & gs ''$menu_obnovit''">payment</a> from your on-hand cash.'
  608. *nl
  609. elseif stolmoney >= rentdue:
  610. !From drawer
  611. *p 'You can make an advance <a href="exec:stolmoney -= rentdue & gs ''homes_properties'', ''set_access'', ''old_town_apartment'', 1 & gs ''homes_properties'', ''add_rent_days'', ''old_town_apartment'' & gs ''$menu_obnovit''">payment</a> from the cash you have in your stash drawer.'
  612. *nl
  613. elseif money + stolmoney >= rentdue:
  614. !From cash and drawer
  615. *p 'You can make an advance <a href="exec:money -= (rentdue - stolmoney) & stolmoney = 0 & gs ''homes_properties'', ''set_access'', ''old_town_apartment'', 1 & gs ''homes_properties'', ''add_rent_days'', ''old_town_apartment'' & gs ''$menu_obnovit''">payment</a> from your on-hand cash and the cash in your stash drawer.'
  616. *nl
  617. elseif karta + bankDebtLimit >= rentdue:
  618. !From bank and overdraw
  619. *p 'You can make an advance <a href="exec:karta -= rentdue & gs ''homes_properties'', ''set_access'', ''old_town_apartment'', 1 & gs ''homes_properties'', ''add_rent_days'', ''old_town_apartment'' & gs ''$menu_obnovit''">payment</a> from your bank account and overdraw facility.'
  620. *nl
  621. else
  622. *p 'You can''t afford to make an advance payment right now, but you should try to have enough money in your account, so you don''t get evicted.'
  623. *nl
  624. end
  625. end
  626. end
  627. end
  628. if kid = 1:
  629. *nl
  630. 'You have 1 child:'
  631. else
  632. 'You have <<kid>> children:'
  633. end
  634. if kid > 0:
  635. k = 0
  636. :kidloop
  637. if k < kid:
  638. gs 'obj_din','kidlist',k
  639. k += 1
  640. jump 'kidloop'
  641. end
  642. end
  643. if workPTU > 1: 'Reputation as a teacher <<teachlevel>>'
  644. *nl
  645. '<center><b>Sports Career</b></center>'
  646. if KikWinPro > 0 or KikLossPro > 0 or KikDrawPro > 0:
  647. 'Professional Kickboxing Record:Win (Victory KO) - Loss (Defeat KO) - Draw'
  648. '<<KikWinPro>> (<<KikWinProKO>>KO) - <<KikLossPro>> (<<KikLossProKO>>KO) - <<KikDrawPro>>'
  649. end
  650. if Win > 0 or Loss > 0: 'Wins in fights <<Win>>, losses in fights <<Loss>>' & *nl
  651. if kickbox['sash'] > 0:
  652. if kickbox['sash'] = 1: 'You have earned green sash(rank 4) in kickboxing'
  653. if kickbox['sash'] = 2: 'You have earned purple sash(rank 5) in kickboxing'
  654. if kickbox['sash'] = 3: 'You have earned blue sash(rank 6) in kickboxing'
  655. if kickbox['sash'] = 4: 'You have earned brown sash(rank 7) in kickboxing'
  656. if kickbox['sash'] = 5: 'You have earned black sash, 1st dan in kickboxing'
  657. end
  658. if kickbox['amateurWin'] > 0 or kickbox['amateurLoss'] > 0 or kickbox['amateurDraw'] > 0:
  659. 'Amateur Kickboxing Record:<br>Wins: <<kickbox[''amateurWin'']>> (<<kickbox[''amateurWinKO'']>> by KO) - Losses: <<kickbox[''amateurLoss'']>> (<<kickbox[''amateurLossKO'']>> by KO) - Draws: <<kickbox[''amateurDraw'']>>'
  660. *nl
  661. end
  662. if runnerQW['races_ran'] > 0: 'You have run in <<runnerQW[''races_ran'']>> races'
  663. if runnerQW['pav_wins1'] >= 1: 'You have <<runnerQW[''pav_wins1'']/3>> trophies from local racing competitions'
  664. if runnerQW['bronze_medals'] > 0: '<<runnerQW[''bronze_medals'']>> - bronze medals for running'
  665. if runnerQW['silver_medals'] > 0: '<<runnerQW[''silver_medals'']>> - silver medals for running'
  666. if runnerQW['gold_medals'] > 0: '<<runnerQW[''gold_medals'']>> - gold medals for running'
  667. if runnerQW['champ_bronze'] > 0: '<<runnerQW[''champ_bronze'']>> times bronze medalist at the St. Petersburg Track Championship'
  668. if runnerQW['champ_silver'] > 0: '<<runnerQW[''champ_silver'']>> times silver medalist at the St. Petersburg Track Championship'
  669. if runnerQW['champ_gold'] > 0: '<<runnerQW[''champ_gold'']>> times St. Petersburg Track Champion.'
  670. if runnerQW['prof_stage'] > 0:
  671. if runnerQW['prof_stage'] = 1: 'You''re registered for a semi-professional''s race, in the junior squad'
  672. if runnerQW['prof_stage'] = 2: 'You''re registered for a semi-professional''s race, in the veteran squad'
  673. if runnerQW['prof_stage'] >= 3 and runnerQW['prof_stage'] < 14: 'You can run in the qualifiing races for the championship on the professional circuit.'
  674. if runnerQW['prof_stage'] = 14 and runnerQW['qualifiers'] < 9: 'You failed to quaify for the championship.'
  675. if runnerQW['prof_stage'] = 5: 'You are one of the best track athletes in Russia and thus qualified for the Russian National Championship.'
  676. if runnerQW['prof_stage'] = 14 and runnerQW['qualifiers'] >= 9: 'You qualified for the <<year>> St. Petersburg Track Championship, taking place this season in the Petrovsky Stadium.'
  677. *nl
  678. end
  679. if chess_win > 0 or chess_loss > 0:'Chess Record: Win <<chess_win>>, Loss <<chess_loss>>'
  680. if chess_rank > 0:
  681. if chess_rank = 1:'You have mastered the basics of chess'
  682. if chess_rank = 2:'You''re starting to get good at chess'
  683. if chess_rank = 3:'You''re a good chess player'
  684. if chess_rank = 4:'You''re an excellent chess player'
  685. if chess_rank = 5:'You''re a candidate for chess master'
  686. if chess_rank = 6:'You''re a chess master'
  687. if chess_rank = 7:'You''re a chess Grandmaster'
  688. end
  689. if chess_world_rank > 0:
  690. if chess_world_rank = 1:'The title of FIDE Master Chess'
  691. if chess_world_rank = 2:'The title of International Chess Master'
  692. if chess_world_rank = 3:'The title of International Grandmaster Chess'
  693. end
  694. *nl
  695. !!!
  696. '<center><b>Job Statistics</b></center>'
  697. if model['status'] = 1:
  698. if modelfoto['shoots'] > 0:
  699. '<b>Modelling</b>'
  700. *nl
  701. if $model['firstname'] = $pcs_firstname and $model['lastname'] = $pcs_lastname:
  702. 'You are working as a model using your real name.'
  703. else
  704. 'You are working as a model under the name <<$model[''firstname'']>> <<$model[''lastname'']>>.'
  705. end
  706. *nl
  707. '<<modelfoto[''shoots'']>> - Number of times you have worked as a model'
  708. '<<modelfoto[''earnings'']>> - The amount of money you''ve made modelling'
  709. *nl
  710. if modelfoto['catalog'] > 0: '<<modelfoto[''catalog'']>> - Number of catalog shoots you''ve done'
  711. if modelfoto['fashion'] > 0: '<<modelfoto[''fashion'']>> - Number of fashion shoots you''ve done'
  712. if modelfoto['bikini'] > 0: '<<modelfoto[''bikini'']>> - Number of swimsuit shoots you''ve done'
  713. if modelfoto['lingerie'] > 0: '<<modelfoto[''lingerie'']>> - Number of lingerie shoots you''ve done'
  714. if modelfoto['trans_ling'] > 0: ' <<modelfoto[''trans_ling'']>> of those were with transparent lingerie'
  715. if modelfoto['sexy'] > 0: '<<modelfoto[''sexy'']>> - Number of sexy clothing shoots you''ve done'
  716. if modelfoto['transparent'] > 0: ' <<modelfoto[''transparent'']>> of those were with transparent clothing that exposed your breasts'
  717. if modelfoto['fitness'] > 0: '<<modelfoto[''fitness'']>> - Number of fitness shoots you have participated in'
  718. if modelfoto['glamour'] > 0: '<<modelfoto[''glamour'']>> - Number of glamour shoots you''ve done'
  719. if modelfoto['topless'] > 0: '<<modelfoto[''topless'']>> - Number of topless shoots you''ve done'
  720. if modelfoto['nude'] > 0: '<<modelfoto[''nude'']>> - Number of shoots in which you have been nude'
  721. if modelfoto['tastenude'] > 0: '<<modelfoto[''tastenude'']>> - Number of shoots in which you have been nude but not shown breasts or pussy'
  722. if modelfoto['toplessnude'] > 0: '<<modelfoto[''toplessnude'']>> - Number of nude shoots you have shown your breasts but not your pussy'
  723. if modelfoto['fullnude'] > 0: '<<modelfoto[''fullnude'']>> - Number of full frontal nude shoots you''ve done'
  724. if modelfoto['erotic'] > 0: '<<modelfoto[''erotic'']>> - Number of softcore erotic shoots you''ve done'
  725. if modelfoto['nip'] > 0: '<<modelfoto[''nip'']>> - Number of shoots your nipples have been visible'
  726. if modelfoto['pussy'] > 0: '<<modelfoto[''pussy'']>> - Number of shoots your pussy has been visible'
  727. if modelfoto['bush'] > 0: '<<modelfoto[''bush'']>> - Number of shoots you have had visible pubic hair'
  728. if modelfoto['asshole'] > 0: '<<modelfoto[''asshole'']>> - Number of shoots your asshole has been visible'
  729. end
  730. end
  731. *nl
  732. if masseuse['jobtype'] ! 0:
  733. '<b>Masseuse</b>'
  734. masseuse['money_earned'] += masseuse['paycheck']
  735. if masseuse['jobtype'] = 2:
  736. masseuse['nude_mass_money_earned'] += masseuse['paycheck']
  737. elseif masseuse['jobtype'] > 2:
  738. masseuse['sex_money_earned'] += masseuse['paycheck']
  739. end
  740. *nl
  741. 'You have earned <<masseuse[''money_earned'']>> <b>₽</b> working at the salon as well as <<massage[''shift_tips'']>> <b>₽</b> in tips.'
  742. *nl
  743. '<<masseuse[''nude_mass_money_earned'']>> <b>₽</b> of it was made working as a nude masseuse.'
  744. '<<masseuse[''sex_money_earned'']>> <b>₽</b> of it was made working as a whore.'
  745. *nl
  746. '<<massage[''sex_tips'']>> <b>₽</b> of your tips came after performing a sexual act.'
  747. end
  748. if slavafuck > 0:'You have let Borislav fuck you <<slavafuck>> times'
  749. if slava_bj > 0:'You have given Borislav <<slava_bj>> blowjobs'
  750. if maxdamage > 0: 'The impact force on the dynamometer <<maxdamage>> kgN' & *nl
  751. if stripdancesum > 0 and hidden_stripdancesum = 0:
  752. 'You have danced <<stripdancesum>> times in the stripclub'
  753. elseif stripdancesum = 0 and hidden_stripdancesum > 0:
  754. 'You have danced <<hidden_stripdancesum>> times in the stripclub, but you do not remember it'
  755. elseif stripdancesum > 0 and hidden_stripdancesum > 0:
  756. 'You have danced <<stripdancesum+hidden_stripdancesum>> times in the stripclub, but you only remember <<stripdancesum>> times'
  757. end
  758. if profiDanceTime > 0: 'You danced <<profiDanceTime>> times professionally.'
  759. if SchoolAtestat = 1: 'You have finished school.'
  760. if university['diploma'] > 0: 'You graduated.'
  761. if teachlevel > 0: 'Your credibility as a teacher is <<teachlevel>>'
  762. !WD:FORMATING
  763. if maxdamage > 0 or stripdancesum > 0 or profiDanceTime > 0 or SchoolAtestat > 0 or university['diploma'] > 0 or teachlevel > 0:*nl
  764. '</td><td width="35%" cellspacing="0" cellpadding="0" valign="top">'
  765. '<center><b>Sex Statistics</b></center>'
  766. *nl
  767. !Sex stats
  768. ! This is my suggestion, change it however you see fit, Sicaa
  769. if stat['kiss'] > 0: 'Times you have kissed someone: <<stat[''kiss'']>>'
  770. if mastr > 0 or stat['mast'] > 0: 'Times you have masturbated: <<stat[''mast'']>>'
  771. if stat['porn'] > 0: 'Times you have watched porn: <<stat[''porn'']>>'
  772. if stat['flashlite'] > 0 or stat['flash'] > 0: 'Times you have flashed: <<stat[''flashlite''] + stat[''flash'']>>'
  773. ! This is my suggestion, change it however you see fit, Sicaa
  774. if stat['voyeur'] > 0: 'Times you have spied on erotic displays of others: <<stat[''voyeur'']>>'
  775. if stat['voyeur_sex'] > 0: 'Times you have watched other people fuck: <<stat[''voyeur_sex'']>>'
  776. if stat['erotic_nudity'] > 0: 'Times you were exposed to others'' nudity: <<stat[''erotic_nudity'']>>'
  777. if spank > 0: 'You have had your ass spanked <<spank>> times'
  778. ! This is my suggestion, change it however you see fit, Sicaa
  779. if stat['BDSM'] > 0 or stat['BDSM_give'] > 0: 'Times you have participated in BDSM (sub/dom): <<stat[''BDSM'']>>/<<stat[''BDSM_give'']>>'
  780. temp = func('shortgs','guy')
  781. if guy+temp > 0 and hidden_guy = 0:
  782. 'You had sex with <<guy+temp>> guys.'
  783. elseif guy+temp = 0 and hidden_guy > 0:
  784. 'You had sex with <<hidden_guy>> guys, but you do not have any recollection of it. You still think of yourself as a virgin.'
  785. elseif guy+temp > 0 and hidden_guy > 0:
  786. 'You had sex with <<guy+hidden_guy+temp>> guys, but you know only about <<guy+temp>> of them.'
  787. end
  788. *nl
  789. 'You have randomly hooked up with <<stat[''hookup'']>> people.'
  790. temp = func('shortgs','girl')
  791. if girl+temp > 0 and hidden_girl = 0:
  792. 'You had sex with <<girl+temp>> girls.'
  793. elseif girl+temp = 0 and hidden_girl > 0:
  794. 'You had sex with <<hidden_girl>> girls, but you do not have any recollection of any of it.'
  795. elseif girl+temp > 0 and hidden_girl > 0:
  796. 'You had sex with <<girl+temp+hidden_girl>> girls, but you know only about <<girl+temp>> of them.'
  797. end
  798. if divorced > 0: 'You were married <<divorced>> times.'
  799. if suprdolg > 0: 'You performed your conjugal duty for your husband <<suprdolg>> times'
  800. if rape > 0 and hidden_rape = 0:
  801. 'You have been raped <<rape>> times'
  802. elseif rape = 0 and hidden_rape > 0:
  803. 'You have been raped <<hidden_rape>> times, but you do not remember any of it'
  804. elseif rape > 0 and hidden_rape > 0:
  805. 'You have been raped <<rape+hidden_rape>> times, but you only remember <<rape>> of them'
  806. end
  807. if slutty > 0 or hidden_slutty > 0:
  808. if bordelslutty = 0: 'Sold your body <<slutty>> times.'
  809. if bordelslutty > 0: 'Sold your body <<slutty>> times, including <<bordelslutty>> times in a brothel.'
  810. if hidden_slutty > 0: 'Sold your body <<hidden_slutty>> times, and gave all the money to your therapist. You do not remember any of it.'
  811. end
  812. if orgasm > 0: 'You have experienced <<orgasm>> orgasms.'
  813. if orgasm_masturbate > 0: '<<orgasm_masturbate>> of them from masturbation.'
  814. if orgasm_clit > 0 : '<<orgasm_clit>> of them from clitoral stimulation.'
  815. if orgasm_vaginal > 0 : '<<orgasm - orgasm_clit - orgasm_anal>> of them vaginal orgasms.'
  816. if orgasm_anal > 0 : '<<orgasm_anal>> of them anal orgasms.'
  817. if stat['swallow'] > 0: 'Sperm swallowed <<stat[''swallow'']>> times.'
  818. if stat['cum_facial'] > 0: 'You have taken <<stat[''cum_facial'']>> facials.'
  819. if frot > 0 or hump > 0: 'Your clothes have been come on <<frot + hump>> times.'
  820. ! This is my suggestion, change it however you see fit, Sicaa
  821. if stat['pee_give'] > 0: 'You''ve peed on others <<stat[''pee_give'']>> times.'
  822. if stat['pee'] > 0: 'You''ve been peed on <<stat[''pee'']>> times.'
  823. if swallowpee > 0: 'You swallowed urine <<swallowpee>> times.'
  824. !!!WD:FORMATING
  825. *nl
  826. !!!
  827. gs 'obj_din', 'husb_cheat_count'
  828. if hj > 0 or stat['hj'] > 0 or stat['hidden_hj'] > 0:
  829. 'Jerked men off (known/unknown): <<stat[''hj'']>>/<<stat[''hidden_hj'']>>'
  830. if hja > 0: 'Jerked off your boyfriend: <<hja>>'
  831. end
  832. if stat['footjob'] > 0 or stat['hidden_footjob'] > 0: 'Jerked men off with your feet (known/unknown): <<stat[''footjob'']>>/<<stat[''hidden_footjob'']>>'
  833. ! This is my suggestion, change it however you see fit, Sicaa
  834. if stat['titjob'] > 0 or stat['hidden_titjob'] > 0: 'Pleasured men with your breasts (known/unknown): <<stat[''titjob'']>>/<<stat[''hidden_titjob'']>>'
  835. if bj > 0 or stat['bj'] > 0 or stat['hidden_bj'] > 0:
  836. 'Sucked cock (known/unknown): <<stat[''bj'']>>/<<stat[''hidden_bj'']>>'
  837. if bja > 0: 'Sucked your boyfriends cock: <<bja>>'
  838. if stat['gloryhole'] > 0 or stat['hidden_gloryhole'] > 0: 'Sucked cock in a gloryhole (known/unknown): <<stat[''gloryhole'']>>/<<stat[''hidden_gloryhole'']>>'
  839. if furibj > 0: 'Sucked off truckers for a ride <<furibj>> times'
  840. if furi['road_head_girl'] = 1: 'The truckers who drive the lorries nicknamed you "Road Head Girl".'
  841. end
  842. if sex > 0 or stat['vaginal'] > 0 or stat['hidden_vaginal'] > 0: 'Vaginal sex (known/unknown): <<stat[''vaginal'']>>/<<stat[''hidden_vaginal'']>>'
  843. if sexa > 0: 'Vaginal sex with your boyfriend: <<sexa>>'
  844. if (pcs_cp_safe_known + pcs_cp_notsafe_known + pcs_cp_risky_known) > 0:
  845. ' Known vaginal creampies:'
  846. if pcs_cp_safe_known > 0:' Safe: <<pcs_cp_safe_known>>'
  847. if pcs_cp_notsafe_known > 0:' Likely safe: <<pcs_cp_notsafe_known>>'
  848. if pcs_cp_risky_known > 0:' Risky: <<pcs_cp_risky_known>>'
  849. end
  850. if (pcs_cp_safe_unknown + pcs_cp_notsafe_unknown + pcs_cp_risky_unknown) > 0:
  851. ' Unknown vaginal creampies:'
  852. if pcs_cp_safe_unknown > 0:' Safe: <<pcs_cp_safe_unknown>>'
  853. if pcs_cp_notsafe_unknown > 0:' Likely safe: <<pcs_cp_notsafe_unknown>>'
  854. if pcs_cp_risky_unknown > 0:' Risky: <<pcs_cp_risky_unknown>>'
  855. end
  856. if lesbian > 0 or hidden_lesbian > 0:
  857. if hidden_lesbian = 0: 'Lesbian sex (known/unknown): <<lesbian>>/<<hidden_lesbian>>'
  858. end
  859. if shemale > 0 or hidden_shemale > 0: 'Sex with shemales (known/unknown): <<shemale>>/<<hidden_shemale>>'
  860. if anal > 0 or stat['anal'] or stat['hidden_anal']:
  861. 'Anal sex (known/unknown): <<stat[''anal'']>>/<<stat[''hidden_anal'']>>'
  862. if anala > 0: 'Anal sex with your boyfriend: <<anala>>'
  863. end
  864. if pcs_acp_known > 0: ' Known anal creampies: <<pcs_acp_known>>'
  865. if pcs_acp_unknown > 0: ' Unknown anal creampies: <<pcs_acp_unknown>>'
  866. if gang > 0 or hidden_gang > 0: 'Group sex (known/unknown): <<gang>>/<<hidden_gang>>'
  867. if kuni > 0 or stat['cuni'] > 0: 'Received cunnilingus: <<stat[''cuni'']>>'
  868. if stat['vaginal_finger'] > 0: 'Fingered: <<stat[''vaginal_finger'']>>'
  869. if stat['vaginal_fist'] > 0: 'Fisted: <<stat[''vaginal_fist'']>>'
  870. if stat['vaginal_dildo'] > 0: 'Fucked a dildo: <<stat[''vaginal_dildo'']>>'
  871. if stat['vaginal_strap'] > 0: 'Fucked with a strap-on: <<stat[''vaginal_strap'']>>'
  872. if stat['vaginal_vibe'] > 0: 'Clitoral / Vaginal vibrator: <<stat[''vaginal_vibe'']>>'
  873. if stat['trib'] > 0: 'Tribadism: <<stat[''trib'']>>'
  874. if stat['anal_finger'] > 0: 'Anally fingered: <<stat[''anal_finger'']>>'
  875. if stat['anal_fist'] > 0: 'Anally fisted: <<stat[''anal_fist'']>>'
  876. if stat['rimming'] > 0: 'Ass rimmed: <<stat[''rimming'']>>'
  877. if stat['anal_dildo'] > 0: 'Anal sex with a dildo: <<stat[''anal_dildo'']>>'
  878. if stat['anal_strap'] > 0: 'Ass fucked with a strap-on: <<stat[''anal_strap'']>>'
  879. if stat['anal_vibe'] > 0: 'Anal vibrator: <<stat[''anal_vibe'']>>'
  880. if stat['cuni_give'] > 0: 'Performed cunnilingus: <<stat[''cuni_give'']>>'
  881. if stat['vaginal_finger_give'] > 0: 'Fingered a girl: <<stat[''vaginal_finger_give'']>>'
  882. if stat['vaginal_fist_give'] > 0: 'Fisted a girl: <<stat[''vaginal_fist_give'']>>'
  883. if stat['vaginal_dildo_give'] > 0: 'Dildoed a girl: <<stat[''vaginal_dildo_give'']>>'
  884. if stat['vaginal_strap_give'] > 0: 'Strap-on fucked a girl: <<stat[''vaginal_strap_give'']>>'
  885. if stat['vaginal_vibe_give'] > 0: 'Used vibrator on a girl: <<stat[''vaginal_vibe_give'']>>'
  886. if stat['rimming_give'] > 0: 'Rimmed someone: <<stat[''rimming_give'']>>'
  887. if stat['anal_finger_give'] > 0: 'Fingered someone else''s ass: <<stat[''anal_finger_give'']>>'
  888. if stat['anal_fist_give'] > 0: 'Fisted someone else''s ass: <<stat[''anal_fist_give'']>>'
  889. if stat['anal_dildo_give'] > 0: 'Dildoed someone else''s ass: <<stat[''anal_dildo_give'']>>'
  890. if stat['anal_vibe_give'] > 0: 'Used a vibrator on someone else''s ass: <<stat[''anal_vibe_give'']>>'
  891. if stat['anal_strap_give'] > 0 or stat['anal_strap_give'] > 0: 'Fucked someone else''s ass with a strap-on: <<stat[''anal_strap_give'']>>'
  892. '</td><td width="30%" cellspacing="0" cellpadding="0" valign="top">'
  893. '<center><b>Fetish Statistics</b></center>'
  894. *nl
  895. 'Feet preference: <<feet[''pref'']>>'
  896. 'Foot jobs / worship: <<feet[''exp'']>>'
  897. 'Deepthroat preference: <<deepthroat[''pref'']>>'
  898. 'Deepthroated: <<deepthroat[''exp'']>>'
  899. 'Group preference: <<group[''pref'']>>'
  900. 'Group sex: <<group[''exp'']>>'
  901. 'Gangbang preference: <<gangbang[''pref'']>>'
  902. 'Gangbangs: <<gangbang[''exp'']>>'
  903. 'Humiliation preference: <<humiliation[''pref'']>>'
  904. 'Humiliation experiences: <<humiliation[''exp'']>>'
  905. 'Prostitution preference: <<prostitution[''pref'']>>'
  906. 'Prostituted yourself: <<prostitution[''exp'']>>'
  907. 'Bondage preference: <<bound[''pref'']>>'
  908. 'Bondage play: <<bound[''exp'']>>'
  909. 'Masochism preference: <<maso[''pref'']>>'
  910. 'Masochism experiences: <<maso[''exp'']>>'
  911. 'Bestiality encounters: <<beast[''pref'']>>'
  912. 'Bestiality experience: <<beast[''exp'']>>'
  913. 'Rough sex preference: <<rough[''pref'']>>'
  914. 'Rough sex: <<rough[''exp'']>>'
  915. 'Incest preference: <<incest[''pref'']>>'
  916. 'Incestuous sex: <<incest[''exp'']>>'
  917. '</td></tr></table></center>'
  918. end
  919. if $ARGS[0] = 'kidlist':
  920. kidnumber = ARGS[1]
  921. if kidage[kidnumber] < 1:
  922. if (month - monthkid[kidnumber]) < 1 and (day-daykid[kidnumber]) < 7:
  923. kiddaycalc[kidnumber] = day - daykid[kidnumber]
  924. if kiddaycalc[kidnumber] = 0:
  925. $kidagetext[kidnumber] = 'was born today'
  926. elseif kiddaycalc[kidnumber] = 1:
  927. $kidagetext[kidnumber] = 'is <<kiddaycalc[kidnumber]>> day old'
  928. else
  929. $kidagetext[kidnumber] = 'is <<kiddaycalc[kidnumber]>> days old'
  930. end
  931. elseif (month - monthkid[kidnumber]) < 1 :
  932. kiddaycalc[kidnumber] = (day - daykid[kidnumber]) / 7
  933. if kiddaycalc[kidnumber] = 1:
  934. $kidagetext[kidnumber] = 'is <<kiddaycalc[kidnumber]>> week old'
  935. else
  936. $kidagetext[kidnumber] = 'is <<kiddaycalc[kidnumber]>> weeks old'
  937. end
  938. else
  939. kidmonthcalc[kidnumber] = (month - monthkid[kidnumber])
  940. if kidmonthcalc[kidnumber] = 1:
  941. $kidagetext[kidnumber] = 'is <<kidmonthcalc[kidnumber]>> month old'
  942. else
  943. $kidagetext[kidnumber] = 'is <<kidmonthcalc[kidnumber]>> months old'
  944. end
  945. end
  946. else
  947. if kidage[kidnumber] = 1:
  948. $kidagetext[kidnumber] = 'is <<kidage[kidnumber]>> year old'
  949. else
  950. $kidagetext[kidnumber] = 'is <<kidage[kidnumber]>> years old'
  951. end
  952. end
  953. if polkid[kidnumber] = 0:
  954. $sdtext[kidnumber] = 'daughter'
  955. else
  956. $sdtext[kidnumber] = 'son'
  957. end
  958. if polkid[kidnumber] = 0:
  959. $kidPosProPN[kidnumber] = 'She'
  960. else
  961. $kidPosProPN[kidnumber] = 'He'
  962. end
  963. *p'You have a <<$sdtext[kidnumber]>> named <<$kidname[kidnumber]>>. <<$kidPosProPN[kidnumber]>> <<$kidagetext[kidnumber]>>. <<$kidname[kidnumber]>>''s date of birth is <<daykid[kidnumber]>>-<<monthkid[kidnumber]>>-<<yearkid[kidnumber]>>'
  964. '.'
  965. *nl
  966. killvar 'kidnumber'
  967. end
  968. if $ARGS[0] = 'reputation':
  969. *clr & cla
  970. gs 'obj_din','chartabs'
  971. !'<center><img src="images/system/icons/reputation.png"><br></center>'
  972. '<center><h1>Renown</h1></center>'
  973. '<center><table width="90%" cellspacing="0" cellpadding="20" valign="top">'
  974. *nl
  975. '<center>Family Renown</center>'
  976. if Enable_family_Reputation = 0:
  977. '<center><a href="exec:Enable_family_Reputation = 1 & gs ''obj_din'', ''reputation''">Show details</a></center>'
  978. end
  979. if Enable_family_Reputation = 1:
  980. '<center><a href="exec:Enable_family_Reputation = 0 & gs ''obj_din'', ''reputation''">Hide details</a></center>'
  981. if rinslut > 0 or kavslut > 0:'In the residential area of ​​you are known as a whore that sleeps with Caucasians.'
  982. if opusk > 0 or gnewQW >= 5: 'In the residential area it is well known by all the guys that you are a whore.'
  983. if mid($start_type,1,2) = 'sg':
  984. *nl
  985. if motherKnowWhore > 0:
  986. 'Your mother knows that you are sexually active and considers you a whore.'
  987. elseif motherKnowSpravka > 0:
  988. 'Your mother knows that you are sexually active.'
  989. elseif motherKnowDildo > 0:
  990. 'Your mother knows you masturbate with a dildo.'
  991. else
  992. 'Your mother thinks that you are a virgin.'
  993. end
  994. if brotherSex = 10:
  995. 'You and your brother have professed forbidden love to each other.'
  996. elseif brotherSex = 9:
  997. 'You and your brother are siblings with benefits.'
  998. elseif evgenQW >= 4 and fame['pav_slut'] >= 250:
  999. 'Your brother thinks you are a total whore.'
  1000. elseif evgenQW >= 3:
  1001. 'Your brother thinks you are a slut.'
  1002. elseif brotherSex > 4:
  1003. 'You are in a sexual relationship with your brother'
  1004. elseif brotherknowslut = 1:
  1005. 'Your brother saw semen on your body and thinks that you fuck around.'
  1006. elseif brotherknowslut >= 2:
  1007. 'Your brother saw you in the park screwing Gopniks.'
  1008. else
  1009. 'Your brother has a good opinion of you.'
  1010. end
  1011. if sisterknowslut > 1 and sisboypartyQW >= 2:
  1012. 'Your sister thinks you are a slut'
  1013. elseif sisterknowslut > 0:
  1014. 'Your sister knows that you sleep around.'
  1015. else
  1016. 'Your sister has a good opinion of you.'
  1017. end
  1018. if brothershowertalk > 0:'<<brothershowertalk>> - Number of conversations you''ve had with your brother in the shower.'
  1019. if brothershowerlook = 1:'You let your brother look at you when you''re shower'
  1020. if brothershave > 0:'<<brothershave>> - Number of times you''ve let your brother watch you shave your pussy'
  1021. if brotherkiss > 0: '<<brotherkiss>> - Number of times you and your brother have kissed'
  1022. if brotherbj > 0:'<<brotherbj>> - Number of times you''ve given your brother blowjobs'
  1023. brothersextotal = brotherfuck + brotheranal
  1024. if brothersextotal > 0:'<<brothersextotal>> - Number of times you''ve had sex with your brother'
  1025. killvar 'brothersextotal'
  1026. end
  1027. *nl
  1028. end
  1029. '<center>Renown in Pavlovsk</center>'
  1030. if Enable_pav_Reputation = 0:
  1031. '<center><a href="exec:Enable_pav_Reputation = 1 & gs ''obj_din'', ''reputation''">Show details</a></center>'
  1032. end
  1033. if Enable_pav_Reputation = 1:
  1034. '<center><a href="exec:Enable_pav_Reputation = 0 & gs ''obj_din'', ''reputation''">Hide details</a></center>'
  1035. '<b>Performer = <<fame[''pav_performer'']>></b>'
  1036. ' Actor = <<fame[''pav_acting'']>>'
  1037. ' Dancer = <<fame[''pav_dance'']>>'
  1038. ' Glamour model = <<fame[''pav_modelling'']>>'
  1039. ' Painter = <<fame[''pav_painting'']>>'
  1040. ' Musician = <<fame[''pav_music'']>>'
  1041. ' Ballet dancer = <<fame[''pav_ballet'']>>'
  1042. '<b>Sex Industry = <<fame[''pav_sexind'']>></b>'
  1043. ' Porn actor = <<fame[''pav_porn'']>>'
  1044. ' Stripper = <<fame[''pav_stripping'']>>'
  1045. '<b>Slut = <<fame[''pav_slut'']>></b>'
  1046. ' Sex = <<fame[''pav_sex'']>>'
  1047. ' Prostitution = <<fame[''pav_prostitute'']>>'
  1048. '<b>Sports = <<fame[''pav_sport'']>></b>'
  1049. ' Kickboxer = <<fame[''pav_kickboxing'']>>'
  1050. ' Runner = <<fame[''pav_running'']>>'
  1051. ' Volleyball player = <<fame[''pav_volleyball'']>>'
  1052. '<b>Intellectual = <<fame[''pav_int'']>></b>'
  1053. ' Chess player = <<fame[''pav_chess'']>>'
  1054. ' Teacher = <<fame[''pav_teaching'']>>'
  1055. '<b>Social = <<fame[''pav_social'']>></b>'
  1056. ' Social media = <<fame[''pav_media'']>>'
  1057. *nl
  1058. end
  1059. '<center>Renown in the city</center>'
  1060. if Enable_city_Reputation = 0:
  1061. '<center><a href="exec:Enable_city_Reputation = 1 & gs ''obj_din'', ''reputation''">Show details</a></center>'
  1062. end
  1063. if Enable_city_Reputation = 1:
  1064. '<center><a href="exec:Enable_city_Reputation = 0 & gs ''obj_din'', ''reputation''">Hide details</a></center>'
  1065. '<b>Performer = <<fame[''city_performer'']>></b>'
  1066. ' Actor = <<fame[''city_acting'']>>'
  1067. ' Dancer = <<fame[''city_dance'']>>'
  1068. ' Glamour model = <<fame[''city_modelling'']>>'
  1069. ' Painter = <<fame[''city_painting'']>>'
  1070. ' Musician = <<fame[''city_music'']>>'
  1071. ' Ballet dancer = <<fame[''city_ballet'']>>'
  1072. '<b>Sex Industry = <<fame[''city_sexind'']>></b>'
  1073. ' Porn actor = <<fame[''city_porn'']>>'
  1074. ' Stripper = <<fame[''city_stripping'']>>'
  1075. '<b>Slut = <<fame[''city_slut'']>></b>'
  1076. ' Sex = <<fame[''city_sex'']>>'
  1077. ' Prostitution = <<fame[''city_prostitute'']>>'
  1078. '<b>Sports = <<fame[''city_sport'']>></b>'
  1079. ' Kickboxer = <<fame[''city_kickboxing'']>>'
  1080. ' Runner = <<fame[''city_running'']>>'
  1081. ' Volleyball player = <<fame[''city_volleyball'']>>'
  1082. '<b>Intellectual = <<fame[''city_int'']>></b>'
  1083. ' Chess player = <<fame[''city_chess'']>>'
  1084. ' Teacher = <<fame[''city_teaching'']>>'
  1085. '<b>Social = <<fame[''city_social'']>></b>'
  1086. ' Social media = <<fame[''city_media'']>>'
  1087. *nl
  1088. end
  1089. '<center>Renown in the old town</center>'
  1090. if Enable_oldtown_Reputation = 0:
  1091. '<center><a href="exec:Enable_oldtown_Reputation = 1 & gs ''obj_din'', ''reputation''">Show details</a></center>'
  1092. end
  1093. if Enable_oldtown_Reputation = 1:
  1094. '<center><a href="exec:Enable_oldtown_Reputation = 0 & gs ''obj_din'', ''reputation''">Hide details</a></center>'
  1095. '<b>Performer = <<fame[''pushkin_performer'']>></b>'
  1096. ' Actor = <<fame[''pushkin_acting'']>>'
  1097. ' Dancer = <<fame[''pushkin_dance'']>>'
  1098. ' Glamour model = <<fame[''pushkin_modelling'']>>'
  1099. ' Painter = <<fame[''pushkin_painting'']>>'
  1100. ' Musician = <<fame[''pushkin_music'']>>'
  1101. ' Ballet dancer = <<fame[''pushkin_ballet'']>>'
  1102. '<b>Sex Industry = <<fame[''pushkin_sexind'']>></b>'
  1103. ' Porn actor = <<fame[''pushkin_porn'']>>'
  1104. ' Stripper = <<fame[''pushkin_stripping'']>>'
  1105. '<b>Slut = <<fame[''pushkin_slut'']>></b>'
  1106. ' Sex = <<fame[''pushkin_sex'']>>'
  1107. ' Prostitution = <<fame[''pushkin_prostitute'']>>'
  1108. '<b>Sports = <<fame[''pushkin_sport'']>></b>'
  1109. ' Kickboxer = <<fame[''pushkin_kickboxing'']>>'
  1110. ' Runner = <<fame[''pushkin_running'']>>'
  1111. ' Volleyball player = <<fame[''pushkin_volleyball'']>>'
  1112. '<b>Intellectual = <<fame[''pushkin_int'']>></b>'
  1113. ' Chess player = <<fame[''pushkin_chess'']>>'
  1114. ' Teacher = <<fame[''pushkin_teaching'']>>'
  1115. '<b>Social = <<fame[''pushkin_social'']>></b>'
  1116. ' Social media = <<fame[''pushkin_media'']>>'
  1117. *nl
  1118. end
  1119. '<center>Renown in the village</center>'
  1120. if Enable_village_Reputation = 0:
  1121. '<center><a href="exec:Enable_village_Reputation = 1 & gs ''obj_din'', ''reputation''">Show details</a></center>'
  1122. end
  1123. if Enable_village_Reputation = 1:
  1124. '<center><a href="exec:Enable_village_Reputation = 0 & gs ''obj_din'', ''reputation''">Hide details</a></center>'
  1125. '<b>Performer = <<fame[''village_performer'']>></b>'
  1126. ' Actor = <<fame[''village_acting'']>>'
  1127. ' Dancer = <<fame[''village_dance'']>>'
  1128. ' Glamour model = <<fame[''village_modelling'']>>'
  1129. ' Painter = <<fame[''village_painting'']>>'
  1130. ' Musician = <<fame[''village_music'']>>'
  1131. ' Ballet dancer = <<fame[''village_ballet'']>>'
  1132. '<b>Sex Industry = <<fame[''village_sexind'']>></b>'
  1133. ' Porn actor = <<fame[''village_porn'']>>'
  1134. ' Stripper = <<fame[''village_stripping'']>>'
  1135. '<b>Slut = <<fame[''village_slut'']>></b>'
  1136. ' Sex = <<fame[''village_sex'']>>'
  1137. ' Prostitution = <<fame[''village_prostitute'']>>'
  1138. '<b>Sports = <<fame[''village_sport'']>></b>'
  1139. ' Kickboxer = <<fame[''village_kickboxing'']>>'
  1140. ' Runner = <<fame[''village_running'']>>'
  1141. ' Volleyball player = <<fame[''village_volleyball'']>>'
  1142. '<b>Intellectual = <<fame[''village_int'']>></b>'
  1143. ' Chess player = <<fame[''village_chess'']>>'
  1144. ' Teacher = <<fame[''village_teaching'']>>'
  1145. '<b>Social = <<fame[''village_social'']>></b>'
  1146. ' Social media = <<fame[''village_media'']>>'
  1147. end
  1148. if film > 0:
  1149. *nl
  1150. '<b>Pornographic Filmography</b>'
  1151. gs 'pornhist', 'short'
  1152. if pfilmSTOP = 0:
  1153. *nl
  1154. '<font color="magenta"><<$pfname>></font> has starred in <b><<film>></b> porn films:'
  1155. *nl
  1156. else
  1157. *nl
  1158. '<font color="magenta"><<$pfname>></font> retired after <b><<film>></b> porn films:'
  1159. *nl
  1160. end
  1161. '<a href="exec:gs ''pornhist'', ''pdetail''">View detailed Filmography</a>'
  1162. *nl
  1163. *p '<<$pfilmhistory>>'
  1164. end
  1165. '</td></tr></table></center>'
  1166. end
  1167. if $ARGS[0] = 'magic':
  1168. *clr & cla
  1169. gs 'obj_din','chartabs'
  1170. '<center><h1>Magic</h1></center>'
  1171. '<center><table width="90%" cellspacing="0" cellpadding="20" valign="top"><tr>'
  1172. '<td cellspacing="0" cellpadding="0" valign="top">'
  1173. if $start_type[1] = 'nomagic':
  1174. 'You are unable to use magic.'
  1175. else
  1176. 'You have <<pcs_mana>> units of mana available to you.'
  1177. !!' Forces Rikudo available to you <<rikudo>> units'
  1178. *nl
  1179. $SpellListStr = "<center>
  1180. <h1>Combat Spells</h1><br>
  1181. <<func('spellBook','list','$combatSpells')>><br>
  1182. <h1>Non-Combat Spells</h1><br>
  1183. <<func('spellBook','list','$nonComSpells')>><br>
  1184. </center>"
  1185. *pl func('cleanHTML',$SpellListStr)
  1186. killvar 'i'
  1187. killvar '$ThisSpellName'
  1188. killvar '$SpellListStr'
  1189. end
  1190. if succubusflag = 1 and sucpcinfo >= 4 and sucskill >= 1:
  1191. '<center><b>Succubus Stats</b></center>'
  1192. *nl
  1193. 'Succubus Level = <<succublvl>>'
  1194. 'Succubus XP = <<succubxp>>'
  1195. '"Food" Energy Reserve = <<0 - succhungry>> day(s)'
  1196. 'Stored Sexual Energy = <<sucexcess>>'
  1197. 'Sexual Energy Storage Capacity = <<sucstorecap>>'
  1198. *nl
  1199. if sucskill >= 2: 'You have learned to increase your storage capacity and to store energy before using it.'
  1200. if sucskill >= 3: 'You have learned to be more efficient in your energy handling.'
  1201. if sucskill >= 4: 'You have learned the accommodation ability.'
  1202. *nl
  1203. !! More to come
  1204. end
  1205. '</td></tr></table></center>'
  1206. end
  1207. if $ARGS[0] = 'pain':
  1208. *clr & cla
  1209. gs 'obj_din','chartabs'
  1210. '<center><h1>Pain</h1></center>'
  1211. '<center><table cellspacing="0" cellpadding="20" valign="top"><tr>'
  1212. '<td cellspacing="0" cellpadding="0" valign="top">'
  1213. if pain['head'] > 0:
  1214. if pain['head'] > 70:
  1215. '<b><font color="red">Your head is in extreme pain.</font></b>'
  1216. elseif pain['head'] > 40:
  1217. 'Your head is very sore.'
  1218. else
  1219. 'Your head hurts.'
  1220. end
  1221. end
  1222. if pain['hair'] > 0:
  1223. if pain['hair'] > 70:
  1224. '<b><font color="red">Your scalp is in extreme pain.</font></b>'
  1225. elseif pain['hair'] > 40:
  1226. 'Your scalp is very sore.'
  1227. else
  1228. 'Your scalp hurts.'
  1229. end
  1230. end
  1231. if pain['ears'] > 0:
  1232. if pain['ears'] > 70:
  1233. '<b><font color="red">Your ears are in extreme pain.</font></b>'
  1234. elseif pain['ears'] > 40:
  1235. 'Your ears are very sore.'
  1236. else
  1237. 'Your ears hurt.'
  1238. end
  1239. end
  1240. if pain['eyebrows'] > 0:
  1241. if pain['eyebrows'] > 70:
  1242. '<b><font color="red">Your eyebrows are in extreme pain.</font></b>'
  1243. elseif pain['eyebrows'] > 40:
  1244. 'Your eyebrows are very sore.'
  1245. else
  1246. 'Your eyebrows hurt.'
  1247. end
  1248. end
  1249. if pain['eyes'] > 0:
  1250. if pain['eyes'] > 70:
  1251. '<b><font color="red">Your eyes are in extreme pain.</font></b>'
  1252. elseif pain['eyes'] > 40:
  1253. 'Your eyes are very sore.'
  1254. else
  1255. 'Your eyes hurt.'
  1256. end
  1257. end
  1258. if pain['cheeks'] > 0:
  1259. if pain['cheeks'] > 70:
  1260. '<b><font color="red">Your cheeks are in extreme pain.</font></b>'
  1261. elseif pain['cheeks'] > 40:
  1262. 'Your cheeks are very sore.'
  1263. else
  1264. 'Your cheeks hurt.'
  1265. end
  1266. end
  1267. if pain['nose'] > 0:
  1268. if pain['nose'] > 70:
  1269. '<b><font color="red">Your nose is in extreme pain.</font></b>'
  1270. elseif pain['nose'] > 40:
  1271. 'Your nose is very sore.'
  1272. else
  1273. 'Your nose hurts.'
  1274. end
  1275. end
  1276. if pain['mouth'] > 0:
  1277. if pain['mouth'] > 70:
  1278. '<b><font color="red">Your mouth is in extreme pain.</font></b>'
  1279. elseif pain['mouth'] > 40:
  1280. 'Your mouth is very sore.'
  1281. else
  1282. 'Your mouth hurts.'
  1283. end
  1284. end
  1285. if pain['jaw'] > 0:
  1286. if pain['jaw'] > 70:
  1287. '<b><font color="red">Your jaw is in extreme pain.</font></b>'
  1288. elseif pain['jaw'] > 40:
  1289. 'Your jaw is very sore.'
  1290. else
  1291. 'Your jaw hurts.'
  1292. end
  1293. end
  1294. if pain['lips'] > 0:
  1295. if pain['lips'] > 70:
  1296. '<b><font color="red">Your lips are in extreme pain.</font></b>'
  1297. elseif pain['lips'] > 40:
  1298. 'Your lips are very sore.'
  1299. else
  1300. 'Your lips hurt.'
  1301. end
  1302. end
  1303. if pain['tongue'] > 0:
  1304. if pain['tongue'] > 70:
  1305. '<b><font color="red">Your tongue is in extreme pain.</font></b>'
  1306. elseif pain['tongue'] > 40:
  1307. 'Your tongue is very sore.'
  1308. else
  1309. 'Your tongue hurts.'
  1310. end
  1311. end
  1312. if pain['throat'] > 0:
  1313. if pain['throat'] > 70:
  1314. '<b><font color="red">Your throat is in extreme pain.</font></b>'
  1315. elseif pain['throat'] > 40:
  1316. 'Your throat is very sore.'
  1317. else
  1318. 'Your throat hurts.'
  1319. end
  1320. end
  1321. if pain['neck'] > 0:
  1322. if pain['neck'] > 70:
  1323. '<b><font color="red">Your neck is in extreme pain.</font></b>'
  1324. elseif pain['neck'] > 40:
  1325. 'Your neck is very sore.'
  1326. else
  1327. 'Your neck hurts.'
  1328. end
  1329. end
  1330. if pain['back'] > 0:
  1331. if pain['back'] > 70:
  1332. '<b><font color="red">Your back is in extreme pain.</font></b>'
  1333. elseif pain['back'] > 40:
  1334. 'Your back is very sore.'
  1335. else
  1336. 'Your back hurts.'
  1337. end
  1338. end
  1339. if pain['asscheeks'] + (spanked * 24) > 0:
  1340. if pain['asscheeks'] + (spanked * 24) > 70:
  1341. '<b><font color="red">Your <a href="exec:view''images/pc/body/spankedass2.jpg''">asscheeks</a> are in extreme pain.</font></b>'
  1342. elseif pain['asscheeks'] + (spanked * 24) > 40:
  1343. '<b><font color="red">Your <a href="exec:view''images/pc/body/spankedass1.jpg''">asscheeks</a> are very sore.</font></b>'
  1344. else
  1345. '<b><font color="red">Your <a href="exec:view''images/pc/body/spankedass.jpg''">asscheeks</a> hurt.</font></b>'
  1346. end
  1347. end
  1348. if pain['asshole'] + (agape * 10) > 0:
  1349. if pain['asshole'] + (agape * 10) > 70:
  1350. '<b><font color="red">You have an extremely sore anus and it is bleeding.</font></b>'
  1351. elseif pain['asshole'] + (agape * 10) > 40:
  1352. '<b><font color="red">You have a very sore anus.</font></b>'
  1353. else
  1354. '<b><font color="red">You have a sore and itchy anus.</font></b>'
  1355. end
  1356. end
  1357. if pain['hips'] > 0:
  1358. if pain['hips'] > 70:
  1359. '<b><font color="red">Your hips are in extreme pain.</font></b>'
  1360. elseif pain['hips'] > 40:
  1361. 'Your hips are very sore.'
  1362. else
  1363. 'Your hips hurt.'
  1364. end
  1365. end
  1366. if pain['thighs'] > 0:
  1367. if pain['thighs'] > 70:
  1368. '<b><font color="red">Your thighs are in extreme pain.</font></b>'
  1369. elseif pain['thighs'] > 40:
  1370. 'Your thighs are very sore.'
  1371. else
  1372. 'Your thighs hurt.'
  1373. end
  1374. end
  1375. if pain['legL'] > 0:
  1376. if pain['legL'] > 70:
  1377. '<b><font color="red">Your left leg is in extreme pain.</font></b>'
  1378. elseif pain['legL'] > 40:
  1379. 'Your left leg is very sore.'
  1380. else
  1381. 'Your left leg hurts.'
  1382. end
  1383. end
  1384. if pain['legR'] > 0:
  1385. if pain['legR'] > 70:
  1386. '<b><font color="red">Your right leg is in extreme pain.</font></b>'
  1387. elseif pain['legR'] > 40:
  1388. 'Your right leg is very sore.'
  1389. else
  1390. 'Your right leg hurts.'
  1391. end
  1392. end
  1393. if pain['feet'] > 0:
  1394. if pain['feet'] > 70:
  1395. '<b><font color="red">Your feet are in extreme pain.</font></b>'
  1396. elseif pain['feet'] > 40:
  1397. 'Your feet are very sore.'
  1398. else
  1399. 'Your feet hurt.'
  1400. end
  1401. end
  1402. if pain['toes'] > 0:
  1403. if pain['toes'] > 70:
  1404. '<b><font color="red">Your toes are in extreme pain.</font></b>'
  1405. elseif pain['toes'] > 40:
  1406. 'Your toes are very sore.'
  1407. else
  1408. 'Your toes foot hurt.'
  1409. end
  1410. end
  1411. if pain['shoulders'] > 0:
  1412. if pain['shoulders'] > 70:
  1413. '<b><font color="red">Your shoulders are in extreme pain.</font></b>'
  1414. elseif pain['shoulders'] > 40:
  1415. 'Your shoulders are very sore.'
  1416. else
  1417. 'Your shoulders hurt.'
  1418. end
  1419. end
  1420. if pain['armL'] > 0:
  1421. if pain['armL'] > 70:
  1422. '<b><font color="red">Your left arm is in extreme pain.</font></b>'
  1423. elseif pain['armL'] > 40:
  1424. 'Your left arm is very sore.'
  1425. else
  1426. 'Your left arm hurts.'
  1427. end
  1428. end
  1429. if pain['armR'] > 0:
  1430. if pain['armR'] > 70:
  1431. '<b><font color="red">Your right arm is in extreme pain.</font></b>'
  1432. elseif pain['armR'] > 40:
  1433. 'Your right arm is very sore.'
  1434. else
  1435. 'Your right arm hurts.'
  1436. end
  1437. end
  1438. if pain['hands'] > 0:
  1439. if pain['hands'] > 70:
  1440. '<b><font color="red">Your hands are in extreme pain.</font></b>'
  1441. elseif pain['hands'] > 40:
  1442. 'Your hands are very sore.'
  1443. else
  1444. 'Your hands hurt.'
  1445. end
  1446. end
  1447. if pain['fingers'] > 0:
  1448. if pain['fingers'] > 70:
  1449. '<b><font color="red">Your fingers are in extreme pain.</font></b>'
  1450. elseif pain['fingers'] > 40:
  1451. 'Your fingers are very sore.'
  1452. else
  1453. 'Your fingers hurt.'
  1454. end
  1455. end
  1456. if pain['chest'] > 0:
  1457. if pain['chest'] > 70:
  1458. '<b><font color="red">Your chest is in extreme pain.</font></b>'
  1459. elseif pain['chest'] > 40:
  1460. 'Your chest is very sore.'
  1461. else
  1462. 'Your chest hurts.'
  1463. end
  1464. end
  1465. if pain['breasts'] > 0:
  1466. if pain['breasts'] > 70:
  1467. '<b><font color="red">Your breasts are in extreme pain.</font></b>'
  1468. elseif pain['breasts'] > 40:
  1469. 'Your breasts are very sore.'
  1470. else
  1471. 'Your breasts hurt.'
  1472. end
  1473. end
  1474. if pain['nipples'] > 0:
  1475. if pain['nipples'] > 70:
  1476. '<b><font color="red">Your nipples are in extreme pain.</font></b>'
  1477. elseif pain['nipples'] > 40:
  1478. 'Your nipples are very sore.'
  1479. else
  1480. 'Your nipples hurt.'
  1481. end
  1482. end
  1483. if pain['ribs'] > 0:
  1484. if pain['ribs'] > 70:
  1485. '<b><font color="red">Your ribs are in extreme pain.</font></b>'
  1486. elseif pain['ribs'] > 40:
  1487. 'Your ribs are very sore.'
  1488. else
  1489. 'Your ribs hurt.'
  1490. end
  1491. end
  1492. if pain['tummy'] > 0:
  1493. if pain['tummy'] > 70:
  1494. '<b><font color="red">Your tummy is in extreme pain.</font></b>'
  1495. elseif pain['tummy'] > 40:
  1496. 'Your tummy is very sore.'
  1497. else
  1498. 'Your tummy hurts.'
  1499. end
  1500. end
  1501. if pain['pubic'] > 0:
  1502. if pain['pubic'] > 70:
  1503. '<b><font color="red">Your pubis is extremely painful.</font></b>'
  1504. elseif pain['pubic'] > 40:
  1505. 'Your pubis is very sore.'
  1506. else
  1507. 'Your pubis hurts.'
  1508. end
  1509. end
  1510. if pain['labia'] > 0:
  1511. if pain['labia'] > 70:
  1512. '<b><font color="red">Your labia is extremely painful.</font></b>'
  1513. elseif pain['labia'] > 40:
  1514. 'Your labia is very sore.'
  1515. else
  1516. 'Your labia hurts.'
  1517. end
  1518. end
  1519. if pain['vaginal'] + (vgape * 8) > 0:
  1520. if pain['vaginal'] + (vgape * 8) > 70:
  1521. '<b><font color="red">You have very sore vagina, you can hardly even walk, while trying to keep your feet apart.</font></b>'
  1522. elseif pain['vaginal'] + (vgape * 8) > 40:
  1523. '<b><font color="red">You have a very sore vagina and you can hardly keep your feet together.</font></b>'
  1524. else
  1525. '<b><font color="red">You have a sore vagina.</font></b>'
  1526. end
  1527. end
  1528. if pain['clitoris'] > 0:
  1529. if pain['clitoris'] > 70:
  1530. '<b><font color="red">Your clitoris is in extreme pain.</font></b>'
  1531. elseif pain['clitoris'] > 40:
  1532. 'Your clitoris is very sore.'
  1533. else
  1534. 'Your clitoris hurts.'
  1535. end
  1536. end
  1537. if pain['urethra'] > 0:
  1538. if pain['urethra'] > 70:
  1539. '<b><font color="red">Your urethra is extremely painful.</font></b>'
  1540. elseif pain['urethra'] > 40:
  1541. 'Your urethra is very sore.'
  1542. else
  1543. 'Your urethra hurts.'
  1544. end
  1545. end
  1546. if pain['cervix'] > 0:
  1547. if pain['cervix'] > 70:
  1548. '<b><font color="red">Your cervix is in extreme pain.</font></b>'
  1549. elseif pain['cervix'] > 40:
  1550. 'Your cervix is very sore.'
  1551. else
  1552. 'Your cervix hurts.'
  1553. end
  1554. end
  1555. '</td></tr></table></center>'
  1556. end
  1557. if $ARGS[0] = 'face':
  1558. !disay image and escription for menu
  1559. *clr
  1560. $BACKIMAGE = ''
  1561. gs 'obj_din','bodytabs'
  1562. '<center><h1>Looks</h1></center>'
  1563. '<center><table width="90%" cellspacing="0" cellpadding="20" valign="top"><tr>'
  1564. '<td cellspacing="0" cellpadding="0" valign="top">'
  1565. $img_temp = func('$face_image')
  1566. '<center><img <<$set_imgh>> src="<<$img_temp>>"></a></center>'
  1567. killvar 'img_temp'
  1568. if avatar_hair = 1:
  1569. 'Your hair: <<$av_hair>>.'
  1570. else
  1571. '<<$hair>>'
  1572. end
  1573. if defcurly = 0 and curly > 0: 'Your curls are good for another <<curly>> days.'
  1574. if defcurly = 1 and straight > 0: 'Your hair should be straight for another <<straight>> days.'
  1575. *nl
  1576. '<<$lip>>'
  1577. '<<$pcs_throat>>'
  1578. '<<$skin>>'
  1579. '<<$glaza>>'
  1580. '<<$pcs_makeup>>.'
  1581. '</td></tr></table></center>'
  1582. end
  1583. if $ARGS[0] = 'body':
  1584. *clr
  1585. gs 'obj_din','bodytabs'
  1586. '<center><h1>Body</h1></center>'
  1587. '<center><table width="90%" cellspacing="0" cellpadding="20" valign="top"><tr>'
  1588. '<td cellspacing="0" cellpadding="0" valign="top">'
  1589. !! This displays the body image; $bodimgsets[x9] is the folder name
  1590. !some in-game script may call this to display image, so leave it be
  1591. $img_temp = func('$body_image','body')
  1592. if $modApi_body_image ! '':
  1593. $img_temp = $modApi_body_image
  1594. end
  1595. '<center><img <<$set_imgh>> src="<<$img_temp>>"></a></center>'
  1596. if $modApi_body_image_msg = '':
  1597. '<<$body_image_msg>>'
  1598. else
  1599. '<<$modApi_body_image_msg>>'
  1600. end
  1601. killvar 'img_temp'
  1602. killvar 'body_image_msg'
  1603. '</td></tr></table></center>'
  1604. end
  1605. if $ARGS[0] = 'clothes':
  1606. *clr
  1607. gs 'obj_din','bodytabs'
  1608. '<center><h1>Clothes</h1></center>'
  1609. '<center><table width="90%" cellspacing="0" cellpadding="20" valign="top"><tr>'
  1610. '<td width="50%" cellspacing="0" cellpadding="20" valign="top">'
  1611. !move image define to $body_image
  1612. !display cloth
  1613. $img_temp = func('$body_image','clothes')
  1614. if $modApi_clothes_image ! '':
  1615. $img_temp = $modApi_clothes_image
  1616. end
  1617. '<center><img <<$set_imgh>> src="<<$img_temp>>"></a></center>'
  1618. if $modApi_clothes_image_msg = '':
  1619. '<<$body_image_msg>>'
  1620. else
  1621. '<<$modApi_clothes_image_msg>>'
  1622. end
  1623. '</td><td width="50%" cellpadding="20" valign="top">'
  1624. !display coat
  1625. $img_temp = func('$body_image','coat')
  1626. if $modApi_coat_image ! '':
  1627. $img_temp = $modApi_coat_image
  1628. end
  1629. '<center><img <<$set_imgh>> src="<<$img_temp>>"></a></center>'
  1630. if $modApi_coat_image_msg = '':
  1631. '<<$body_image_msg>>'
  1632. else
  1633. '<<$modApi_coat_image_msg>>'
  1634. end
  1635. '</td></tr>'
  1636. '</table></center>'
  1637. killvar 'img_temp'
  1638. killvar 'body_image_msg'
  1639. '</td></tr></table></center>'
  1640. end
  1641. if $ARGS[0] = 'panties':
  1642. *clr
  1643. gs 'obj_din','bodytabs'
  1644. '<center><h1>Panties</h1></center>'
  1645. '<center><table width="90%" cellspacing="0" cellpadding="20" valign="top"><tr>'
  1646. '<td cellspacing="0" cellpadding="0" valign="top">'
  1647. $img_temp = func('$body_image','panties')
  1648. if $modApi_panties_image ! '':
  1649. $img_temp = $modApi_panties_image
  1650. end
  1651. '<center><img <<$set_imgh>> src="<<$img_temp>>"></a></center>'
  1652. if $modApi_panties_image_msg = '':
  1653. '<<$body_image_msg>>'
  1654. else
  1655. '<<$modApi_panties_image_msg>>'
  1656. end
  1657. killvar 'img_temp'
  1658. killvar 'body_image_msg'
  1659. '</td></tr></table></center>'
  1660. end
  1661. if $ARGS[0] = 'bra':
  1662. *clr
  1663. gs 'obj_din','bodytabs'
  1664. '<center><h1>Bra</h1></center>'
  1665. '<center><table width="90%" cellspacing="0" cellpadding="20" valign="top"><tr>'
  1666. '<td cellspacing="0" cellpadding="0" valign="top">'
  1667. $img_temp = func('$body_image','bra')
  1668. if $modApi_bra_image ! '':
  1669. $img_temp = $modApi_bra_image
  1670. end
  1671. '<center><img <<$set_imgh>> src="<<$img_temp>>"></a></center>'
  1672. if $modApi_bra_image_msg = '':
  1673. '<<$body_image_msg>>'
  1674. else
  1675. '<<$modApi_bra_image_msg>>'
  1676. end
  1677. killvar 'img_temp'
  1678. killvar 'body_image_msg'
  1679. '</td></tr></table></center>'
  1680. end
  1681. if $ARGS[0] = 'show_tits':
  1682. if pcs_nips >= 40 and pcs_nips < 60 and tits = 2:
  1683. view 'images/pc/body/tits/t<<tits>>_p.jpg'
  1684. else
  1685. view 'images/pc/body/tits/t<<tits>>.jpg'
  1686. end
  1687. end
  1688. if $ARGS[0] = 'show_body':
  1689. $img_temp = func('$body_image','body')
  1690. view '<<$img_temp>>'
  1691. killvar 'img_temp'
  1692. end
  1693. if $ARGS[0] = 'show_teeth':
  1694. if pcs_brace = 1:
  1695. view 'images/pc/body/teeth/brace.jpg'
  1696. elseif pcs_teeth = -1:
  1697. view 'images/pc/body/teeth/goodteeth.jpg'
  1698. elseif pcs_teeth = 1:
  1699. view 'images/pc/body/teeth/badteeth1.jpg'
  1700. elseif pcs_teeth = 2:
  1701. view 'images/pc/body/teeth/badteeth2.jpg'
  1702. else
  1703. view 'images/pc/body/teeth/averageteeth.jpg'
  1704. end
  1705. end
  1706. if $ARGS[0] = 'show_missing_teeth':
  1707. view 'images/pc/body/teeth/missing.jpg'
  1708. end
  1709. if $ARGS[0] = 'shoes':
  1710. *clr
  1711. gs 'obj_din','bodytabs'
  1712. '<center><h1>Shoes</h1></center>'
  1713. '<center><table width="90%" cellspacing="0" cellpadding="20" valign="top"><tr>'
  1714. '<td cellspacing="0" cellpadding="0" valign="top">'
  1715. $img_temp = func('$body_image','shoes')
  1716. if $modApi_shoes_image ! '':
  1717. $img_temp = $modApi_shoes_image
  1718. end
  1719. '<center><img <<$set_imgh>> src="<<$img_temp>>"></a></center>'
  1720. if $modApi_shoes_image_msg = '':
  1721. '<<$body_image_msg>>'
  1722. else
  1723. '<<$modApi_shoes_image_msg>>'
  1724. end
  1725. killvar 'img_temp'
  1726. killvar 'body_image_msg'
  1727. '</td></tr></table></center>'
  1728. end
  1729. if $ARGS[0] = 'tattoos':
  1730. *clr & cla
  1731. gs 'obj_din','bodytabs'
  1732. '<center><h1>Tattoos</h1></center>'
  1733. tatcounter = 0
  1734. '<center>'
  1735. *pl
  1736. if tatfce > 0:
  1737. tatcounter = 1 & *p '<a href="exec: gs ''obj_din'', ''tattooface''">Face</a> | '
  1738. else
  1739. *p 'Face | '
  1740. end
  1741. if tatlip > 0:
  1742. tatcounter = 1 & *p '<a href="exec: gs ''obj_din'', ''tattoolip''">Lip</a> | '
  1743. else
  1744. *p 'Lip | '
  1745. end
  1746. if tatneck > 0:
  1747. tatcounter = 1 & *p '<a href="exec: gs ''obj_din'', ''tattooneck''">Neck</a> | '
  1748. else
  1749. *p 'Neck | '
  1750. end
  1751. if tatback > 0:
  1752. tatcounter = 1 & *p '<a href="exec: gs ''obj_din'', ''tattooback''">Back</a> | '
  1753. else
  1754. *p 'Back | '
  1755. end
  1756. if tatlech > 0:
  1757. tatcounter = 1 & *p '<a href="exec: gs ''obj_din'', ''tattooshoulder''">Shoulder</a> | '
  1758. else
  1759. *p 'Shoulder | '
  1760. end
  1761. if tatbrst > 0:
  1762. tatcounter = 1 & *p '<a href="exec: gs ''obj_din'', ''tattoobreast''">Breast</a> | '
  1763. else
  1764. *p 'Breast | '
  1765. end
  1766. if tatunder > 0:
  1767. tatcounter = 1 & *p '<a href="exec: gs ''obj_din'', ''tattoounder''">Under Breast</a> | '
  1768. else
  1769. *p 'Under Breast | '
  1770. end
  1771. if tatchst > 0:
  1772. tatcounter = 1 & *p '<a href="exec: gs ''obj_din'', ''tattoochest''">Chest</a> | '
  1773. else
  1774. *p 'Chest | '
  1775. end
  1776. if tatside > 0:
  1777. tatcounter = 1 & *p '<a href="exec: gs ''obj_din'', ''tattooside''">Side</a> | '
  1778. else
  1779. *p 'Side | '
  1780. end
  1781. if tatblly > 0:
  1782. tatcounter = 1 & *p '<a href="exec: gs ''obj_din'', ''tattoobelly''">Belly</a>'
  1783. else
  1784. *p 'Belly'
  1785. end
  1786. *pl
  1787. if tatarm > 0:
  1788. tatcounter = 1 & *p '<a href="exec: gs ''obj_din'', ''tattooarm''">Arm</a> | '
  1789. else
  1790. *p 'Arm | '
  1791. end
  1792. if tatwrist > 0:
  1793. tatcounter = 1 & *p '<a href="exec: gs ''obj_din'', ''tattoowrist''">Wrist</a> | '
  1794. else
  1795. *p 'Wrist | '
  1796. end
  1797. if tathand > 0:
  1798. tatcounter = 1 & *p '<a href="exec: gs ''obj_din'', ''tattoohand''">Hand</a> | '
  1799. else
  1800. *p 'Hand | '
  1801. end
  1802. if tatleg > 0:
  1803. tatcounter = 1 & *p '<a href="exec: gs ''obj_din'', ''tattooleg''">Leg</a> | '
  1804. else
  1805. *p 'Leg | '
  1806. end
  1807. if tatankle > 0:
  1808. tatcounter = 1 & *p '<a href="exec: gs ''obj_din'', ''tattoofoot''">Foot</a> | '
  1809. else
  1810. *p 'Foot | '
  1811. end
  1812. if tatupb > 0:
  1813. tatcounter = 1 & *p '<a href="exec: gs ''obj_din'', ''tattootramp''">"Tramp Stamp"</a> | '
  1814. else
  1815. *p 'Tramp Stamp | '
  1816. end
  1817. if tatass > 0:
  1818. tatcounter = 1 & *p '<a href="exec: gs ''obj_din'', ''tattooass''">Butt</a> | '
  1819. else
  1820. *p 'Butt | '
  1821. end
  1822. if tatvag > 0:
  1823. tatcounter = 1 & *p '<a href="exec: gs ''obj_din'', ''tattoovag''">Groin</a>'
  1824. else
  1825. *p 'Groin'
  1826. end
  1827. '</center>'
  1828. if tatcounter = 0:
  1829. 'You have a pristine body. Not in terms of debauchery, but in terms of tattoos.'
  1830. end
  1831. end
  1832. !!Image displays for tattoos
  1833. if $ARGS[0] = 'tattooarm':
  1834. *clr
  1835. gs 'obj_din', 'tattoos'
  1836. *nl
  1837. '<center><img <<$set_imgh>> src="images/pc/body/tattoos/arms/tatarm<<tatarm>>.jpg"></center>'
  1838. end
  1839. if $ARGS[0] = 'tattooass':
  1840. *clr
  1841. gs 'obj_din', 'tattoos'
  1842. *nl
  1843. '<center><img <<$set_imgh>> src="images/pc/body/tattoos/ass/tatass<<tatass>>.jpg"></center>'
  1844. end
  1845. if $ARGS[0] = 'tattooback':
  1846. *clr
  1847. gs 'obj_din', 'tattoos'
  1848. *nl
  1849. '<center><img <<$set_imgh>> src="images/pc/body/tattoos/back/tatback<<tatback>>.jpg"></center>'
  1850. end
  1851. if $ARGS[0] = 'tattoobelly':
  1852. *clr
  1853. gs 'obj_din', 'tattoos'
  1854. *nl
  1855. '<center><img <<$set_imgh>> src="images/pc/body/tattoos/belly/tatblly<<tatblly>>.jpg"></center>'
  1856. end
  1857. if $ARGS[0] = 'tattoobreast':
  1858. *clr
  1859. gs 'obj_din', 'tattoos'
  1860. *nl
  1861. '<center><img <<$set_imgh>> src="images/pc/body/tattoos/breasts/tatbrst<<tatbrst>>.jpg"></center>'
  1862. end
  1863. if $ARGS[0] = 'tattoochest':
  1864. *clr
  1865. gs 'obj_din', 'tattoos'
  1866. *nl
  1867. '<center><img <<$set_imgh>> src="images/pc/body/tattoos/chest/tatchst<<tatchst>>.jpg"></center>'
  1868. end
  1869. if $ARGS[0] = 'tattooface':
  1870. *clr
  1871. gs 'obj_din', 'tattoos'
  1872. *nl
  1873. '<center><img <<$set_imgh>> src="images/pc/body/tattoos/face/tatfce<<tatfce>>.jpg"></center>'
  1874. end
  1875. if $ARGS[0] = 'tattoofoot':
  1876. *clr
  1877. gs 'obj_din', 'tattoos'
  1878. *nl
  1879. '<center><img <<$set_imgh>> src="images/pc/body/tattoos/foot/tatankle<<tatankle>>.jpg"></center>'
  1880. end
  1881. if $ARGS[0] = 'tattooleg':
  1882. *clr
  1883. gs 'obj_din', 'tattoos'
  1884. *nl
  1885. '<center><img <<$set_imgh>> src="images/pc/body/tattoos/legs/tatleg<<tatleg>>.jpg"></center>'
  1886. end
  1887. if $ARGS[0] = 'tattoolip':
  1888. *clr
  1889. gs 'obj_din', 'tattoos'
  1890. *nl
  1891. '<center><img <<$set_imgh>> src="images/pc/body/tattoos/lip/tatlip<<tatlip>>.jpg"></center>'
  1892. end
  1893. if $ARGS[0] = 'tattooneck':
  1894. *clr
  1895. gs 'obj_din', 'tattoos'
  1896. *nl
  1897. '<center><img <<$set_imgh>> src="images/pc/body/tattoos/neck/tatnck<<tatneck>>.jpg"></center>'
  1898. end
  1899. if $ARGS[0] = 'tattoovag':
  1900. *clr
  1901. gs 'obj_din', 'tattoos'
  1902. *nl
  1903. '<center><img <<$set_imgh>> src="images/pc/body/tattoos/pubic/tatvag<<tatvag>>.jpg"></center>'
  1904. end
  1905. if $ARGS[0] = 'tattooshoulder':
  1906. *clr
  1907. gs 'obj_din', 'tattoos'
  1908. *nl
  1909. '<center><img <<$set_imgh>> src="images/pc/body/tattoos/shoulder/tatshldr<<tatlech>>.jpg"></center>'
  1910. end
  1911. if $ARGS[0] = 'tattooside':
  1912. *clr
  1913. gs 'obj_din', 'tattoos'
  1914. *nl
  1915. '<center><img <<$set_imgh>> src="images/pc/body/tattoos/side/tatside<<tatside>>.jpg"></center>'
  1916. end
  1917. if $ARGS[0] = 'tattootramp':
  1918. *clr
  1919. gs 'obj_din', 'tattoos'
  1920. *nl
  1921. '<center><img <<$set_imgh>> src="images/pc/body/tattoos/trampStamp/tatlowbck<<tatupb>>.jpg"></center>'
  1922. end
  1923. if $ARGS[0] = 'tattoounder':
  1924. *clr
  1925. gs 'obj_din', 'tattoos'
  1926. *nl
  1927. '<center><img <<$set_imgh>> src="images/pc/body/tattoos/underBreast/tatundbreast<<tatunder>>.jpg"></center>'
  1928. end
  1929. if $ARGS[0] = 'tattoowrist':
  1930. *clr
  1931. gs 'obj_din', 'tattoos'
  1932. *nl
  1933. '<center><img <<$set_imgh>> src="images/pc/body/tattoos/wrists/tatwrst<<tatwrist>>.jpg"></center>'
  1934. end
  1935. if $ARGS[0] = 'tattoohand':
  1936. *clr
  1937. gs 'obj_din', 'tattoos'
  1938. *nl
  1939. '<center><img <<$set_imgh>> src="images/pc/body/tattoos/hand/tathnd<<tathand>>.jpg"></center>'
  1940. end
  1941. if $ARGS[0] = 'piercing':
  1942. *clr & cla
  1943. gs 'obj_din','bodytabs'
  1944. '<center><h1>Piercings</h1></center>'
  1945. '<center>'
  1946. if pirsA = 0 and pirsB = 0 and pirsC = 0 and pirsD = 0 and pirsE = 0 and pirsF = 0 and pirsN = 0 and pirsG = 0:
  1947. 'You have no piercings.'
  1948. elseif (pirsA = 10000 or pirsA = 0) and (pirsB = 10000 or pirsB = 0) and (pirsC = 10000 or pirsC = 0) and (pirsD = 10000 or pirsD = 0) and (pirsE = 10000 or pirsE = 0) and (pirsF = 10000 or pirsF = 0) and (pirsN = 10000 or pirsN = 0) and (pirsG = 10000 or pirsG = 0):
  1949. 'You are not wearing any piercings'
  1950. else
  1951. *pl
  1952. if pirsA > 0 and pirsA < 10000:
  1953. *p '<a href="exec:gs ''obj_din'', ''pirsA''">Tongue</a> | '
  1954. else
  1955. *p 'Tongue | '
  1956. end
  1957. if pirsB > 0 and pirsB < 10000:
  1958. *p '<a href="exec:gs ''obj_din'', ''pirsB''">Lips</a> | '
  1959. else
  1960. *p 'lips | '
  1961. end
  1962. if pirsC > 0 and pirsC < 10000:
  1963. *p '<a href="exec:gs ''obj_din'', ''pirsC''">Ears</a> | '
  1964. else
  1965. *p 'Ears | '
  1966. end
  1967. if pirsD > 0 and pirsD < 10000:
  1968. *p '<a href="exec:gs ''obj_din'', ''pirsD''">Nose</a> | '
  1969. else
  1970. *p 'Nose | '
  1971. end
  1972. if pirsE > 0 and pirsE < 10000:
  1973. *p '<a href="exec:gs ''obj_din'', ''pirsE''">Eyebrows</a> | '
  1974. else
  1975. *p 'Eyebrows | '
  1976. end
  1977. if pirsF > 0 and pirsF < 10000:
  1978. *p '<a href="exec:gs ''obj_din'', ''pirsF''">Nipples</a> | '
  1979. else
  1980. *p 'Nipples | '
  1981. end
  1982. if pirsN > 0 and pirsN < 10000:
  1983. *p '<a href="exec:gs ''obj_din'', ''pirsN''">Navel</a> | '
  1984. else
  1985. *p 'Navel | '
  1986. end
  1987. if pirsG > 0 and pirsG < 10000:
  1988. *p '<a href="exec:gs ''obj_din'', ''pirsG''">Pussy</a>'
  1989. else
  1990. *p 'Pussy'
  1991. end
  1992. end
  1993. '</center>'
  1994. end
  1995. !! piercing images.
  1996. if $ARGS[0] = 'pirsA':
  1997. *clr
  1998. gs 'obj_din', 'piercing'
  1999. *nl
  2000. '<center><img <<$set_imgh>> src="images/pc/body/piercings/a<<pirsA>>.jpg"></center>'
  2001. end
  2002. if $ARGS[0] = 'pirsB':
  2003. *clr
  2004. gs 'obj_din', 'piercing'
  2005. *nl
  2006. '<center><img <<$set_imgh>> src="images/pc/body/piercings/b<<pirsB>>.jpg"></center>'
  2007. end
  2008. if $ARGS[0] = 'pirsC':
  2009. *clr
  2010. gs 'obj_din', 'piercing'
  2011. *nl
  2012. '<center><img <<$set_imgh>> src="images/pc/body/piercings/c<<pirsC>>.jpg"></center>'
  2013. end
  2014. if $ARGS[0] = 'pirsD':
  2015. *clr
  2016. gs 'obj_din', 'piercing'
  2017. *nl
  2018. '<center><img <<$set_imgh>> src="images/pc/body/piercings/d<<pirsD>>.jpg"></center>'
  2019. end
  2020. if $ARGS[0] = 'pirsE':
  2021. *clr
  2022. gs 'obj_din', 'piercing'
  2023. *nl
  2024. '<center><img <<$set_imgh>> src="images/pc/body/piercings/e<<pirsE>>.jpg"></center>'
  2025. end
  2026. if $ARGS[0] = 'pirsF':
  2027. *clr
  2028. gs 'obj_din', 'piercing'
  2029. *nl
  2030. '<center><img <<$set_imgh>> src="images/pc/body/piercings/f<<pirsF>>.jpg"></center>'
  2031. end
  2032. if $ARGS[0] = 'pirsN':
  2033. *clr
  2034. gs 'obj_din', 'piercing'
  2035. *nl
  2036. '<center><img <<$set_imgh>> src="images/pc/body/piercings/n<<pirsN>>.jpg"></center>'
  2037. end
  2038. if $ARGS[0] = 'pirsG':
  2039. *clr
  2040. gs 'obj_din', 'piercing'
  2041. *nl
  2042. '<center><img <<$set_imgh>> src="images/pc/body/piercings/g<<pirsG>>.jpg"></center>'
  2043. end
  2044. if $ARGS[0] = 'records': gt 'journal', 'records'
  2045. if $ARGS[0] = 'emergency':
  2046. '<center><b>YOU JUST had to use emergency exit, this is only for use when you get a BLANK SCREEN.</b></center>'
  2047. *nl
  2048. '<center><b>DO NOT use this option without a good reason, doing so can cause instability and could damage your save game.</b></center>'
  2049. *nl
  2050. '<center><b>If this was the result of a bug in the game, then please report the issue and when / how it was trigger with as much info as you can on the tfgamesite.com forum.</b></center>'
  2051. *nl
  2052. cla
  2053. act 'Go to Pavlovsk': InSleep = 0 & gt 'pav_residential'
  2054. act 'Go to City Residental': InSleep = 0 & gt 'city_residential'
  2055. if mod_list > 0:
  2056. act 'Disable all mods':
  2057. if input('Are you sure? ALL mod will be disabled!<br>please input <b>qqq</B> to confirm') = 'qqq':
  2058. if mod_list > 0:
  2059. mod_i=mod_list
  2060. :mod_data_remover
  2061. if $mod_name[mod_i] ! '':
  2062. $mod_su_name = 'mod_<<$mod_name[mod_i]>>_onremove'
  2063. if LOC($mod_su_name): gs $mod_su_name
  2064. end
  2065. if mod_i > 0:
  2066. mod_i-=1
  2067. jump 'mod_data_remover'
  2068. end
  2069. killvar '$mod_su_name'
  2070. killvar 'mod_i'
  2071. end
  2072. killqst
  2073. set mod_list=0
  2074. killvar '$mod_name'
  2075. killvar '$mod_version'
  2076. killvar '$mod_author'
  2077. killvar '$mod_desc'
  2078. killvar '$mod_opt'
  2079. msg 'All mod disabled. You can re-install them later.'
  2080. end
  2081. end
  2082. end
  2083. if $loc ! '' and $loc_arg ! '':
  2084. act 'Cancel':gt $loc, $loc_arg
  2085. elseif $loc ! '':
  2086. act 'Cancel':gt $loc
  2087. elseif $curloc ! '':
  2088. act 'Cancel':gt $curloc
  2089. end
  2090. end
  2091. !!quick time changes from the object menu
  2092. if $ARGS[0] = '-1 Hour':
  2093. hour -= 1
  2094. gs 'stat'
  2095. gt $loc, $loc_arg
  2096. end
  2097. if $ARGS[0] = '+1 Hour':
  2098. hour += 1
  2099. gs 'stat'
  2100. gt $loc, $loc_arg
  2101. end
  2102. !! Objects window debug
  2103. !! to turn on showing variables in the Object window type in the console window
  2104. !! objectWindowDebug = 1
  2105. !! to add a variable to the current game type in the console window
  2106. !! gs 'obj_din', 'AddDebugVar', 'grupTipe'
  2107. if $ARGS[0] = 'old':
  2108. killobj
  2109. oldobjmenu = 1
  2110. addobj '<center>Refresh</center>'
  2111. if cheatVars['console'] = 0: addobj '<center>Console</center>'
  2112. addobj '<center>Toggle Debug Variables</center>'
  2113. addobj '<center>Add Debug Variable</center>'
  2114. addobj '<center>Delete Debug Variable</center>'
  2115. addobj '<center>Switch HTML</center>'
  2116. addobj '<center>Toggle Call Trace</center>'
  2117. if cheatVars['time'] = 1:
  2118. addobj '<center>-1 Hour</center>'
  2119. addobj '<center>+1 Hour</center>'
  2120. end
  2121. addobj ''
  2122. addobj '<center><font color = red>Emergency</font></center>'
  2123. addobj ''
  2124. if debug_warning_closed = 0:
  2125. addobj '<center>This window is for debug only and can be safely closed.</center>'
  2126. addobj '<center>Remove debug info</center>'
  2127. end
  2128. if objectWindowDebug = 1:
  2129. addobj '$curloc: <<$curloc>>'
  2130. addobj '$loc: <<$loc>>'
  2131. addobj '$loc_arg: <<$loc_arg>>'
  2132. addobj '$location_type: <<$location_type>>'
  2133. addobj 'week: <<week>>'
  2134. addobj 'daystart: <<daystart>>'
  2135. if ARRSIZE('$ObjDebugVars') > 0:
  2136. i = 0
  2137. :AddDebugVarLoop
  2138. if i < ARRSIZE('$ObjDebugVars'):
  2139. if instr($ObjDebugVars[i],'$') = 1:
  2140. dynamic '$tmp = <<$ObjDebugVars[i]>>'
  2141. addobj '<<$ObjDebugVars[i]>>: <<$tmp>>'
  2142. else
  2143. dynamic 'tmp = <<$ObjDebugVars[i]>>'
  2144. addobj '<<$ObjDebugVars[i]>>: <<tmp>>'
  2145. end
  2146. i += 1
  2147. jump 'AddDebugVarLoop'
  2148. end
  2149. end
  2150. end
  2151. end
  2152. if $ARGS[0] = "AddDebugVar":
  2153. if $ARGS[1] <> '':
  2154. i = ARRSIZE('$ObjDebugVars')
  2155. $ObjDebugVars[i] = '<<$ARGS[1]>>'
  2156. end
  2157. end
  2158. if $ARGS[0] = "DeleteDebugVar":
  2159. if $ARGS[1] <> '':
  2160. if ARRSIZE('$ObjDebugVars') > 0:
  2161. i = 0
  2162. :DeleteDebugVarLoop
  2163. if i < ARRSIZE('$ObjDebugVars'):
  2164. if $ObjDebugVars[i] = $ARGS[1]:
  2165. killvar '$ObjDebugVars', i
  2166. i = ARRSIZE('$ObjDebugVars')
  2167. else
  2168. i += 1
  2169. end
  2170. jump 'DeleteDebugVarLoop'
  2171. end
  2172. end
  2173. end
  2174. end
  2175. if $ARGS[0] = 'wait':
  2176. cla
  2177. $waitStr = input ("How long would you like to wait?<br>(maximum 120 minutes, leave blank or press cancel to wait 15 minutes)<br>Alternatively, input a time to wait until (hh:mm). It is <<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>> now.")
  2178. waiting = 0
  2179. if $waitStr = '':
  2180. waiting = 15
  2181. elseif isnum($waitStr) = 0:
  2182. waiting = val(mid($waitStr, 1,2)) * 60 + val(mid($waitStr, 4,2)) - minut - hour * 60
  2183. else
  2184. waiting = val($waitStr)
  2185. end
  2186. if waiting > 0 and waiting <= 120:
  2187. minut += waiting
  2188. else
  2189. 'Invalid time.'
  2190. end
  2191. gs 'stat'
  2192. gt $loc, $loc_arg
  2193. end
  2194. if $ARGS[0] = 'rest':
  2195. cla
  2196. waiting = input ("How long would you like to rest?<br>(Default 15 minutes, maximum 120 minutes)")
  2197. if waiting = '':
  2198. minut += 15
  2199. elseif waiting > 0 and waiting <= 120:
  2200. minut += waiting
  2201. pcs_mood += 10
  2202. if pcs_sleep < 90 and waiting >= 60:
  2203. pcs_sleep += 10
  2204. end
  2205. elseif waiting <= 0 or waiting > 120:
  2206. 'Invalid time.'
  2207. end
  2208. gs 'stat'
  2209. gt $loc, $loc_arg
  2210. end
  2211. --- obj_din ---------------------------------