123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878 |
- # obj_din
- if $ARGS[0] = 'show_tits':
- view 'images/pc/body/tits/t<<tits>>.jpg'
- end
- if $ARGS[0] = 'descrip':
- gs 'body'
- clr
- pl'<center><img src="images/system/icon/description.png"><br></center>'
- pl 'Your name is <<$pcs_firstname>> <<$pcs_lastname>>.'
- !!!0.2.6 extension
- if StoryLine > 0:
- pl 'Your friends and family sometimes call you <<$pcs_nickname>>.'
- else
- pl 'Your friends sometimes call you <<$pcs_nickname>>.'
- end
- !!!
- if succubusflag = 1 and sucpcinfo >= 4: pl 'You are a Succubus.'
- if age = vidage:
- pl 'You are <<age>> years old.'
- else
- pl 'You are <<age>> years old, but you appear to be <<vidage>>.'
- end
- if birthday <= 9 and birthmonth <= 9:
- $birthdayD = '0<<birthday>>.0<<birthmonth>>.<<birthyear>>.'
- elseif birthday > 9 and birthmonth <= 9:
- $birthdayD = '<<birthday>>.0<<birthmonth>>.<<birthyear>>.'
- elseif birthday > 9 and birthmonth > 9:
- $birthdayD = '<<birthday>>.<<birthmonth>>.<<birthyear>>.'
- else
- $birthdayD = '0<<birthday>>.<<birthmonth>>.<<birthyear>>.'
- end
- pl 'Your date of birth is <<$birthdayD>>'
- nl
- pl 'You are <<pcs_hgt>>cm tall and <a href="exec:gs ''obj_din'', ''body''"><<$body>></a>.'
- pl 'Your breasts would be considered an EU <a href="exec:gs ''obj_din'', ''show_tits''"><<$titsize>></a>.'
- pl '<<$nipplesize>>'
- pl '<<$pcs_apprnc>>'
-
- if preg = 1:
- if denypreg = 1 and pregtime > 75:
- pl 'You seem to be putting on a bit of weight, your belly is definitely bigger.'
- elseif pregtime > 196:
- pl '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.'
- elseif pregtime > 130:
- pl 'Your belly is quite swollen now and shows under even the loosest of clothes. You find yourself constantly caressing your belly without realizing it.'
- elseif pregtime > 90 and knowpreg = 1:
- pl '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.'
- elseif pregtime > 90 and knowpreg = 0:
- pl '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.'
- elseif pregtime > 75 and knowpreg = 1:
- pl '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. Speaking of your stomach, you can definitely feel a baby bump now, although it is still hard to see.'
- elseif pregtime > 75 and knowpreg = 0:
- pl '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. Speaking of your stomach, you have developed a bit of a paunch, although it is still hard to see.'
- elseif pregtime > 50:
- pl 'You''ve noticed that your breasts seem firmer lately and your nipples seem to be sticking out more.'
- end
- end
- nl
-
- if avatar_hair = 1:
- pl'Your hair: <<$av_hair>>.'
- else
- pl'<<$hair>>'
- end
- if defcurly = 0 and curly > 0:pl 'Your curls are good for another <<curly>> days.'
- if defcurly = 1 and straight > 0:pl 'Your hair should be straight for another <<straight>> days.'
- nl
- pl '<<$lip>>'
- pl '<<$pcs_throat>>'
- pl '<<$skin>>'
- pl '<<$glaza>>'
- pl '<<$pcs_makeup>>.'
- pl '<<$pcs_leghair>>'
- pl '<<$pcs_pubes>>'
- pl '<<$pcs_vag>>'
- pl '<<$pcs_ass>>'
- nl
- if salo < 10 and musle > 0 and dounspell = 0:pl '<b><font color="red">You are showing signs of malnourishment. You should probably eat more and more often.</font></b>'
- if salo < 10 and musle = 0 and dounspell = 0:pl '<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>'
- if pcs_teeth = 1:$zuba = ' tooth'
- if pcs_teeth >= 2:$zuba = ' teeth'
- if pcs_teeth > 0:pl 'You have lost <<pcs_teeth>><<$zuba>>.'
- !!pl 'pcs_apprnc <<pcs_apprnc>>'
- !!pl 'curlykoef <<curlykoef>> a maximum of 1'
- !!pl 'tits <<tits>> A maximum of 6'
- !!pl 'pcs_lip <<pcs_lip>> a maximum of 4'
- !!pl 'tanKoef <<tanKoef>> a maximum of 1'
- !!pl 'skin <<skin>> a maximum of 4'
- !!pl 'pcs_makeup <<pcs_makeup>> a maximum of 4'
- !!pl 'pcs_lashes <<pcs_lashes>> a maximum of 2'
- !!pl 'pcs_eyesize <<pcs_eyesize>> a maximum of 3'
- !!pl 'bodykoef <<bodykoef>> a maximum of 8'
- !!pl 'legkoef <<legkoef>> a maximum of 3'
- !!pl 'lobkoef <<lobkoef>> a maximum of 3'
- !!pl 'odevnesh <<odevnesh>> a maximum of 15'
- !!pl 'pcs_sweat <<pcs_sweat>> the maximum 0'
- !!pl 'pcs_hairbsh <<pcs_hairbsh>> a maximum of 1'
- !!!!!!!! Maruda Hair Mod
- if pcs_hairlng > 41 and hscrunch >= 1:
- if hscrunchw = 0 and hpingripw = 0:pl 'As you have a scrunchy, you can arrange your hair into a <a href="exec:hscrunchw = 1 & gs ''obj_din'', ''descrip''">ponytail</a>. You have <<hscrunch>> scrunchies left.'
- if hscrunchw = 1:pl 'Remove the <a href="exec:hscrunchw = 0 & gs ''obj_din'', ''descrip''">scrunchie</a> to get rid of the ponytail.'
- end
- if pcs_hairlng > 41 and hpingrip >= 1:
- if hscrunchw = 0 and hpingripw = 0:pl 'You have several clips, pins and grips for you hair. Hence, you can <a href="exec:hpingripw = 1 & gs ''obj_din'', ''descrip''">updo your hair</a>. You have <<hpingrip>> hair accessories at your disposal.'
- if hpingripw = 1:pl 'Let your hair <a href="exec:hpingripw = 0 & gs ''obj_din'', ''descrip''">flow free</a>.'
- end
- if pcs_hairlng > 80 and hscrunch >= 2:
- if hscrunchw = 0 and hpingripw = 0:pl 'You can use two hair ties to make yourself some <a href="exec:hpigtail = 1 & hscrunchw = 2 & gs ''obj_din'', ''descrip''">pigtails</a>.'
- if hscrunchw = 2:pl '<a href="exec:hpigtail = 0 & hscrunchw = 0 & gs ''obj_din'', ''descrip''">Remove</a> your scrunchies and let your hair flow free again.'
- end
- if hscrunch < 1:hscrunchw = 0
- if hpingrip < 1:hpingripw = 0
- if hscrunch < 2:hpigtail = 0
- !!!!!!!! Maruda Hair Mod
- end
- if $ARGS[0] = 'skills':
- clr
- pl'<center><img src="images/system/icon/stats.png"><br></center>'
- pl' <a href="exec:gs ''obj_din'', ''sex_skills''">View Sexual skills</a>'
- nl
- pl 'Attractiveness <<pcs_apprnc>>'
- pl 'Power <<pcs_stren>>'
- pl 'Speed <<speed>>'
- pl 'Agility <<pcs_agil>>'
- pl 'Endurance <<pcs_vital>>'
- pl 'Intelligence <<pcs_intel>>'
- pl 'Spirit <<pcs_sprt>>'
- pl 'Reaction <<pcs_react>>'
- pl 'You are <<$body>>.'
- nl
- !!pl 'Muscles <<$musle>>'
- if pcs_magik > 0:pl 'Magic - <<pcs_magik>>'
- if pcs_jab > 0:pl 'Jabs - <<pcs_jab>>'
- if pcs_punch > 0:pl 'Power Strikes - <<pcs_punch>>'
- if pcs_kick > 0:pl 'Kicks - <<pcs_kick>>'
- if pcs_def > 0:pl 'Defense - <<pcs_def>>'
- if pcs_run > 0:pl 'Running skill - <<pcs_run>>'
- if pcs_vball > 0:pl 'Volleyball skill - <<pcs_vball>>'
- if pcs_servng > 0:pl 'Waitress skill - <<pcs_servng>>'
- if pcs_vokal > 0:pl 'Vocal skill - <<pcs_vokal>>'
- if pcs_danc > 0:pl 'Dancing skill - <<pcs_danc>>'
- if pcs_dancero > 0:pl 'Erotic dancing skill - <<pcs_dancero>>'
- if pcs_dancpol > 0:pl 'Pole dancing skill - <<pcs_dancpol>>'
- if pcs_shoot > 0:pl 'Shooting Accuracy - <<pcs_shoot>>'
- if SchoolAtestat = 0 and StoryLine > 0:
- if pcs_grades >= 90:
- pl 'You are an A+ student.'
- elseif pcs_grades >= 80:
- pl 'You are a bright student, just not the top of your class.'
- elseif pcs_grades >= 70:
- pl 'You are an above average student, but you have to work hard to keep up.'
- elseif pcs_grades >= 60:
- pl 'You are the typical average student. You''re good in the fields you like, but can''t be bothered with the rest.'
- elseif pcs_grades >= 50:
- pl 'You''re not very good in school, you wish you could be somewhere else and your grades show it.'
- elseif pcs_grades >= 40:
- pl 'You are not cut out for school, you skip out most of the time. You wonder how you''re going to manage to get passing grades.'
- else
- pl 'You are the class nitwit. You''re still not sure how you got this far in the first place.'
- end
- if schoolprogul > 1:pl 'Absenteeism in school - <<schoolprogul>> days'
- end
- end
- if $ARGS[0] = 'sex_skills':
- clr
- pl'<center><img src="images/system/icon/stats.png"><br></center>'
- pl'<a href="exec:gs ''obj_din'', ''stats''">To skills main page</a><right><a href="exec:gs ''obj_din'', ''skills''">To characteristics page</a></right>'
- nl
- pl '<b>Sexual characteristics</b>'
- nl
- pl 'Exhibitionism <<pcs_exhibition>>'
- pl 'Exhibitionist sex preference: <<exhibitionism[''pref'']>>'
- pl 'Exhibitionist sex: <<exhibitionism[''exp'']>>'
- if SUB > 0:pl 'Submissiveness <<SUB>>'
- if pcs_dom > 0:pl 'Dominance <<pcs_dom>>'
- pl 'Submissive sex: <<sub[''exp'']>>'
- pl 'Dominant sex: <<dom[''exp'']>>'
- pl 'Lesbian sex preference: <<lesbian[''pref'']>>'
- pl 'Lesbian sex: <<lesbian[''exp'']>>'
- nl
- pl '<b>Fetishes</b>'
- pl 'Feet preference: <<feet[''pref'']>>'
- pl 'Foot jobs / worship: <<feet[''exp'']>>'
- pl 'Deepthroat preference: <<deepthroat[''pref'']>>'
- pl 'Deepthroated: <<deepthroat[''exp'']>>'
- pl 'Group preference: <<group[''pref'']>>'
- pl 'Group sex: <<group[''exp'']>>'
- pl 'Gangbang preference: <<gangbang[''pref'']>>'
- pl 'Gangbangs: <<gangbang[''exp'']>>'
- pl 'Humiliation preference: <<humiliation[''pref'']>>'
- pl 'Humiliation experiences: <<humiliation[''exp'']>>'
- pl 'Prostitution preference: <<prostitution[''pref'']>>'
- pl 'Prostituted yourself: <<prostitution[''exp'']>>'
- pl 'Bondage preference: <<bound[''pref'']>>'
- pl 'Bondage play: <<bound[''exp'']>>'
- pl 'Masochism preference: <<maso[''pref'']>>'
- pl 'Masochism experiences: <<maso[''exp'']>>'
- pl 'Bestiality encounters: <<beast[''pref'']>>'
- pl 'Bestiality experience: <<beast[''exp'']>>'
- pl 'Rough sex preference: <<rough[''pref'']>>'
- pl 'Rough sex: <<rough[''exp'']>>'
- pl 'Incest preference: <<incest[''pref'']>>'
- pl 'Incestuous sex: <<incest[''exp'']>>'
- nl
- end
- if $ARGS[0] = 'husb_cheat_count':
- if husband > 0:
- if guy > before_h_guy :
- guy_cheat += guy - guy_cheat
- before_h_guy = guy
- end
- if girl > before_h_girl:
- girl_cheat += girl - before_h_girl
- before_h_girl = girl
- end
- end
- if before_h_girl > 0 and before_h_guy > 0:
- pl'During your marriage you have cheated with your husband with <<guy_cheat>> guys and <<girl_cheat>> girls.'
- elseif before_h_guy > 0:
- pl'During your marriage you have cheated with your husband with <<guy_cheat>> guys.'
- elseif before_h_girl > 0:
- pl'During your marriage you have cheated with your husband with <<girl_cheat>> girls.'
- end
- end
- if $ARGS[0] = 'stats':
- clr
- pl'<center><img src="images/system/icon/statistics.png"><br></center>'
- nl
- nl
- nl
- pl' <a href="exec:gs ''obj_din'', ''stats_gen''">View general statistics</a>'
- pl' <a href="exec:gs ''obj_din'', ''stats_achievements''">View achievements</a>'
- pl' <a href="exec:gs ''obj_din'', ''skills''">View characteristics page</a>'
- pl' <a href="exec:gs ''obj_din'', ''stats_sex''">View sex statistics</a>'
- nl
- nl
- pl' <a href="exec:gs ''obj_din'', ''stats_att''">View attribute details</a>'
- nl
- pl'Detailed statistics:'
- pl' <a href="exec:gs ''obj_din'', ''stats_mental''">View Mental Skills</a>'
- pl' <a href="exec:gs ''obj_din'', ''stats_sport''">View Sport skills</a>'
- pl' <a href="exec:gs ''obj_din'', ''stats_beauty''">View Beauty/Modelling skills</a>'
- pl' <a href="exec:gs ''obj_din'', ''stats_artistic''">View Artistic skills</a>'
- pl' <a href="exec:gs ''obj_din'', ''stats_job''">View Job skills</a>'
-
- end
- if $ARGS[0] = 'stats_gen':
- clr
- pl'<center><img src="images/system/icon/statistics.png"><br></center>'
- pl'<a href="exec:gs ''obj_din'', ''stats''">Return to statistics main page</a>'
- nl
- if opPRE = 0:pl 'It has been <<daystart>> days since the game started.'
- nl
- if BuyHous = 2 and ArendHouseSL >0:
- pl 'You have rented an apartment in the residential area for <<ArendHouseSL>> days.'
- if money >= 6000 or stolmoney >= 6000 or money + stolmoney >= 6000 or karta + bankDebtLimit >= 6000:
- *P ' Renew with '
- if money >= 6000:
- *P ' <a href="exec:money -= 6000 & housr = 1 & BuyHous = 2 & ArendHouseSL += 30" & gs ''$menu_obnovit''>cash</a>'
- elseif stolmoney >= 6000:
- *P ' <a href="exec:stolmoney -= 6000 & housr = 1 & BuyHous = 2 & ArendHouseSL += 30" & gs ''$menu_obnovit''>cash from drawer</a>'
- elseif money + stolmoney >= 6000:
- !both < 6000, so money = money - 6000 + stolmoney
- *P ' <a href="exec:money -= 6000 - stolmoney & stolmoney = 0 & housr = 1 & BuyHous = 2 & ArendHouseSL += 30" & gs ''$menu_obnovit''>cash from purse and drawer</a>'
- end
- !from purse, drawer or both
- if karta >= 6000:
- *P ' <a href="exec:karta -= 6000 & housr = 1 & BuyHous = 2 & ArendHouseSL += 30 & gs ''$menu_obnovit''">bank account</a>'
- elseif karta + bankDebtLimit >= 6000:
- *P ' <a href="exec:karta -= 6000 & housr = 1 & BuyHous = 2 & ArendHouseSL += 30 & gs ''$menu_obnovit''">bank account, but you will be overdrawn.</a>'
- end
- else
- *P ' But you can''t afford to pay the rent right now.'
- end
- nl
- end
-
- if kid = 1:
- pl 'You have 1 child:'
- else
- pl 'You have <<kid>> children:'
- end
- if kid > 0:
- k = 0
- :kidloop
- if k < kid:
- gs 'obj_din','kidlist',k
- k += 1
- jump 'kidloop'
- end
- end
- if workPTU > 1:pl 'Reputation as a teacher <<teachlevel>>'
- nl
- if npc_QW['A192'] > 0:pl 'Friendship with Nastya <<npc_QW[''A192'']>>'
- if npc_rel['A218'] > 0:pl 'Friendship with Tanya <<npc_rel[''A218'']>>'
- if npc_rel['A219'] > 0:pl 'Friendship with Kat <<npc_rel[''A219'']>>'
- if npc_rel['A220'] > 0:pl 'Friendship with Vika <<npc_rel[''A220'']>>'
- if npc_rel['A93'] > 0:pl 'Friendship with Ira <<npc_rel[''A93'']>>'
- if npc_rel['A43'] > 0:pl 'Friendship with Tamara <<npc_rel[''A43'']>>'
- if alla > 0:pl 'Friendship with Alla <<alla>>'
- if masha > 0:pl 'Friendship with Masha <<masha>>'
- if npc_rel['A41'] > 0:pl 'Friendship with Givi K. <<npc_rel[''A41'']>>'
- if npc_rel['A42'] > 0:pl 'Friendship with Ashot <<npc_rel[''A42'']>>'
- if Dmitry > 0:pl 'Friendship with Dima <<Dmitry>>'
- if afra > 0:pl 'Friendship with blacks <<afra>>'
- if npc_rel['A69'] > 0:pl'Friendship with Mikhail Nikolaevich <<npc_rel[''A69'']>>'
- !!!WD: Formatting
- if (npc_rel['A93'] + npc_rel['A41'] + npc_rel['A42'] + npc_rel['A43'] + afra + gosh + npc_rel['A220'] + npc_rel['A219'] + npc_QW['A192'] + npc_rel['A218']) > 0:nl
- end
- if $ARGS[0] = 'kidlist':
- kidnumber = ARGS[1]
- if kidage[kidnumber] < 1:
- if (month - monthkid[kidnumber]) < 1 and (day-daykid[kidnumber]) < 7:
- kiddaycalc[kidnumber] = day - daykid[kidnumber]
- if kiddaycalc[kidnumber] = 0:
- $kidagetext[kidnumber] = 'was born today'
- elseif kiddaycalc[kidnumber] = 1:
- $kidagetext[kidnumber] = 'is <<kiddaycalc[kidnumber]>> day old'
- else
- $kidagetext[kidnumber] = 'is <<kiddaycalc[kidnumber]>> days old'
- end
- elseif (month - monthkid[kidnumber]) < 1 :
- kiddaycalc[kidnumber] = (day - daykid[kidnumber]) / 7
- if kiddaycalc[kidnumber] = 1:
- $kidagetext[kidnumber] = 'is <<kiddaycalc[kidnumber]>> week old'
- else
- $kidagetext[kidnumber] = 'is <<kiddaycalc[kidnumber]>> weeks old'
- end
- else
- kidmonthcalc[kidnumber] = (month - monthkid[kidnumber])
- if kidmonthcalc[kidnumber] = 1:
- $kidagetext[kidnumber] = 'is <<kidmonthcalc[kidnumber]>> month old'
- else
- $kidagetext[kidnumber] = 'is <<kidmonthcalc[kidnumber]>> months old'
- end
- end
- else
- if kidage[kidnumber] = 1:
- $kidagetext[kidnumber] = 'is <<kidage[kidnumber]>> year old'
- else
- $kidagetext[kidnumber] = 'is <<kidage[kidnumber]>> years old'
- end
- end
- if polkid[kidnumber] = 0:
- $sdtext[kidnumber] = 'daughter'
- else
- $sdtext[kidnumber] = 'son'
- end
- if polkid[kidnumber] = 0:
- $kidPosProPN[kidnumber] = 'She'
- else
- $kidPosProPN[kidnumber] = 'He'
- end
- 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]>>'
- pl '.'
- nl
- killvar 'kidnumber'
- end
- if $ARGS[0] = 'stats_achievements':
- clr
- pl'<center><img src="images/system/icon/statistics.png"><br></center>'
- pl'<a href="exec:gs ''obj_din'', ''stats''">Return to statistics main page</a>'
- nl
- if KikWinPro > 0 or KikLossPro > 0 or KikDrawPro > 0:
- pl 'Professional Kickboxing Record:Win (Victory KO) - Loss (Defeat KO) - Draw'
- pl '<<KikWinPro>> (<<KikWinProKO>>KO) - <<KikLossPro>> (<<KikLossProKO>>KO) - <<KikDrawPro>>'
- end
- if Win > 0 or Loss > 0:pl 'Wins in fights <<Win>>, losses in fights <<Loss>>' & nl
- if razradKik > 0:pl '<<$razradKik>>'
- if KikWinAm > 0 or KikLossAm > 0 or KikDrawAm > 0:
- pl 'Amateur Kickboxing Record:<br>Wins: <<KikWinAm>> (<<KikWinAmKO>> by KO) - Losses: <<KikLossAm>> (<<KikLossAmKO>> by KO) - Draws: <<KikDrawAm>>'
- nl
- end
- if razradKik > 0:
- if razradKik = 1:$razradKik = 'You have earned green sash(rank 4) in kickboxing'
- if razradKik = 2:$razradKik = 'You have earned purple sash(rank 5) in kickboxing'
- if razradKik = 3:$razradKik = 'You have earned blue sash(rank 6) in kickboxing'
- if razradKik = 4:$razradKik = 'You have earned brown sash(rank 7) in kickboxing'
- if razradKik = 5:$razradKik = 'You have earned black sash, 1st dan in kickboxing'
- nl
- end
- if kolsorev > 0:pl 'You have run in <<kolsorev>> races'
- if swinbeg >= 1:pl 'You have <<swinbeg/3>> trophies from local racing competitions'
- if bronzebeg > 0:pl '<<bronzebeg>> - bronze medals for running'
- if silverbeg > 0:pl '<<silverbeg>> - silver medals for running'
- if goldbeg > 0:pl '<<goldbeg>> - gold medals for running'
- if razradbegEB > 0:pl '<<razradbegEB>> times bronze medalist at European Championship'
- if razradbegES > 0:pl '<<razradbegES>> runner up at European Championship'
- if razradbegEG > 0:pl '<<razradbegEG>> times European champion.'
- if razradbegIB > 0:pl '<<razradbegIB>> times bronze medalist at World Championship'
- if razradbegIS > 0:pl '<<razradbegIS>> runner up at World Championship'
- if razradbegIG > 0:pl '<<razradbegIG>> times World champion'
- if razradbeg > 0:
- if razradbeg = 1:pl 'You have third sports category for event'
- if razradbeg = 2:pl 'You 2nd sports category for event'
- if razradbeg = 3:pl 'You 1st sports category for event'
- if razradbeg = 4:pl 'You have the title of Candidate Master of Sports for event'
- if razradbeg = 5:pl 'You have the title of Master of Sports in the run'
- if razradbeg >= 6:pl 'You have the title of International Master of Sports for event'
- nl
- end
-
- if chess_win > 0 or chess_loss > 0:pl'Chess Record: Win <<chess_win>>, Loss <<chess_loss>>'
- if chess_rank > 0:
- if chess_rank = 1:pl'You have mastered the basics of chess'
- if chess_rank = 2:pl'You are starting to get good at chess'
- if chess_rank = 3:pl'You are a good chess player'
- if chess_rank = 4:pl'You are an excellent chess player'
- if chess_rank = 5:pl'You are a candidate for chess master'
- if chess_rank = 6:pl'You are a chess master'
- if chess_rank = 7:pl'You are a chess Grandmaster'
- end
- if chess_world_rank > 0:
- if chess_world_rank = 1:pl'The title of FIDE Master Chess'
- if chess_world_rank = 2:pl'The title of International Chess Master'
- if chess_world_rank = 3:pl'The title of International Grandmaster Chess'
- end
- nl
- !!!
- if modelfoto > 0:
- pl'<<modelfoto>> - Number of times you have worked as a model'
- if modelfoto_fashion > 0: pl'<<modelfoto_fashion>> - Number of times you have been a fashion model'
- if modelfoto_ero_clo > 0: pl'<<modelfoto_ero_clo>> - Number of times you have been an erotic clothing model'
- if modelfoto_bikini > 0: pl'<<modelfoto_bikini>> - Number of times you have been a bikini modelling'
- if modelfoto_lingerie > 0: pl'<<modelfoto_lingerie>> - Number of times you have been a lingerie model'
- if modelfoto_nip > 0: pl'<<modelfoto_nip>> - Number of times you have been a model with intentional nip slips'
- if modelfoto_topless > 0: pl'<<modelfoto_topless>> - Number of times you have been a topless model'
- if modelfoto_nude > 0: pl'<<modelfoto_nude>> - Number of times you have been a nude model'
- nl
- end
- if maxdamage > 0:pl 'The impact force on the dynamometer <<maxdamage>> kgN' & nl
- if stripdancesum > 0 and hidden_stripdancesum = 0:
- pl 'You have been dancing <<stripdancesum>> times in the stripclub'
- elseif stripdancesum = 0 and hidden_stripdancesum > 0:
- pl 'You have been dancing <<hidden_stripdancesum>> times in the stripclub, but you do nor remember it'
- elseif stripdancesum > 0 and hidden_stripdancesum > 0:
- pl 'You have been dancing <<stripdancesum+hidden_stripdancesum>> times in the stripclub, but you only remember <<stripdancesum>> times'
- end
- if profiDanceTime > 0:pl 'You danced <<profiDanceTime>> times professionally.'
- if SchoolAtestat = 1:pl 'You have finished school.'
- if diplom = 1:pl 'You graduated.'
- if teachlevel > 0:pl 'Your credibility as a teacher is <<teachlevel>>'
- !WD:FORMATING
- if (maxdamage + stripdancesum + profiDanceTime + SchoolAtestat + diplom + teachlevel) > 0:nl
-
- if film > 0:
- gs 'pornhist', 'short'
- $retired=''
- if pfilmSTOP = 1:$retired='retired after '
- pl '<hr>'
- pl '<b><i><a href="exec:gs ''pornhist'', ''pdetail''">Filmography</a> of <font color="magenta"><<$pfname>></font></i></b>'
- pl ' (<<$retired>><b><<film>></b> porn movie):'
- p '<<$pfilmhistory>>'
- end
- end
- if $ARGS[0] = 'stats_sex':
- clr
- pl'<center><img src="images/system/icon/statistics.png"><br></center>'
- pl'<a href="exec:gs ''obj_din'', ''stats''">Return to statistics main page</a>'
- nl
- !Sex stats
- if pcs_throat > 0:pl '<<$pcs_throat>>'
- if pcs_vag > 0:pl '<<$pcs_vag>>'
- if pcs_vag = 0 and (sex = 0 or stat['vaginal'] = 0) and stat['hidden_vaginal'] = 0:
- pl 'You are a virgin.'
- elseif pcs_vag = 0 and (sex = 0 or stat['vaginal'] = 0) and stat['hidden_vaginal'] > 0:
- pl 'You think you are a virgin, but you are not.'
- end
- if pcs_ass > 0:pl '<<$pcs_ass>>'
- nl
- if mastr > 0 or stat['mast'] > 0:pl 'Times you have masturbated: <<stat[''mast'']>>'
- if stat['porn'] > 0:pl 'Times you have watched porn: <<stat[''porn'']>>'
- if stat['flash_breasts'] > 0 or stat['hidden_flash_breasts'] > 0:pl 'Times you have flashed your tits (known/unknown): <<stat[''flash_breasts'']>>/<<stat[''hidden_flash_breasts'']>>'
- if stat['flash_ass'] > 0 or stat['hidden_flash_ass'] > 0:pl 'Times you have flashed your ass (known/unknown): <<stat[''flash_ass'']>>/<<stat[''hidden_flash_ass'']>>'
- if stat['flash_pussy'] > 0 or stat['hidden_flash_pussy'] > 0:pl 'Times you have flashed your pussy (known/unknown): <<stat[''flash_pussy'']>>/<<stat[''hidden_flash_pussy'']>>'
- if stat['voyeur'] > 0:pl 'Times you have watched other people fuck: <<stat[''voyeur'']>>'
- if spank > 0:pl 'You have had your ass spanked <<spank>> times'
- if guy > 0 and hidden_guy = 0:
- pl 'You had sex with <<guy>> guys.'
- elseif guy = 0 and hidden_guy > 0:
- pl 'You had sex with <<hidden_guy>> guys, but you do not have any recollection of it. You still think of yourself as a virgin.'
- elseif guy > 0 and hidden_guy > 0:
- pl 'You had sex with <<guy+hidden_guy>> guys, but you know only about <<guy>> of them.'
- end
- if girl > 0 and hidden_girl = 0:
- pl 'You had sex with <<girl>> girls.'
- elseif girl = 0 and hidden_girl > 0:
- pl 'You had sex with <<hidden_girl>> girls, but you do not have any recollection of any of it.'
- elseif girl > 0 and hidden_girl > 0:
- pl 'You had sex with <<girl>> girls.'
- end
- if divorced > 0:pl 'You were married <<divorced>> times.'
- if suprdolg > 0:pl 'You performed your conjugal duty for your husband <<suprdolg>> times'
- if rape > 0 and hidden_rape = 0:
- pl 'You have been raped <<rape>> times'
- elseif rape = 0 and hidden_rape > 0:
- pl 'You have been raped <<hidden_rape>> times, but you do not remember any of it'
- elseif rape > 0 and hidden_rape > 0:
- pl 'You have been raped <<rape+hidden_rape>> times, but you only remember <<rape>> of them'
- end
- nl
- pl '<b>Number of times you have performed sexual activities:</b>'
- if hj > 0 or stat['hj'] > 0 or stat['hidden_hj'] > 0:
- pl 'Jerked men off (known/unknown): <<stat[''hj'']>>/<<stat[''hidden_hj'']>>'
- if hja > 0:pl 'Jerked off your boyfriend: <<hja>>'
- end
- if stat['footjob'] > 0 or stat['hidden_footjob'] > 0:pl 'Jerked men off with your feet (known/unknown): <<stat[''footjob'']>>/<<stat[''hidden_footjob'']>>'
- if bj > 0 or stat['bj'] > 0 or stat['hidden_bj'] > 0:
- pl 'Sucked cock (known/unknown): <<stat[''bj'']>>/<<stat[''hidden_bj'']>>'
- if bja > 0:pl 'Sucked your boyfriends cock: <<bja>>'
- if gloryhole > 0 or hidden_gloryhole > 0:pl 'Sucked cock in a gloryhole (known/unknown): <<gloryhole>>/<<hidden_gloryhole>>'
- end
- if sex > 0 or stat['vaginal'] > 0 or stat['hidden_vaginal'] > 0:pl 'Vaginal sex (known/unknown): <<stat[''vaginal'']>>/<<stat[''hidden_vaginal'']>>'
- if sexa > 0:pl 'Vaginal sex with your boyfriend: <<sexa>>'
- if (pcs_cp_safe_known + pcs_cp_notsafe_known + pcs_cp_risky_known) > 0:
- pl ' Known vaginal creampies:'
- if pcs_cp_safe_known > 0: pl ' Safe: <<pcs_cp_safe_known>>'
- if pcs_cp_notsafe_known > 0: pl ' Likely safe: <<pcs_cp_notsafe_known>>'
- if pcs_cp_risky_known > 0: pl ' Risky: <<pcs_cp_risky_known>>'
- end
- if (pcs_cp_safe_unknown + pcs_cp_notsafe_unknown + pcs_cp_risky_unknown) > 0:
- pl ' Unknown vaginal creampies:'
- if pcs_cp_safe_unknown > 0: pl ' Safe: <<pcs_cp_safe_unknown>>'
- if pcs_cp_notsafe_unknown > 0: pl ' Likely safe: <<pcs_cp_notsafe_unknown>>'
- if pcs_cp_risky_unknown > 0: pl ' Risky: <<pcs_cp_risky_unknown>>'
- end
- if lesbian > 0 or hidden_lesbian > 0:
- if hidden_lesbian = 0:pl 'Lesbian sex (known/unknown): <<lesbian>>/<<hidden_lesbian>>'
- end
- if sexfuta > 0 or hidden_sexfuta > 0:pl 'Sex with tgirls (known/unknown): <<sexfuta>>/<<hidden_sexfuta>>'
- if anal > 0 or stat['anal'] or stat['hidden_anal']:
- pl 'Anal sex (known/unknown): <<stat[''anal'']>>/<<stat[''hidden_anal'']>>'
- if anala > 0:pl 'Anal sex with your boyfriend: <<anala>>'
- end
- if pcs_acp_known > 0: pl ' Known anal creampies: <<pcs_acp_known>>'
- if pcs_acp_unknown > 0: pl ' Unknown anal creampies: <<pcs_acp_unknown>>'
- if gang > 0 or hidden_gang > 0:pl 'Group sex (known/unknown): <<gang>>/<<hidden_gang>>'
- if kuni > 0 or stat['cuni'] > 0:pl 'Received cunnilingus: <<stat[''cuni'']>>'
- if stat['vaginal_finger'] > 0:pl 'Fingered: <<stat[''vaginal_finger'']>>'
- if stat['vaginal_fist'] > 0:pl 'Fisted: <<stat[''vaginal_fist'']>>'
- if stat['vaginal_dildo'] > 0:pl 'Fucked a dildo: <<stat[''vaginal_dildo'']>>'
- if stat['vaginal_strap'] > 0:pl 'Fucked with a strap-on: <<stat[''vaginal_strap'']>>'
- if stat['vaginal_vibe'] > 0:pl 'Clitoral / Vaginal vibrator: <<stat[''vaginal_vibe'']>>'
- if stat['trib'] > 0:pl 'Tribalism: <<stat[''trib'']>>'
- if stat['anal_finger'] > 0:pl 'Anally fingered: <<stat[''anal_finger'']>>'
- if stat['anal_fist'] > 0:pl 'Anally fisted: <<stat[''anal_fist'']>>'
- if stat['rimming'] > 0:pl 'Ass rimmed: <<stat[''rimming'']>>'
- if stat['anal_dildo'] > 0:pl 'Anal sex with a dildo: <<stat[''anal_dildo'']>>'
- if stat['anal_strap'] > 0:pl 'Ass fucked with a strap-on: <<stat[''anal_strap'']>>'
- if stat['anal_vibe'] > 0:pl 'Anal vibrator: <<stat[''anal_vibe'']>>'
- nl
- if stat['cuni_give'] > 0:pl 'Performed cunnilingus: <<stat[''cuni_give'']>>'
- if stat['vaginal_finger_give'] > 0:pl 'Fingered a girl: <<stat[''vaginal_finger_give'']>>'
- if stat['vaginal_fist_give'] > 0:pl 'Fisted a girl: <<stat[''vaginal_fist_give'']>>'
- if stat['vaginal_dildo_give'] > 0:pl 'Dildoed a girl: <<stat[''vaginal_dildo_give'']>>'
- if stat['vaginal_strap_give'] > 0:pl 'Strap-on fucked a girl: <<stat[''vaginal_strap_give'']>>'
- if stat['vaginal_vibe_give'] > 0:pl 'Used vibrator on a girl: <<stat[''vaginal_vibe_give'']>>'
- if stat['rimming_give'] > 0:pl 'Rimmed someone: <<stat[''rimming_give'']>>'
- if stat['anal_finger_give'] > 0:pl 'Fingered someone else''s ass: <<stat[''anal_finger_give'']>>'
- if stat['anal_fist_give'] > 0:pl 'Fisted someone else''s ass: <<stat[''anal_fist_give'']>>'
- if stat['anal_dildo_give'] > 0:pl 'Dildoed someone else''s ass: <<stat[''anal_dildo_give'']>>'
- if stat['anal_vibe_give'] > 0:pl 'Used a vibrator on someone else''s ass: <<stat[''anal_vibe_give'']>>'
- if stat['anal_strap_give'] > 0 or stat['anal_strap_give'] > 0:pl 'Fucked someone else''s ass with a strap-on: <<stat[''anal_strap_give'']>>'
- nl
- if slutty > 0 or hidden_slutty > 0:
- if bordelslutty = 0:pl 'Sold your body <<slutty>> times.'
- if bordelslutty > 0:pl 'Sold your body <<slutty>> times, including <<bordelslutty>> times in a brothel.'
- if hidden_slutty > 0:pl 'Sold your body <<hidden_slutty>> times, and gave all the money to your therapist. You do not remember any of it.'
- end
- if orgasm > 0:pl 'Experienced orgasm <<orgasm>> times.'
- if analorgasm > 0 :pl 'You''ve had <<analorgasm>> anal orgasms.'
- if swallow > 0:pl 'Sperm swallowed <<swallow>> times.'
- if facial > 0:pl 'You have taken <<facial>> facials.'
- if frot > 0 or hump > 0:pl 'Your clothes have been come on <<frot + hump>> times.'
- if zoo > 0:pl 'Had sex with animals <<zoo>> times.'
- if pee > 0:pl 'You pissing <<pee>> times.'
- if swallowpee > 0:pl 'You swallowed urine <<swallowpee>> times.'
- !!!WD:FORMATING
- if (slutty + pfilmSTOP + film + orgasm + analorgasm + swallow + facial + frot + zoo + pee) > 0:nl
- !!!
-
- gs 'obj_din', 'husb_cheat_count'
- end
- if $ARGS[0] = 'stats_att':
- clr
- pl'<center><img src="images/system/icon/statistics.png"><br></center>'
- pl'<a href="exec:gs ''obj_din'', ''stats''">Return to statistics main page</a>'
- nl
- pl 'Strength <<stren_lvl>>'
- pl 'Agility <<agil_lvl>>'
- pl 'Endurance <<vital_lvl>>'
- pl 'Intelligence <<intel_lvl>>'
- pl 'Mental Agility <<react_lvl>>'
- pl 'Sprit <<sprt_lvl>>'
- pl 'Charisma <<chrsm_lvl>>'
- pl 'Perception <<prcptn_lvl>>'
- if MagikDostup = 0: pl 'Magic <<magik_lvl>>'
- end
- if $ARGS[0] = 'stats_mental':
- clr
- pl'<center><img src="images/system/icon/statistics.png"><br></center>'
- pl'<a href="exec:gs ''obj_din'', ''stats''">Return to statistics main page</a>'
- nl
- pl'Spell Casting <<pcs_splcstng>>'
- pl'People skills <<pcs_humint>>'
- pl'Persuasion <<pcs_persuas>>'
- pl'Observation <<pcs_observ>>'
- end
- if $ARGS[0] = 'stats_sport':
- clr
- pl'<center><img src="images/system/icon/statistics.png"><br></center>'
- pl'<a href="exec:gs ''obj_din'', ''stats''">Return to statistics main page</a>'
- nl
- pl'Jabs <<pcs_jab>>'
- pl'Power Strikes <<pcs_punch>>'
- pl'Kicks <<pcs_kick>>'
- pl'Defence <<pcs_def>>'
- pl'Running <<pcs_run>>'
- pl'Volleyball <<pcs_vball>>'
- pl'Football <<pcs_ftbll>>'
- pl'Wrestling <<pcs_wrstlng>>'
- pl'Marksmanship <<pcs_shoot>>'
- pl'Chess <<pcs_chess>>'
- pl'Ice Skating <<pcs_icesktng>>'
- pl'Gaming <<pcs_ttgmng>>'
- end
- if $ARGS[0] = 'stats_beauty':
- clr
- pl'<center><img src="images/system/icon/statistics.png"><br></center>'
- pl'<a href="exec:gs ''obj_din'', ''stats''">Return to statistics main page</a>'
- nl
- pl'Makeup Skill <<pcs_makupskl>>'
- pl'Modern Dancing <<pcs_danc>>'
- pl'Erotic Dancing <<pcs_dancero>>'
- pl'Pole Dancing <<pcs_dancpol>>'
- pl'Modelling <<pcs_mdlng>>'
- end
- if $ARGS[0] = 'stats_artistic':
- clr
- pl'<center><img src="images/system/icon/statistics.png"><br></center>'
- pl'<a href="exec:gs ''obj_din'', ''stats''">Return to statistics main page</a>'
- nl
- pl'Singing <<pcs_vokal>>'
- pl'Instrumental Music <<pcs_instrmusic>>'
- pl'Photography <<pcs_photoskl>>'
- pl'Artistic Skills <<pcs_artskls>>'
- end
- if $ARGS[0] = 'stats_job':
- clr
- pl'<center><img src="images/system/icon/statistics.png"><br></center>'
- pl'<a href="exec:gs ''obj_din'', ''stats''">Return to statistics main page</a>'
- nl
- pl'Computer Skill <<pcs_compskl>>'
- pl'Hacking <<pcs_comphckng>>'
- pl'Handy-work <<pcs_hndiwrk>>'
- pl'Tailoring <<pcs_sewng>>'
- pl'Serving <<pcs_servng>>'
- pl'Medicine <<pcs_medcn>>'
- pl'Teacher credibility <<teachlevel>>'
- end
- if $ARGS[0] = 'reputation':
- clr
- pl '<center><img src="images/system/icon/fame.png"><br></center>'
- nl
- pl'<a href="exec:gs ''obj_din'', ''rep2''">Go to special/family reputation page</a>'
- nl
- pl 'Total fame = <<pcs_fame>>'
- if Enable_glo_fame = 0:
- pl '<a href="exec:Enable_glo_fame = 1 & gs ''obj_din'', ''reputation''">Show details</a>'
- end
- if Enable_glo_fame = 1:
- pl '<a href="exec:Enable_glo_fame = 0 & gs ''obj_din'', ''reputation''">Hide details</a>'
- pl 'Fame as a performer = <<fame_performer>>'
- if fame_performer = 0:
- pl 'You are not famous enough as a performer to be known outside of any local areas.'
- end
- nl
- pl 'Fame in the sex industry = <<fame_sexind>>'
- if fame_performer = 0:
- pl 'You are not famous enough in the industry to be known outside of any local areas.'
- end
- nl
- pl 'Fame as a slut = <<fame_slut>>'
- if fame_performer = 0:
- pl 'You are not famous enough as a slut to be known outside of any local areas.'
- end
- nl
- pl 'Fame in sports = <<fame_sport>>'
- if fame_performer = 0:
- pl 'You are not a famous enough athlete to be known outside of any local areas.'
- end
- nl
- pl 'Fame as an intellectual = <<fame_int>>'
- if fame_performer = 0:
- pl 'You are not famous enough as a intellectual to be known outside of any local areas.'
- end
- nl
- pl 'Fame through society = <<fame_social>>'
- if fame_performer = 0:
- pl 'You are not famous enough as a socialite to be known outside of any local areas.'
- end
- end
- nl
- pl'Fame in Pavlovsk'
- if Enable_pav_fame = 0:
- pl '<a href="exec:Enable_pav_fame = 1 & gs ''obj_din'', ''reputation''">Show details</a>'
- end
- if Enable_pav_fame = 1:
- pl '<a href="exec:Enable_pav_fame = 0 & gs ''obj_din'', ''reputation''">Hide details</a>'
- pl '<b>Performer = <<pav_performer>></b>'
- pl ' Actor = <<pav_acting>>'
- pl ' Dancer = <<pav_dance>>'
- pl ' Painter = <<pav_painting>>'
- pl ' Musician = <<pav_music>>'
- pl ' Ballet dancer = <<pav_ballet>>'
- pl '<b>Sex Industry = <<pav_sexind>></b>'
- pl ' Glamour model = <<pav_modelling>>'
- pl ' Porn actor = <<pav_porn>>'
- pl ' Stripper = <<pav_stripping>>'
- pl '<b>Slut = <<pav_slut>></b>'
- pl ' Sex = <<pav_sex>>'
- pl ' Prostitution = <<pav_prostitute>>'
- pl '<b>Sports = <<pav_sport>></b>'
- pl ' Kickboxer = <<pav_kickboxing>>'
- pl ' Runner = <<pav_running>>'
- pl ' Volleyball player = <<pav_volleyball>>'
- pl '<b>Intellectual = <<pav_int>></b>'
- pl ' Chess player = <<pav_chess>>'
- pl ' Teacher = <<pav_teaching>>'
- pl '<b>Social = <<pav_social>></b>'
- pl ' Social media = <<pav_media>>'
- end
- nl
- pl'Fame in the city'
- if Enable_city_fame = 0:
- pl '<a href="exec:Enable_city_fame = 1 & gs ''obj_din'', ''reputation''">Show details</a>'
- end
- if Enable_city_fame = 1:
- pl '<a href="exec:Enable_city_fame = 0 & gs ''obj_din'', ''reputation''">Hide details</a>'
- pl '<b>Performer = <<city_performer>></b>'
- pl ' Actor = <<city_acting>>'
- pl ' Dancer = <<city_dance>>'
- pl ' Painter = <<city_painting>>'
- pl ' Musician = <<city_music>>'
- pl ' Ballet dancer = <<city_ballet>>'
- pl '<b>Sex Industry = <<city_sexind>></b>'
- pl ' Glamour model = <<city_modelling>>'
- pl ' Porn actor = <<city_porn>>'
- pl ' Stripper = <<city_stripping>>'
- pl '<b>Slut = <<city_slut>></b>'
- pl ' Sex = <<city_sex>>'
- pl ' Prostitution = <<city_prostitute>>'
- pl '<b>Sports = <<city_sport>></b>'
- pl ' Kickboxer = <<city_kickboxing>>'
- pl ' Runner = <<city_running>>'
- pl ' Volleyball player = <<city_volleyball>>'
- pl '<b>Intellectual = <<city_int>></b>'
- pl ' Chess player = <<city_chess>>'
- pl ' Teacher = <<city_teaching>>'
- pl '<b>Social = <<city_social>></b>'
- pl ' Social media = <<city_media>>'
- end
- nl
- pl'Fame in the old town'
- if Enable_oldtown_fame = 0:
- pl '<a href="exec:Enable_oldtown_fame = 1 & gs ''obj_din'', ''reputation''">Show details</a>'
- end
- if Enable_oldtown_fame = 1:
- pl '<a href="exec:Enable_oldtown_fame = 0 & gs ''obj_din'', ''reputation''">Hide details</a>'
- pl '<b>Performer = <<oldtown_performer>></b>'
- pl ' Actor = <<oldtown_acting>>'
- pl ' Dancer = <<oldtown_dance>>'
- pl ' Painter = <<oldtown_painting>>'
- pl ' Musician = <<oldtown_music>>'
- pl ' Ballet dancer = <<oldtown_ballet>>'
- pl '<b>Sex Industry = <<oldtown_sexind>></b>'
- pl ' Glamour model = <<oldtown_modelling>>'
- pl ' Porn actor = <<oldtown_porn>>'
- pl ' Stripper = <<oldtown_stripping>>'
- pl '<b>Slut = <<oldtown_slut>></b>'
- pl ' Sex = <<oldtown_sex>>'
- pl ' Prostitution = <<oldtown_prostitute>>'
- pl '<b>Sports = <<oldtown_sport>></b>'
- pl ' Kickboxer = <<oldtown_kickboxing>>'
- pl ' Runner = <<oldtown_running>>'
- pl ' Volleyball player = <<oldtown_volleyball>>'
- pl '<b>Intellectual = <<oldtown_int>></b>'
- pl ' Chess player = <<oldtown_chess>>'
- pl ' Teacher = <<oldtown_teaching>>'
- pl '<b>Social = <<oldtown_social>></b>'
- pl ' Social media = <<oldtown_media>>'
- end
- nl
- pl'Fame in the village'
- if Enable_village_fame = 0:
- pl '<a href="exec:Enable_village_fame = 1 & gs ''obj_din'', ''reputation''">Show details</a>'
- end
- if Enable_village_fame = 1:
- pl '<a href="exec:Enable_village_fame = 0 & gs ''obj_din'', ''reputation''">Hide details</a>'
- pl '<b>Performer = <<village_performer>></b>'
- pl ' Actor = <<village_acting>>'
- pl ' Dancer = <<village_dance>>'
- pl ' Painter = <<village_painting>>'
- pl ' Musician = <<village_music>>'
- pl ' Ballet dancer = <<village_ballet>>'
- pl '<b>Sex Industry = <<village_sexind>></b>'
- pl ' Glamour model = <<village_modelling>>'
- pl ' Porn actor = <<village_porn>>'
- pl ' Stripper = <<village_stripping>>'
- pl '<b>Slut = <<village_slut>></b>'
- pl ' Sex = <<village_sex>>'
- pl ' Prostitution = <<village_prostitute>>'
- pl '<b>Sports = <<village_sport>></b>'
- pl ' Kickboxer = <<village_kickboxing>>'
- pl ' Runner = <<village_running>>'
- pl ' Volleyball player = <<village_volleyball>>'
- pl '<b>Intellectual = <<village_int>></b>'
- pl ' Chess player = <<village_chess>>'
- pl ' Teacher = <<village_teaching>>'
- pl '<b>Social = <<village_social>></b>'
- pl ' Social media = <<village_media>>'
- end
- end
- if $ARGS[0] = 'rep2':
- clr
- pl'<center><img src="images/system/icon/reputation.png"><br></center>'
- nl
- pl'<a href="exec:gs ''obj_din'', ''reputation''">Return to fame</a>'
- if rinslut > 1 and kavslut > 0:pl'In the residential area of you are known as a whore that sleeps with Caucasians.'
- if afra > 80: pl'In the student hostel, you are known for bedding blacks.'
- if opusk > 0 or gnewQW >= 5: pl'In the residential area it is well known by all the guys that you are a whore.'
- if StoryLine = 1:
- nl
- if motherKnowSpravka > 0 and motherKnowWhore > 0:
- pl'Your mother knows, that you are sexually active and considers you a slut.'
- elseif motherKnowWhore > 0:
- pl'Your mother thinks you are a whore.'
- elseif motherKnowSpravka > 0:
- pl'Your mother knows that you are sexually active.'
- else
- pl'Your mother thinks that you are a virgin.'
- end
- if evgenQW >= 4 and brotherSex >= 1:
- pl'Your brother thinks you are a total whore.'
- elseif brotherSex >= 1:
- pl'Your brother thinks you are a slut.'
- elseif evgenQW >= 3:
- pl'Your brother thinks you are a slut.'
- elseif brotherknowslut = 1:
- pl'Your brother saw semen on your body and thinks that you fuck around.'
- elseif brotherknowslut >= 2:
- pl'Your brother saw you in the park screwing Gopnik.'
- else
- pl'Your brother has a good opinion of you.'
- end
- if sisterknowslut > 1 and sisboypartyQW = 2:
- pl'Your sister thinks you are a slut'
- elseif sisterknowslut > 0:
- pl'Your sister knows you sleep around.'
- else
- pl'Your sister has a good opinion of you.'
- end
- end
- end
- if $ARGS[0] = 'magic':
- clr
- if pcs_magik = 0:
- pl'You are unable to use magic.'
- elseif pcs_magik > 0:
- pl'You have <<pcs_manna>> units of manna available to you.'
- !!' Forces Rikudo available to you <<rikudo>> units'
- nl
- pl'<b>Base Spells:</b>'
- nl
- if spelltuman > 0:pl'Cover area in fog, a great way to conceal yourself while attacking the enemy and increase the chance to dodge attacks (cost 10 units of manna)'
- nl
- if spellklon > 0:pl'Swap places with a clone of yourself, good way to avoid enemy attacks and make enemy waste their power (cost 15 units of manna)'
- nl
- if spellstun > 0:pl'Stun, a great way to stop the enemy. They will not be able to defend or attack. ( cost 20 units of manna)'
- nl
- if spellweap > 0 and weapon > 0:pl'Infuse weapon with energy'
- nl
- if spellwind > 0:pl'Blow away the fog, dissipates any mist over the battlefield.'
- nl
- if spellklon2 > 0:pl'Substitute yourself with 3 clones, the enemy will not be able to get to you, until they destroy all of your clones. (cost 45 units of manna)'
- nl
- if spellenergo > 0:pl'Create a weak energy shield, protecting you against all attacks of the physical nature, even if the enemy attack exceeds the capabilities of the shield and destroys it, you will still be protected from damage(cost 50 units of manna)'
- nl
- if spellinit > 0:pl'Create a slight delay of time, a powerful spell that allows you to move faster, steal initiative and increase the probability of hitting (cost 60 units of manna)'
- nl
- if spellhel > 0:pl'Battle Heal, restores or adds 400 Health units in exchange for 400 units of manna.'
- nl
- if stihia = 1:pl'<b>Elemental Spells Fire:</b>'
- nl
- if spellfire1 = 1:pl'Flame. Deals little damage. (Cost 10 manna)'
- nl
- if spellfire2 = 1:pl'The release of fire. It causes great damage. (Cost 100 manna)'
- nl
- if spellfire3 = 1:pl'Fire Barrier, It creates a shield with strength of 750 units. (Cost 150 manna)'
- nl
- if spellfire4 = 1:pl'Firestorm. It causes great damage, difficult to dodge. (Cost 250 manna)'
- nl
- if spellfire5 = 1:pl'Flame Shield, It creates a shield with strength of 2500 units. (Cost 500 manna)'
- nl
- if stihia = 2:pl'<b>Elements Lightning Spells:</b>'
- nl
- if spellele1 = 1:pl'Zap. Deals very little damage. (Cost 10 manna)'
- nl
- if spellele2 = 1:pl'Lightning. Inflicts above average damage. (Cost 100 manna)'
- nl
- if spellele3 = 1:pl'Electric barrier, It creates a shield with strength of 1500 units. (Cost 150 manna)'
- nl
- if spellele4 = 1:pl'Dance of thousand birds. Deals very high damage. (Cost 250 manna)'
- nl
- if spellele5 = 1:pl'Dancing Sphere, It creates a shield with strength of 5000 units. (Cost 500 manna)'
- nl
- if stihia = 3:pl'<b>Spells Earth Elements:</b>'
- nl
- if spellert1 = 1:pl'Quicksand, immobilizes the opponent in the quicksand trap and causes little damage. (Cost 10 manna)'
- nl
- if spellert2 = 1:pl'Active protection, It creates a protective sphere of land, Gain 2500 units of health and mana, this protection restores itself within 10 absorbing strokes 20 Units in the course of manna. (Cost 100 manna)'
- nl
- if spellert3 = 1:pl'Abyss, rend earth asunder beneath their feet inflicting high damage to the enemy and depriving him of the ability to move. (Cost 150 manna)'
- nl
- if spellert4 = 1:pl'Absolute protection, It creates a huge protective sphere of land, which regenerates itself every turn and attacks the enemy. (Cost 250 manna)'
- nl
- if spellert5 = 1:pl'Sando, two huge plates come out of the earth and crush the enemy inflicting huge damage and depriving them of the ability to move. Cost 500 manna.'
- nl
- if stihia = 4:pl'<b>Wind Elemental Spells:</b>'
- nl
- if spellwind1 = 1:pl'Wind gust, It causes very little damage but destroys clones and fog, very difficult to dodge. (Cost 10 manna)'
- nl
- if spellwind2 = 1:pl'The horrific pressure, causing moderate damage and destroying clones and fog, very difficult to dodge. (Cost 100 manna)'
- nl
- if spellwind3 = 1:pl'Vacuum Sphere, It creates a shield with strength of 1500 units. (Cost 150 manna)'
- nl
- if spellwind4 = 1:pl'Vacuum shells, high damage and kills clones and fog, very difficult to dodge. (Cost 250 manna)'
- nl
- if spellwind5 = 1:pl'Devouring vacuum, sucks enemy shield destroying whatever strength it had left. (Cost 500 manna)'
- nl
- if stihia = 5:pl'<b>Water Elemental Spell:</b>'
- nl
- if spellwater1 = 1:pl'Drain mana, It causes very little damage and absorbs a lot of mana. Cost 10 manna.'
- nl
- if spellwater2 = 1:pl'Flood, causes moderate damage and absorbs large amount of mana. Cost 100 manna.'
- nl
- if spellwater3 = 1:pl'Blister, It creates a protective sphere of water with strength of 1500 units against all impacts, this protection restores itself within 10 absorbing strokes 20 Units in the course of manna. (Cost 150 manna)'
- nl
- if spellwater4 = 1:pl'Water shark rocket, causes great damage and absorbs a lot of mana. Cost 250 manna.'
- nl
- if spellwater5 = 1:pl'The Great Flood, It creates a huge sphere that absorbs water and drains opponents mana, passing it to strengthen protection. Cost 500 manna.'
- nl
- end
-
- if succubusflag = 1 and sucpcinfo >= 4 and sucskill >= 1:
- pl'<center><b>Succubus Stats</b></center>'
- nl
- pl'Succubus Level = <<succublvl>>'
- pl'Succubus XP = <<succubxp>>'
- pl'"Food" Energy Reserve = <<0 - succhungry>> day(s)'
- pl'Stored Sexual Energy = <<sucexcess>>'
- pl'Sexual Energy Storage Capacity = <<sucstorecap>>'
- nl
- if sucskill >= 2: pl'You have learned to increase your storage capacity and to store energy before using it.'
- if sucskill >= 3: pl'You have learned to be more efficient in your energy handling.'
- if sucskill >= 4: pl'You have learned the accommodation ability.'
- nl
- !! More to come
- end
- end
- if $ARGS[0] = 'pain':
- clr
- pl'<center>Pain</center>'
- pl
- pl
- if pain['head'] > 0:
- if pain['head'] > 70:
- pl '<b><font color="red">Your head is in extreme pain.</font></b>'
- elseif pain['head'] > 40:
- pl 'Your head is very sore.'
- else
- pl 'Your head hurts.'
- end
- end
- if pain['hair'] > 0:
- if pain['hair'] > 70:
- pl '<b><font color="red">Your scalp is in extreme pain.</font></b>'
- elseif pain['hair'] > 40:
- pl 'Your scalp is very sore.'
- else
- pl 'Your scalp hurts.'
- end
- end
- if pain['ears'] > 0:
- if pain['ears'] > 70:
- pl '<b><font color="red">Your ears are in extreme pain.</font></b>'
- elseif pain['ears'] > 40:
- pl 'Your ears are very sore.'
- else
- pl 'Your ears hurt.'
- end
- end
- if pain['eyebrows'] > 0:
- if pain['eyebrows'] > 70:
- pl '<b><font color="red">Your eyebrows are in extreme pain.</font></b>'
- elseif pain['eyebrows'] > 40:
- pl 'Your eyebrows are very sore.'
- else
- pl 'Your eyebrows hurt.'
- end
- end
- if pain['eyes'] > 0:
- if pain['eyes'] > 70:
- pl '<b><font color="red">Your eyes are in extreme pain.</font></b>'
- elseif pain['eyes'] > 40:
- pl 'Your eyes are very sore.'
- else
- pl 'Your eyes hurt.'
- end
- end
- if pain['cheeks'] > 0:
- if pain['cheeks'] > 70:
- pl '<b><font color="red">Your cheeks are in extreme pain.</font></b>'
- elseif pain['cheeks'] > 40:
- pl 'Your cheeks are very sore.'
- else
- pl 'Your cheeks hurt.'
- end
- end
- if pain['nose'] > 0:
- if pain['nose'] > 70:
- pl '<b><font color="red">Your nose is in extreme pain.</font></b>'
- elseif pain['nose'] > 40:
- pl 'Your nose is very sore.'
- else
- pl 'Your nose hurts.'
- end
- end
- if pain['mouth'] > 0:
- if pain['mouth'] > 70:
- pl '<b><font color="red">Your mouth is in extreme pain.</font></b>'
- elseif pain['mouth'] > 40:
- pl 'Your mouth is very sore.'
- else
- pl 'Your mouth hurts.'
- end
- end
- if pain['lips'] > 0:
- if pain['lips'] > 70:
- pl '<b><font color="red">Your lips are in extreme pain.</font></b>'
- elseif pain['lips'] > 40:
- pl 'Your lips are very sore.'
- else
- pl 'Your lips hurt.'
- end
- end
- if pain['tongue'] > 0:
- if pain['tongue'] > 70:
- pl '<b><font color="red">Your tongue is in extreme pain.</font></b>'
- elseif pain['tongue'] > 40:
- pl 'Your tongue is very sore.'
- else
- pl 'Your tongue hurts.'
- end
- end
- if pain['throat'] > 0:
- if pain['throat'] > 70:
- pl '<b><font color="red">Your throat is in extreme pain.</font></b>'
- elseif pain['throat'] > 40:
- pl 'Your throat is very sore.'
- else
- pl 'Your throat hurts.'
- end
- end
- if pain['neck'] > 0:
- if pain['neck'] > 70:
- pl '<b><font color="red">Your neck is in extreme pain.</font></b>'
- elseif pain['neck'] > 40:
- pl 'Your neck is very sore.'
- else
- pl 'Your neck hurts.'
- end
- end
- if pain['back'] > 0:
- if pain['back'] > 70:
- pl '<b><font color="red">Your back is in extreme pain.</font></b>'
- elseif pain['back'] > 40:
- pl 'Your back is very sore.'
- else
- pl 'Your back hurts.'
- end
- end
- if pain['asscheeks'] + (spanked * 24) > 0:
- if pain['asscheeks'] + (spanked * 24) > 70:
- pl '<b><font color="red">Your <a href="exec:view''images/pc/body/spankedass2.jpg''">asscheeks</a> are in extreme pain.</font></b>'
- elseif pain['asscheeks'] + (spanked * 24) > 40:
- pl 'Your <a href="exec:view''images/pc/body/spankedass1.jpg''">asscheeks</a> are very sore.'
- else
- pl 'Your <a href="exec:view''images/pc/body/spankedass.jpg''">asscheeks</a> hurt.'
- end
- end
- if pain['asshole'] + (agape * 10) > 0:
- if pain['asshole'] + (agape * 10) > 70:
- pl '<b><font color="red">You an extremely sore anus and it is bleeding.</font></b>'
- elseif pain['asshole'] + (agape * 10) > 40:
- pl '<b><font color="red">You have a very sore anus.</font></b>'
- else
- pl '<b><font color="red">You have a sore and itchy anus.</font></b>'
- end
- end
- if pain['hips'] > 0:
- if pain['hips'] > 70:
- pl '<b><font color="red">Your hips are in extreme pain.</font></b>'
- elseif pain['hips'] > 40:
- pl 'Your hips are very sore.'
- else
- pl 'Your hips hurt.'
- end
- end
- if pain['thighs'] > 0:
- if pain['thighs'] > 70:
- pl '<b><font color="red">Your thighs are in extreme pain.</font></b>'
- elseif pain['thighs'] > 40:
- pl 'Your thighs are very sore.'
- else
- pl 'Your thighs hurt.'
- end
- end
- if pain['legL'] > 0:
- if pain['legL'] > 70:
- pl '<b><font color="red">Your left leg is in extreme pain.</font></b>'
- elseif pain['legL'] > 40:
- pl 'Your left leg is very sore.'
- else
- pl 'Your left leg hurts.'
- end
- end
- if pain['legR'] > 0:
- if pain['legR'] > 70:
- pl '<b><font color="red">Your right leg is in extreme pain.</font></b>'
- elseif pain['legR'] > 40:
- pl 'Your right leg is very sore.'
- else
- pl 'Your right leg hurts.'
- end
- end
- if pain['feet'] > 0:
- if pain['feet'] > 70:
- pl '<b><font color="red">Your feet are in extreme pain.</font></b>'
- elseif pain['feet'] > 40:
- pl 'Your feet are very sore.'
- else
- pl 'Your feet hurt.'
- end
- end
- if pain['toes'] > 0:
- if pain['toes'] > 70:
- pl '<b><font color="red">Your toes are in extreme pain.</font></b>'
- elseif pain['toes'] > 40:
- pl 'Your toes are very sore.'
- else
- pl 'Your toes foot hurt.'
- end
- end
- if pain['shoulders'] > 0:
- if pain['shoulders'] > 70:
- pl '<b><font color="red">Your shoulders are in extreme pain.</font></b>'
- elseif pain['shoulders'] > 40:
- pl 'Your shoulders are very sore.'
- else
- pl 'Your shoulders hurt.'
- end
- end
- if pain['armL'] > 0:
- if pain['armL'] > 70:
- pl '<b><font color="red">Your left arm is in extreme pain.</font></b>'
- elseif pain['armL'] > 40:
- pl 'Your left arm is very sore.'
- else
- pl 'Your left arm hurts.'
- end
- end
- if pain['armR'] > 0:
- if pain['armR'] > 70:
- pl '<b><font color="red">Your right arm is in extreme pain.</font></b>'
- elseif pain['armR'] > 40:
- pl 'Your right arm is very sore.'
- else
- pl 'Your right arm hurts.'
- end
- end
- if pain['hands'] > 0:
- if pain['hands'] > 70:
- pl '<b><font color="red">Your hands are in extreme pain.</font></b>'
- elseif pain['hands'] > 40:
- pl 'Your hands are very sore.'
- else
- pl 'Your hands hurt.'
- end
- end
- if pain['fingers'] > 0:
- if pain['fingers'] > 70:
- pl '<b><font color="red">Your fingers are in extreme pain.</font></b>'
- elseif pain['fingers'] > 40:
- pl 'Your fingers are very sore.'
- else
- pl 'Your fingers hurt.'
- end
- end
- if pain['chest'] > 0:
- if pain['chest'] > 70:
- pl '<b><font color="red">Your chest is in extreme pain.</font></b>'
- elseif pain['chest'] > 40:
- pl 'Your chest is very sore.'
- else
- pl 'Your chest hurts.'
- end
- end
- if pain['breasts'] > 0:
- if pain['breasts'] > 70:
- pl '<b><font color="red">Your breasts are in extreme pain.</font></b>'
- elseif pain['breasts'] > 40:
- pl 'Your breasts are very sore.'
- else
- pl 'Your breasts hurt.'
- end
- end
- if pain['nipples'] > 0:
- if pain['nipples'] > 70:
- pl '<b><font color="red">Your nipples are in extreme pain.</font></b>'
- elseif pain['nipples'] > 40:
- pl 'Your nipples are very sore.'
- else
- pl 'Your nipples hurt.'
- end
- end
- if pain['ribs'] > 0:
- if pain['ribs'] > 70:
- pl '<b><font color="red">Your ribs are in extreme pain.</font></b>'
- elseif pain['ribs'] > 40:
- pl 'Your ribs are very sore.'
- else
- pl 'Your ribs hurt.'
- end
- end
- if pain['tummy'] > 0:
- if pain['tummy'] > 70:
- pl '<b><font color="red">Your tummy is in extreme pain.</font></b>'
- elseif pain['tummy'] > 40:
- pl 'Your tummy is very sore.'
- else
- pl 'Your tummy hurts.'
- end
- end
- if pain['pubic'] > 0:
- if pain['pubic'] > 70:
- pl '<b><font color="red">Your pubis is extremely painful.</font></b>'
- elseif pain['pubic'] > 40:
- pl 'Your pubis is very sore.'
- else
- pl 'Your pubis hurts.'
- end
- end
- if pain['labia'] > 0:
- if pain['labia'] > 70:
- pl '<b><font color="red">Your labia is extremely painful.</font></b>'
- elseif pain['labia'] > 40:
- pl 'Your labia is very sore.'
- else
- pl 'Your labia hurts.'
- end
- end
- if pain['vaginal'] + (vgape * 8) > 0:
- if pain['vaginal'] + (vgape * 8) > 70:
- pl '<b><font color="red">You have very sore vagina, you can hardly even walk, while trying to keep your feet apart.</font></b>'
- elseif pain['vaginal'] + (vgape * 8) > 40:
- pl '<b><font color="red">You have a very sore vagina and you can hardly keep your feet together.</font></b>'
- else
- pl '<b><font color="red">You have a sore vagina.</font></b>'
- end
- end
- if pain['clitoris'] > 0:
- if pain['clitoris'] > 70:
- pl '<b><font color="red">Your clitoris is in extreme pain.</font></b>'
- elseif pain['clitoris'] > 40:
- pl 'Your clitoris is very sore.'
- else
- pl 'Your clitoris hurts.'
- end
- end
- if pain['urethra'] > 0:
- if pain['urethra'] > 70:
- pl '<b><font color="red">Your urethra is extremely painful.</font></b>'
- elseif pain['urethra'] > 40:
- pl 'Your urethra is very sore.'
- else
- pl 'Your urethra hurts.'
- end
- end
- if pain['cervix'] > 0:
- if pain['cervix'] > 70:
- pl '<b><font color="red">Your cervix is in extreme pain.</font></b>'
- elseif pain['cervix'] > 40:
- pl 'Your cervix is very sore.'
- else
- pl 'Your cervix hurts.'
- end
- end
- end
- if $ARGS[0] = 'clothes':
- clr
- pl'<center><a href="exec:gs''$menu_obnovit''"><b>Clothes</b></a></center>'
- !move image define to $body_image
-
- !display coat
- $img_temp = FUNC('$body_image','coat')
- if $img_temp ! null: pl '<a href="exec:view ''<<$img_temp>>''"><img <<$set_imgh>> src="<<$img_temp>>"></a>'
- pl '<<$body_image_msg>>'
- pl ''
-
- !display cloth
- $img_temp = FUNC('$body_image','clothes')
- if $img_temp ! null: pl '<a href="exec:view ''<<$img_temp>>''"><img <<$set_imgh>> src="<<$img_temp>>"></a>'
- pl '<<$body_image_msg>>'
-
- killvar 'img_temp'
- killvar 'body_image_msg'
- !{
- if defaultcoat = 0:
- pl 'You have no default coat set.'
- pl 'Your health will suffer if you don''t wear a coat in the winter.'
- else
- pl 'Your current default coat is Coat<<defaultcoat>>.'
- !make sure to sync these with [outdoors]~364
- if defaultcoat < 4:
- pl 'It''ll keep you fairly warm down to -10C.'
- elseif defaultcoat = 4 or defaultcoat = 5 or defaultcoat = 8 or defaultcoat = 10 or defaultcoat = 12:
- pl 'It will handle temperatures down to -20C.'
- elseif defaultcoat = 6 or defaultcoat = 7 or defaultcoat = 9 or defaultcoat = 11:
- pl 'You will be nice and warm even in the depths of winter.'
- else
- pl 'Your health will suffer if you don''t wear a coat in the winter.'
- end
- end
- pl ''
- if $clothingworntype = 'nude' and towel = 1 and $pantyworntype = 'none':
- view 'images/pc/clothing/towel.jpg'
- pl'You are only wearing a towel'
- elseif $clothingworntype = 'nude' and $pantyworntype ! 'none':
- view 'images/pc/clothing/nude.jpg'
- pl'You are only wearing panties'
- elseif $clothingworntype = 'nude' and $pantyworntype = 'none':
- view 'images/pc/clothing/nude1.jpg'
- pl'You are completely naked.'
- else
- view FUNC('$clothing_image', $clothingworntype, clothingwornnumber)
- if PClobimbo = 1:pl 'You are dressed like a bimbo.'
- pl 'You are wearing ' + FUNC('$short_description', $clothingworntype, PCloStyle2) + '<<clothingwornnumber>>.'
- if $clothingworntype ! 'coat' and $clothingworntype ! 'swimwear':
- gs 'clothing_attributes', $clothingworntype, clothingwornnumber
- gs 'clothing_descriptions'
- pl '<<$description>>'
- else
- FUNC('$clothing_name', $clothingworntype, clothingwornnumber)
- end
- nl
- if $clothingworntype = 'uniform':
- if PCloStyle2 = 1:
- pl 'This outfit is considered to be a maid uniform.'
- elseif PCloStyle2 = 3:
- pl 'This is a stripper outfit.'
- else
- pl 'This outfit is a server uniform, suitable for jobs that require one.'
- end
- end
- end
- }
- end
- if $ARGS[0] = 'panties':
- clr
- pl'<center><a href="exec:gs''$menu_obnovit''"><b>Panties</b></a></center>'
- $img_temp = FUNC('$body_image','panties')
- pl '<a href="exec:view ''<<$img_temp>>''"><img <<$set_imgh>> src="<<$img_temp>>"></a>'
- pl '<<$body_image_msg>>'
- killvar 'img_temp'
- killvar 'body_image_msg'
- !{
- if $pantyworntype = 'none':
- if pcs_pubes <= 3:
- view 'images/pc/body/pussy/pussy.jpg'
- elseif pcs_pubes <= 10:
- view 'images/pc/body/pussy/stpussy.jpg'
- elseif pcs_pubes <= 20:
- view 'images/pc/body/pussy/spussy.jpg'
- else
- view 'images/pc/body/pussy/hpussy.jpg'
- end
- else
- view FUNC('$panty_image', $pantyworntype, pantywornnumber)
- end
- }
- end
- if $ARGS[0] = 'bra':
- clr
- pl'<center><a href="exec:gs''$menu_obnovit''"><b>Bra</b></a></center>'
- $img_temp = FUNC('$body_image','bra')
- pl '<a href="exec:view ''<<$img_temp>>''"><img <<$set_imgh>> src="<<$img_temp>>"></a>'
- pl '<<$body_image_msg>>'
- killvar 'img_temp'
- killvar 'body_image_msg'
- end
- if $ARGS[0] = 'shoes':
- clr
- pl'<center><a href="exec:gs''$menu_obnovit''"><b>Shoes</b></a></center>'
- $img_temp = FUNC('$body_image','shoes')
- pl '<a href="exec:view ''<<$img_temp>>''"><img <<$set_imgh>> src="<<$img_temp>>"></a>'
- pl '<<$body_image_msg>>'
- killvar 'img_temp'
- killvar 'body_image_msg'
- !{
- if $clothingworntype = 'nude' or $shoeworntype = 'none':
- view 'images/pc/body/feet.jpg'
- else
- view FUNC('$shoe_image', $shoeworntype, shoewornnumber)
- pl 'You are wearing ' + FUNC('$shoe_description', $shoeworntype) + '<<shoewornnumber>>.'
- end
- }
- end
-
-
- if $ARGS[0] = 'body':
- !! This displays the body image; $bodimgsets[x9] is the folder name
- !some in-game script may call this to display image, so leave it be
- view FUNC('$body_image','body')
- !{
- if salocatnow >= 1 and salocatnow <= 5:
- view 'images/pc/body/shape/<<$bodimgsets[((bodset * 10) + 9)]>>/<<salocatnow>>.jpg'
- elseif salocatnow <= 0:
- view 'images/pc/body/shape/0.jpg'
- elseif salocatnow = 6:
- if imgset6ovr[bodset] = 1:
- view 'images/pc/body/shape/<<$bodimgsets[((bodset * 10) + 9)]>>/6.jpg'
- else
- view 'images/pc/body/shape/6.jpg'
- end
- else
- if imgset7ovr[bodset] = 1:
- view 'images/pc/body/shape/<<$bodimgsets[((bodset * 10) + 9)]>>/7.jpg'
- else
- view 'images/pc/body/shape/7.jpg'
- end
- end
- }
- end
- if $ARGS[0] = 'menubody':
- !display image and escription for menu
- clr
- pl'<center><a href="exec:gs''$menu_obnovit''"><b>Body</b></a></center>'
- $img_temp = FUNC('$body_image','body')
- pl '<a href="exec:view ''<<$img_temp>>''"><img <<$set_imgh>> src="<<$img_temp>>"></a>'
- pl '<<$body_image_msg>>'
- killvar 'img_temp'
- killvar 'body_image_msg'
- end
- if $ARGS[0] = 'menuface':
- !display image and escription for menu
- clr
- pl'<center><a href="exec:gs''$menu_obnovit''"><b>Face</b></a></center>'
- $img_temp = FUNC('$face_image')
- pl '<a href="exec:view ''<<$img_temp>>''"><img <<$set_imgh>> src="<<$img_temp>>"></a>'
- killvar 'img_temp'
- if avatar_hair = 1:
- pl'Your hair: <<$av_hair>>.'
- else
- pl'<<$hair>>'
- end
- if defcurly = 0 and curly > 0:pl 'Your curls are good for another <<curly>> days.'
- if defcurly = 1 and straight > 0:pl 'Your hair should be straight for another <<straight>> days.'
- nl
- pl '<<$lip>>'
- pl '<<$pcs_throat>>'
- pl '<<$skin>>'
- pl '<<$glaza>>'
- pl '<<$pcs_makeup>>.'
- end
- !!Image displays for tattoos
- if $ARGS[0] = 'tattooarm':
- view 'images/pc/body/tattoos/arms/tatarm<<tatarm>>.jpg'
- end
- if $ARGS[0] = 'tattooass':
- view 'images/pc/body/tattoos/ass/tatass<<tatass>>.jpg'
- end
- if $ARGS[0] = 'tattooback':
- view 'images/pc/body/tattoos/back/tatback<<tatback>>.jpg'
- end
- if $ARGS[0] = 'tattoobelly':
- view 'images/pc/body/tattoos/belly/tatblly<<tatblly>>.jpg'
- end
- if $ARGS[0] = 'tattoobreast':
- view 'images/pc/body/tattoos/breasts/tatbrst<<tatbrst>>.jpg'
- end
- if $ARGS[0] = 'tattoochest':
- view 'images/pc/body/tattoos/chest/tatchst<<tatchst>>.jpg'
- end
- if $ARGS[0] = 'tattooface':
- view 'images/pc/body/tattoos/face/tatfce<<tatfce>>.jpg'
- end
- if $ARGS[0] = 'tattoofoot':
- view 'images/pc/body/tattoos/foot/tatankle<<tatankle>>.jpg'
- end
- if $ARGS[0] = 'tattooleg':
- view 'images/pc/body/tattoos/legs/tatleg<<tatleg>>.jpg'
- end
- if $ARGS[0] = 'tattoolip':
- view 'images/pc/body/tattoos/lip/tatlip<<tatlip>>.jpg'
- end
- if $ARGS[0] = 'tattooneck':
- view 'images/pc/body/tattoos/neck/tatnck<<tatneck>>.jpg'
- end
- if $ARGS[0] = 'tattoovag':
- view 'images/pc/body/tattoos/pubic/tatvag<<tatvag>>.jpg'
- end
- if $ARGS[0] = 'tattooshoulder':
- view 'images/pc/body/tattoos/shoulder/tatshldr<<tatlech>>.jpg'
- end
- if $ARGS[0] = 'tattooside':
- view 'images/pc/body/tattoos/side/tatside<<tatside>>.jpg'
- end
- if $ARGS[0] = 'tattootramp':
- view 'images/pc/body/tattoos/trampStamp/tatlowbck<<tatupb>>.jpg'
- end
- if $ARGS[0] = 'tattoounder':
- view 'images/pc/body/tattoos/underBreast/tatundbreast<<tatunder>>.jpg'
- end
- if $ARGS[0] = 'tattoowrist':
- view 'images/pc/body/tattoos/wrists/tatwrst<<tatwrist>>.jpg'
- end
- if $ARGS[0] = 'tattoos':
- clr
- pl'<center><a href="exec:gs''$menu_obnovit''"><b>Tatoos</b></a></center>'
- tatcounter = 0
- if tatarm > 0:tatcounter = 1 & pl'<a href="exec: gs ''obj_din'', ''tattooarm''">Tattoo on your arm</a>'
- if tatass > 0:tatcounter = 1 & pl'<a href="exec: gs ''obj_din'', ''tattooass''">Tattoo on your ass</a>'
- if tatback > 0:tatcounter = 1 & pl'<a href="exec: gs ''obj_din'', ''tattooback''">Tattoo on your back</a>'
- if tatblly > 0:tatcounter = 1 & pl'<a href="exec: gs ''obj_din'', ''tattoobelly''">Tattoo on your belly</a>'
- if tatbrst > 0:tatcounter = 1 & pl'<a href="exec: gs ''obj_din'', ''tattoobreast''">Tattoo on your breast</a>'
- if tatchst > 0:tatcounter = 1 & pl'<a href="exec: gs ''obj_din'', ''tattoochest''">Tattoo on your chest</a>'
- if tatfce > 0:tatcounter = 1 & pl'<a href="exec: gs ''obj_din'', ''tattooface''">Tattoo on your face</a>'
- if tatankle > 0:tatcounter = 1 & pl'<a href="exec: gs ''obj_din'', ''tattoofoot''">Tattoo on your foot</a>'
- if tatleg > 0:tatcounter = 1 & pl'<a href="exec: gs ''obj_din'', ''tattooleg''">Tattoos on your leg</a>'
- if tatlip > 0:tatcounter = 1 & pl '<a href="exec: gs ''obj_din'', ''tattoolip''">Tattoo on your lip</a>'
- if tatneck > 0:tatcounter = 1 & pl'<a href="exec: gs ''obj_din'', ''tattooneck''">Tattoo on your neck</a>'
- if tatvag > 0:tatcounter = 1 & pl'<a href="exec: gs ''obj_din'', ''tattoovag''">Tattoo on your groin</a>'
- if tatlech > 0:tatcounter = 1 & pl'<a href="exec: gs ''obj_din'', ''tattooshoulder''">Tattoo on your shoulder</a>'
- if tatside > 0:tatcounter = 1 & pl'<a href="exec: gs ''obj_din'', ''tattooside''">Tattoo on your side</a>'
- if tatupb > 0:tatcounter = 1 & pl'<a href="exec: gs ''obj_din'', ''tattootramp''">Your tramp stamp</a>'
- if tatunder > 0:tatcounter = 1 & pl'<a href="exec: gs ''obj_din'', ''tattoounder''">Tattoo under your breasts</a>'
- if tatwrist > 0:tatcounter = 1 & pl'<a href="exec: gs ''obj_din'', ''tattoowrist''">Tattoo on your wrist</a>'
-
- if tatcounter = 0:
- pl'You have a pristine body. Not in terms of debauchery, but in terms of tattoos.'
- end
- end
- if $ARGS[0] = 'piercing':
- clr
- pl'<center><a href="exec:gs''$menu_obnovit''"><b>Piercing</b></a></center>'
- if pirsA = 0 and pirsB = 0 and pirsC = 0 and pirsD = 0 and pirsE = 0 and pirsF = 0 and pirsN = 0 and pirsG = 0 and pirsGL = 0:
- pl 'You have no piercings.'
- elseif pirsA = 10000 and pirsB = 10000 and pirsC = 10000 and pirsD = 10000 and pirsE = 10000 and pirsF = 10000 and pirsN = 10000 and pirsG = 10000 and pirsGL = 10000:
- pl 'You are not wearing any piercings'
- else
- if pirsA > 0 and pirsA < 10000:pl 'You are wearing a tongue piercing. <a href="exec:view ''images/pc/body/piercings/a<<pirsA>>.jpg''">See</a>'
- if pirsB > 0 and pirsB < 10000:pl 'You are wearing a lip piercing. <a href="exec:view ''images/pc/body/piercings/b<<pirsB>>.jpg''">See</a>'
- if pirsC > 0 and pirsC < 10000:pl 'You are wearing earrings. <a href="exec:view ''images/pc/body/piercings/c<<pirsC>>.jpg''">See</a>'
- if pirsD > 0 and pirsD < 10000:pl 'You are wearing a nose ring. <a href="exec:view ''images/pc/body/piercings/d<<pirsD>>.jpg''">See</a>'
- if pirsE > 0 and pirsE < 10000:pl 'You are wearing an eyebrow piercing. <a href="exec:view ''images/pc/body/piercings/e<<pirsE>>.jpg''">See</a>'
- if pirsF > 0 and pirsF < 10000:pl 'You are wearing nipple piercings. <a href="exec:view ''images/pc/body/piercings/f<<pirsF>>.jpg''">See</a>'
- if pirsN > 0 and pirsN < 10000:pl 'You are wearing a navel piercing. <a href="exec:view ''images/pc/body/piercings/n<<pirsN>>.jpg''">See</a>'
- if pirsG > 0 and pirsG < 10000:pl 'You are wearing a pussy piercing. <a href="exec:view ''images/pc/body/piercings/g<<pirsG>>.jpg''">See</a>'
- end
- end
- if $ARGS[0] = 'records':
- clr
- if housr > 0:pl'You live in a two-room apartment, in a residential area. Rent for the apartment is subtracted automatically, in sum of 3000 <b>₽</b> plus electric bill on 25th of each month.'
- nl
- if workPTU > 2:pl'You work as a teacher at the Lycée. Working days Mon-Sat, with 14.00 to 16.00. Salary 300r/day. Dress code - office clothes, Strict. The road from the apartment to the Lyceum takes 2 hours 10 minutes.'
- nl
- if (work = 1 or cheatWork = 1) and workKafe > 0:pl'You are working as a waitress in a cafe. You need to come to work between 11 and 12, working days: Tuesday, Wednesday and Thursday. At work, you can receive tips from customers, and payment is received on 25th of each month.'
- nl
- if (work = 1 or cheatWork = 1) and workhosp > 0:pl'You work as a nurse in the clinic. You need to come to work between 8 and 9, during the week. Salary is automatically transferred on 25th of each month.'
- nl
- if (work = 1 or cheatWork = 1) and worksalon > 0:pl'You work in a salon as masseuse. You need to come to work with 9 to 10, working days, Monday, Wednesday, Friday. Salary is automatically transferred on 25th of each month.'
- nl
- if (work = 1 or cheatWork = 1) and workSec > 0:pl'You work as a secretary in the office. At work you need to come up 9, during the week. Salary is automatically transferred on 25th of each month.'
- nl
- if (work = 1 or cheatWork = 1) and tanwork > 0:pl'You work as a governess for Tanya. Salary is automatically transferred on 25th of each month.'
- nl
- if (work = 1 or cheatWork = 1) and young_shop_work = 1:pl'You work as a store clerk in Pussy-Cats. Work starts at 15, every day except Saturday and Sunday. The salary shall be issued once a week on Fridays.'
- nl
- if (work = 1 or cheatWork = 1) and workFabrika = 1:pl'You work as a seamstress in a factory in Pavlovsk. Work is every day except Saturday and Sunday. Salary is automatically transferred on 25th of each month.'
- nl
- if workrin = 1:pl'You are working on the market in Arthur''s tent as clothing saleswoman. Work on Tuesday, Thursday and Saturday, starting at 8 AM. Salary depends on sales.'
- nl
- if maidqw = 1:pl'You can work in Pavlovsk hotel as a maid. Work is every day from 16 to 19. Salary is 250 plus tips.'
- nl
- if (work = 1 or cheatWork = 1) and gpoliuborka > 1:pl'You can work part-time as a cleaner in pavlovo clinic. Work is from 16 to 21.'
- nl
- if stripwork >= 1:pl'You can work as a stripper, free schedule, every day from 15 to midnight. No salary, only tips.'
- nl
- if pfilmSTOP = 1:pl'<<$pfilmstory_new>>'
- if film > 0:pl'You are working as pornographic actress under the name <<$pfname>>, Filmography:'
- pl'<<$pfilmhistory>>'
- nl
- if bumtolik = 4:pl'You have been asked to help the homeless at the Mercy Clinic in the city industrial region.'
- nl
- if bumtolik >= 5:pl'You volunteer at the Mercy Clinic working with the homeless. Working hours are from 9 to 17, Saturday and Sunday.'
- nl
- if husband > 0:pl'You have been married for <<husbanday>> days. Your husband <<$husName>> <<$husBody>> <<$husFat>> <<$husHair>>. Member <<husDick>> Relationship <<husband>>.'
- if kid > 0:
- i = 0
- if kid = 1:
- pl 'You have a child, a <<$polreb[0]>> named <<$kidname[0]>>. Born <<daykid[0]>>-<<monthkid[0]>>-<<yearkid[0]>>. Aged <<kidage[0]>>.'
- else
- pl 'You have children:'
- :LoopKidCounter
- if i <= kid + 1:
- pl ' a <<$polreb[i]>> named <<$kidname[i]>>. Born <<daykid[i]>>-<<monthkid[i]>>-<<yearkid[i]>>. Aged <<kidage[i]>>.'
- i += 1
- jump 'LoopKidCounter'
- end
- end
- nl
- end
- nl
- if $bfsex > 0:pl'<<$bfsex>>'
- nl
- if pcs_lovers[0] = 1:pl'Your guy <<$loverdesc[0]>> <<$loverbody[0]>> <<$loverbod[0]>> <<$loverface[0]>>.<<$loverdesc[0]>> <<$loverClo[0]>> Relationship <<loverrelation[0]>>, met <<loverdays[0]>> time.'
- if haraklover[0] = 0 and loverrelation[0] > 1:pl'He''s calm and self-possessed character.'
- if haraklover[0] = 1 and loverrelation[0] > 1:pl'He has a cheerful and sociable character.'
- if haraklover[0] = 2 and loverrelation[0] > 1:pl'He''s short-tempered and rigid.'
- nl
- if pcs_lovers[1] = 1:pl'Your guy <<$loverdesc[1]>> <<$loverbody[1]>> <<$loverbod[1]>> <<$loverface[1]>>.<<$loverdesc[1]>> <<$loverClo[1]>> Relationship <<loverrelation[1]>>, met <<loverdays[1]>> time.'
- if haraklover[1] = 0 and loverrelation[1] > 1:pl'He''s calm and self-possessed character.'
- if haraklover[1] = 1 and loverrelation[1] > 1:pl'He has a cheerful and sociable character.'
- if haraklover[1] = 2 and loverrelation[1] > 1:pl'He''s short-tempered and rigid.'
- nl
- if pcs_lovers[2] = 1:pl'Your guy <<$loverdesc[2]>> <<$loverbody[2]>> <<$loverbod[2]>> <<$loverface[2]>>.<<$loverdesc[2]>> <<$loverClo[2]>> Relationship <<loverrelation[2]>>, met <<loverdays[2]>> time.'
- if haraklover[2] = 0 and loverrelation[2] > 1:pl'He''s calm and self-possessed character.'
- if haraklover[2] = 1 and loverrelation[2] > 1:pl'He has a cheerful and sociable character.'
- if haraklover[2] = 2 and loverrelation[2] > 1:pl'He''s short-tempered and rigid.'
- nl
- gs'Menu.Create','zapisMenu'
- gs'Menu.Add','zapisMenu','Recording from avtodatoy','','MenuLoc','zapisosn'
- gs'Menu.Add','zapisMenu','Make a record in the 1th line','','MenuLoc','zapis'
- gs'Menu.Add','zapisMenu','With a red line 1th line','','MenuLoc','ot'
- gs'Menu.Add','zapisMenu','Make a record in the 2th line','','MenuLoc','zapis2'
- gs'Menu.Add','zapisMenu','With a red line 2th line','','MenuLoc','ot2'
- gs'Menu.Add','zapisMenu','Make a record in the 3th line','','MenuLoc','zapis3'
- gs'Menu.Add','zapisMenu','With a red line 3th line','','MenuLoc','ot3'
- gs'Menu.Add','zapisMenu','Make a record in the 4th line','','MenuLoc','zapis4'
- gs'Menu.Add','zapisMenu','With a red line 4th line','','MenuLoc','ot4'
- gs'Menu.Add','zapisMenu','Make a record in the 5th line','','MenuLoc','zapis5'
- gs'Menu.Add','zapisMenu','With a red line 5th line','','MenuLoc','ot5'
- gs'Menu.Add','zapisMenu','Make a record in the 6th line','','MenuLoc','zapis6'
- gs'Menu.Add','zapisMenu','With a red line 6th line','','MenuLoc','ot6'
- gs'Menu.Add','zapisMenu','Make a record in the 7th line','','MenuLoc','zapis7'
- gs'Menu.Add','zapisMenu','With a red line 7th line','','MenuLoc','ot7'
- gs'Menu.Add','zapisMenu','Make a record in the 8th line','','MenuLoc','zapis8'
- gs'Menu.Add','zapisMenu','With a red line 8th line','','MenuLoc','ot8'
- gs'Menu.Add','zapisMenu','Make a record in the 9th line','','MenuLoc','zapis9'
- gs'Menu.Add','zapisMenu','With a red line 9th line','','MenuLoc','ot9'
- gs'Menu.Add','zapisMenu','Make a record in the 10th line','','MenuLoc','zapis10'
- gs'Menu.Add','zapisMenu','With a red line 10th line','','MenuLoc','ot10'
- gs'Menu.Create','disMenu'
- gs'Menu.Add','disMenu','Delete entry to 1th row','','MenuLoc','diszapis'
- gs'Menu.Add','disMenu','Delete entry to 2th row','','MenuLoc','diszapis2'
- gs'Menu.Add','disMenu','Delete entry to 3th row','','MenuLoc','diszapis3'
- gs'Menu.Add','disMenu','Delete entry to 4th row','','MenuLoc','diszapis4'
- gs'Menu.Add','disMenu','Delete entry to 5th row','','MenuLoc','diszapis5'
- gs'Menu.Add','disMenu','Delete entry to 6th row','','MenuLoc','diszapis6'
- gs'Menu.Add','disMenu','Delete entry to 7th row','','MenuLoc','diszapis7'
- gs'Menu.Add','disMenu','Delete entry to 8th row','','MenuLoc','diszapis8'
- gs'Menu.Add','disMenu','Delete entry to 9th row','','MenuLoc','diszapis9'
- gs'Menu.Add','disMenu','Delete entry to 10th row','','MenuLoc','diszapis10'
- pl'<a href="exec: gs''Menu.Call'',''zapisMenu''">Make a record</a> or <a href="exec: gs''Menu.Call'',''disMenu''">delete the record</a>'
- pl'<<$zapisOsn>>'
- pl'<<$zapis>>'
- pl'<<$zapis2>>'
- pl'<<$zapis3>>'
- pl'<<$zapis4>>'
- pl'<<$zapis5>>'
- pl'<<$zapis6>>'
- pl'<<$zapis7>>'
- pl'<<$zapis8>>'
- pl'<<$zapis9>>'
- pl'<<$zapis10>>'
- end
- if $ARGS[0] = 'exit':
- '<center><b>YOU JUST had to use emergency exit, this is only for use when you get a BLANK SCREEN.</b></center>'
- *nl
- '<center><b>DO NOT use this option without a good reason, doing so can cause instability and could damage your save game.</b></center>'
- *nl
- '<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>'
- *nl
- cla
- if StoryLine = 1:act 'Go to Pavlovsk':gt 'pavResidential'
- act 'Go to the street':gt 'street'
- end
- if $ARGS[0] = 'new':
- killobj
- oldobjmenu = 0
- addobj '<img src="images/system/icon/pers.png">'
- addobj '<img src="images/system/icon/look.png">'
- addobj '<img src="images/system/icon/proch.png">'
- addobj '<img src="images/system/icon/menu.png">'
- addobj '<img src="images/system/icon/phone.png">'
- if bag > 0:addobj '<img src="images/system/icon/purse.png">'
- end
- if $ARGS[0] = 'old':
- killobj
- oldobjmenu = 1
- addobj '<font color = green>Character</font>'
- addobj 'Skills'
- addobj 'Statistics'
- addobj 'Pain'
- addobj 'Traits'
- addobj 'Fame'
- if pcs_magik > 0:addobj 'Magic'
- addobj 'Face'
- addobj 'Body'
- addobj 'Clothing'
- addobj 'Panties'
- addobj 'Shoes'
- addobj 'Tattoos'
- addobj 'Piercing'
- addobj 'Phone'
- if bag > 0:addobj 'Purse'
- addobj 'Notebook'
- addobj 'Refresh'
- addobj 'The new menu'
- addobj 'Game Setting'
- addobj 'Cheat menu'
- addobj 'Emergency exit'
- if disable_autosave = 1:
- addobj 'Enable autosave'
- else
- addobj 'Disable autosave'
- end
- end
- if $ARGS[0] = 'autosave':
- if oldobjmenu = 0:
- if disable_autosave = 1:
- disable_autosave = 0
- else
- disable_autosave = 1
- end
- elseif oldobjmenu = 1:
- if disable_autosave = 1:
- disable_autosave = 0
- delobj 'Enable autosave'
- addobj 'Disable autosave'
- else
- disable_autosave = 1
- delobj 'Disable autosave'
- addobj 'Enable autosave'
- end
- end
- gs'stat'
- end
- --- obj_din ---------------------------------
|