husb 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. $d_husb_discription = {
  19. if birthyear < husb_birth_year:
  20. age_diff = husbAge - age
  21. $h_age = '<<$husName>> was born in <<husb_birth_year>>, he is <<husbAge>> years old. He is <<age_diff>> years older than you.'
  22. elseif birthyear = husb_birth_year:
  23. $h_age = '<<$husName>> was born in <<husb_birth_year>>, he is <<husbAge>> years old. Same as you.'
  24. else
  25. age_diff = age - husbAge
  26. $h_age = '<<$husName>> was born in <<husb_birth_year>>, he is <<husbAge>> years old. You are <<age_diff>> years older than him.'
  27. end
  28. 'Your husband <<$husName>>, <<$h_age>> It <<$husBody>> <<$husFat>> <<$husHair>>.'
  29. if husband<20:'You have a terrible row with your husband.'
  30. if husband>=20 and husband<40:'There are tension between you and your husband.'
  31. if husband>=40 and husband<60:'You have a normal relationship with your husband.'
  32. if husband>=60 and husband<80:'You have a good relationship with your husband.'
  33. if husband>=80:'You have a great relationship with your husband.'
  34. ''
  35. }
  36. $d_husb_action = {
  37. if $loc = 'korr':$husb_action = ''
  38. if $loc = 'bedr':
  39. 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."'
  40. end
  41. if $loc = 'sitr':
  42. if hour > 7 and hour < 17 and week >= 6: $husb_action = '<<$husName>> is sitting on the couch and watching TV.'
  43. if hour > 17 and hour <= 22: $husb_action = '<<$husName>> is sitting on the couch and watching TV.'
  44. end
  45. if $loc = 'vanr':$husb_action = ''
  46. if $loc = 'kuhr':
  47. if hour = 17 or hour = 7:$husb_action = '<<$husName>> is sitting at the kitchen table.'
  48. end
  49. '<<$husb_action>>'
  50. }
  51. if $ARGS[0] = 'start':
  52. cls
  53. cla
  54. gs'stat'
  55. '<center><B><font color = maroon><<$husName>></font></B></center>'
  56. '<center><img <<$set_imgh>> src="images/characters/shared/<<HusbPic>>.jpg"></center>'
  57. dynamic $d_husb_discription
  58. dynamic $d_husb_action
  59. if nude = 1:'Your husband, seeing you naked, says - "You are very beautiful."'
  60. act '<B>Move away</B>':gt $loc, $metka
  61. if husbandsexday < 4:
  62. act 'Sex with your husband':gt'husbsex','room'
  63. end
  64. end
  65. --- husb ---------------------------------