Gnpc_cinema.qsrc 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # Gnpc_cinema
  2. cls
  3. minut += 15
  4. gs 'stat'
  5. '<center><h1><font color="maroon">Cinema</font></h1></center>'
  6. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/mall/cinema/cinema.jpg"></center>'
  7. *nl
  8. 'You go with <<$nameBoyfrend[numnpc]>> to the movie theater near the park. <<$nameBoyfrend[numnpc]>> buys the tickets and then you both enter a small cinema hall and find your seats.'
  9. act 'Watch the movie':
  10. cls
  11. pcs_mood += 50
  12. minut += 100
  13. otnBoyFrend[numnpc] += 5
  14. gs 'stat'
  15. 'You got a guy on the chair placed in the back row. Soon the lights dimmed and the movie started on the screen.'
  16. if otnBoyFrend[numnpc] < 80:
  17. 'You watched the movie a couple of hours sitting in a chair next to the guy.'
  18. act 'Go to the exit':gt 'Gnpc2'
  19. elseif otnBoyFrend[numnpc] >= 80 and gnpcSex[numnpc] = 0:
  20. 'You have been watching a movie and suddenly felt a hand on my knee Man.'
  21. act 'Remove his hands':
  22. cls
  23. pcs_dom += 1
  24. otnBoyFrend[numnpc] -= 20
  25. gs 'stat'
  26. 'You have removed palm guy with his knees and continued to watch the movie. Movie finally ended. In the hall lights went on and the screen went titles.'
  27. act 'Go to the exit':gt 'Gnpc2'
  28. end
  29. act 'Ignore':
  30. cls
  31. otnBoyFrend[numnpc] += 5
  32. gs 'stat'
  33. 'You pretended that nothing happens and the guy started more actively stroking your leg. Movie finally ended. In the hall lights went on and the screen went titles.'
  34. act 'Go to the exit':gt 'Gnpc2'
  35. end
  36. elseif otnBoyFrend[numnpc] >= 80 and gnpcSex[numnpc] > 0:
  37. 'You have been watching the movies, and <<$nameBoyfrend[numnpc]>> put his hand on your foot and began to stroke your knee. Movie finally ended. In the hall lights went on and the screen went titles.'
  38. act 'Go to the exit':gt 'Gnpc2'
  39. end
  40. end
  41. --- Gnpc_cinema ---------------------------------