082_narkopriton 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. # narkopriton
  2. '<center><B>drug houses</B></center>'
  3. '<center><img src="images\etogame\narkopriton.jpg"></center>'
  4. 'Crappy apartment where addicts come to inject and buy heroin.'
  5. clr
  6. gs 'stat'
  7. fcolor = rgb(0,0,0)
  8. bcolor = rgb(255,255,255)
  9. LCOLOR = rgb(106,90,205)
  10. 'Door is opened by a skinny guy with a crazy look. After examining you, he said, "This product is worth apiece."'
  11. act 'Leave': minut += 15 & gt 'street'
  12. if money >= 1000:
  13. act 'Buy heroin.':
  14. cls
  15. money -= 1000
  16. if SLomka > 0:
  17. minut += 5
  18. StrongNarkota += 25
  19. SNarkTimes += 1
  20. gs 'stat'
  21. $tempval = ''
  22. if narkoman ! 0: $tempval = ' with trembling hands'
  23. gt 'narkopriton'
  24. 'You bought some heroin and injected yourself<<$tempval>>'
  25. else
  26. heroin += 1
  27. gt 'narkopriton'
  28. end
  29. end
  30. end
  31. if SLomka > 0 and money < 1000:
  32. act 'Persuade to sell you on credit.':
  33. $tempname = 'he'
  34. if HaveMetBobka = 1: $tempname = 'Bobka'
  35. cls
  36. minut += 5
  37. gs 'stat'
  38. $tempval = 'You'
  39. if SNarkTimes > 0: $tempval = 'You are experiencing withdrawal and'
  40. '<<$tempval>> start to persuade <<$tempname>> to give you a dose on credit, promising to pay back later.'
  41. 'But <<$tempname>> only grinned wickedly "Yeah, Do you know how many times a day I hear that? I won´t give anything on credit."'
  42. act 'Leave': gt $curloc
  43. act 'Beg and promise to do anything for it.':
  44. cls
  45. minut += 5
  46. gs 'stat'
  47. 'You started begging to give you drugs on credit, and promise to do anything for it. He thought a little and then took you by the hand to the next room'
  48. act 'Escape': gt $curloc
  49. act 'Go to the next room.':
  50. cls
  51. minut += 5
  52. gs 'stat'
  53. bobrand = RAND(0,3)
  54. $tempval = ''
  55. if bobrand < 3: $tempval = ' and start sucking'
  56. '"Get on your knees<<$tempval>>."'
  57. act 'Run away': gt $curloc
  58. act 'Do as he says': gt 'bobka'
  59. end
  60. end
  61. end
  62. end
  63. --- narkopriton ---------------------------------