1
0

FSgame.qsrc 691 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # FSgame
  2. menu_off = 1
  3. minut += 1
  4. gs 'stat'
  5. gs 'FSstat'
  6. '<center><b>Hotel room</b></center>'
  7. ''
  8. if FSmedkit > 0:
  9. 'First aid kits <<FSmedkit>> pieces'
  10. if FSHP < 100:
  11. act 'Treated':
  12. cls
  13. FShour += 1
  14. FSHP = 100
  15. FSmedkit -= 1
  16. minut += 1
  17. gs 'stat'
  18. 'You heal health through kits.'
  19. act 'Further':gt $curloc
  20. end
  21. end
  22. end
  23. act 'Laze':
  24. cls
  25. FShour += 1
  26. minut += 1
  27. gs 'stat'
  28. 'You lounged in the apartment, lounging on the couch and thinking how you vykruchivatsya of the situation.'
  29. act 'Further':gt $curloc
  30. end
  31. act 'Leave the room':
  32. cls
  33. FShour += 1
  34. minut += 1
  35. gs 'stat'
  36. !!'You left the room.'
  37. gt 'FSroom'
  38. end
  39. --- FSgame ---------------------------------