husb.qsrc 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. # husb
  2. CLOSE ALL
  3. !! {location do not delete!}
  4. if $loc = 'korr':$husb_action = ''
  5. if $loc = 'bedr':
  6. if hour > 22 or hour < 7: $husb_loc = 'Your husband <<$husName>> is lying in bed eyes open. "What do you want? It is late, go to sleep."'
  7. end
  8. if $loc = 'sitr':
  9. if hour > 7 and hour < 17 and week >= 6: $husb_loc = 'Sitting on the couch is <a href="exec: gt''husb'',''start'' "><<$husName[1]>></a> watching TV.'
  10. if hour > 17 and hour <= 22: $husb_loc = 'Sitting on the couch is <a href="exec: gt''husb'',''start'' "><<$husName[1]>></a> watching TV.'
  11. end
  12. if $loc = 'vanr':$husb_loc = ''
  13. if $loc = 'kuhr':
  14. if hour = 17 or hour = 7: $husb_loc = '<<$husName>> is sitting at the kitchen table.'
  15. end
  16. '<<$husb_loc>>'
  17. !! {end}
  18. if $ARGS[0] = 'start':
  19. cls
  20. cla
  21. gs'stat'
  22. '<center><B><font color = maroon><<$husName>></font></B></center>'
  23. '<center><img <<$set_imgh>> src="images/characters/shared/<<HusbPic>>.jpg"></center>'
  24. gs 'husb', 'husb_discription'
  25. gs 'husb', 'husb_action'
  26. if $clothingworntype = 'nude':
  27. if $braworntype = 'none' and $pantyworntype = 'none':
  28. 'Your husband, seeing you naked, says - "You are very beautiful."'
  29. else
  30. 'Your husband smiles, "It''s always nice to see you in your underwear honey."'
  31. end
  32. end
  33. act '<B>Move away</B>':gt $loc, $metka
  34. if husbandsexday < 4:
  35. act 'Sex with your husband':gt'husbsex','room'
  36. end
  37. end
  38. if $ARGS[0] = 'husb_discription':
  39. if birthyear < husb_birth_year:
  40. age_diff = husbAge - age
  41. $h_age = '<<$husName>> was born in <<husb_birth_year>>, he is <<husbAge>> years old. He is <<age_diff>> years older than you.'
  42. elseif birthyear = husb_birth_year:
  43. $h_age = '<<$husName>> was born in <<husb_birth_year>>, he is <<husbAge>> years old. Same as you.'
  44. else
  45. age_diff = age - husbAge
  46. $h_age = '<<$husName>> was born in <<husb_birth_year>>, he is <<husbAge>> years old. You are <<age_diff>> years older than him.'
  47. end
  48. 'Your husband <<$husName>>, <<$h_age>> It <<$husBody>> <<$husFat>> <<$husHair>>.'
  49. if husband<20:'You have a terrible row with your husband.'
  50. if husband>=20 and husband<40:'There are tension between you and your husband.'
  51. if husband>=40 and husband<60:'You have a normal relationship with your husband.'
  52. if husband>=60 and husband<80:'You have a good relationship with your husband.'
  53. if husband>=80:'You have a great relationship with your husband.'
  54. ''
  55. end
  56. if $ARGS[0] = 'husb_action':
  57. if $loc = 'korr':$husb_action = ''
  58. if $loc = 'bedr':
  59. if hour > 22 or hour < 7: $husb_action = 'Your husband <<$husName>> is lying in bed, eyes open. "What do you want? It is late, go to sleep."'
  60. end
  61. if $loc = 'sitr':
  62. if hour > 7 and hour < 17 and week >= 6: $husb_action = '<<$husName>> is sitting on the couch and watching TV.'
  63. if hour > 17 and hour <= 22: $husb_action = '<<$husName>> is sitting on the couch and watching TV.'
  64. end
  65. if $loc = 'vanr':$husb_action = ''
  66. if $loc = 'kuhr':
  67. if hour = 17 or hour = 7:$husb_action = '<<$husName>> is sitting at the kitchen table.'
  68. end
  69. '<<$husb_action>>'
  70. end
  71. --- husb ---------------------------------