yban.qsrc 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # yban
  2. $metka = $ARGS[0]
  3. $loc = $CURLOC
  4. clr
  5. gs 'stat'
  6. if night_mode = 1:
  7. fcolor = rgb(255, 255, 255)
  8. bcolor = rgb(0, 0, 0)
  9. lcolor = rgb(106, 90, 205)
  10. elseif night_mode = 2:
  11. fcolor = rgb(255, 255, 255)
  12. bcolor = rgb(20, 20, 20)
  13. lcolor = rgb(106, 90, 205)
  14. else
  15. fcolor = rgb(0, 0, 0)
  16. bcolor = rgb(255, 255, 255)
  17. lcolor = rgb(106, 90, 205)
  18. end
  19. '<center><b><font color="maroon">Sauna</font></b></center>'
  20. '<center><img <<$set_imgh>> src="images/locations/city/suburb/mansion/yban.jpg"></center>'
  21. if $clothingworntype ! 'nude':act 'Walk back to the house':minut += 5 & gt 'youplace'
  22. act 'Go to the gym': minut += 5 & gt 'ysport'
  23. if saunaday ! daystart:
  24. act 'Use the sauna':
  25. cls
  26. minut += 60
  27. fat -= 10
  28. pcs_sweat = rand(0,5)
  29. dynamic $showerdin
  30. saunaday = daystart
  31. pcs_mood = 100
  32. gs 'stat'
  33. '<center><img <<$set_imgh>> src="images/locations/city/shared/sauna/sau.jpg"></center>'
  34. 'You spend an hour relaxing in the heat of the sauna. You take a shower after you''re done to cool down and get dressed. You feel revitalised.'
  35. act 'Leave':gt 'yban'
  36. end
  37. end
  38. --- yban ---------------------------------