obj_din.qsrc 87 KB

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