volAndGev.qsrc 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # volAndGev
  2. !{ Change log
  3. March 25, 2016
  4. fixed "goto"s to reflect new argument format
  5. added retaliation count and scene
  6. added trigger for Andrei kidnap event
  7. }
  8. if $ARGS[0] = 'start':
  9. $metka = $ARGS[0]
  10. $loc = $CURLOC
  11. $location_type = 'event'
  12. CLOSE ALL
  13. gs 'stat'
  14. if andGevknow = 0:
  15. bumpK += 1
  16. if pcs_apprnc < 60:
  17. 'The guy sneered at you and muttered something about a bow-legged cow.'
  18. else
  19. 'The guy smiled, looking at you.'
  20. end
  21. if pcs_dom > 0:
  22. act 'Swear at him':
  23. cls
  24. gs 'stat'
  25. 'You cursed at the guy for roughly pushing you.'
  26. if pcs_apprnc < 60:
  27. 'The guy flipped you the bird and smiled.'
  28. else
  29. 'The guy just looked at you and shrugged.'
  30. end
  31. act 'Leave':gt 'gdksport', 'start'
  32. end
  33. end
  34. end
  35. if bumpK >= 7 and pcs_dom >=10:
  36. andGevknow = 1
  37. gs 'stat'
  38. 'You finally had enough. The same guy pushed you again and you lost it. You grabbed the ball and whipped it at him with all your strength, aiming at the back of his head.'
  39. if rand(0,2) = 2:
  40. AndRev = 1
  41. 'Unfortunately, he turned towards you just as you released the ball and it connected right on his nose. The cracking sound of his nose breaking could be clearly heard. Fortunately for you, no one really liked him and they all declared they saw nothing.'
  42. else
  43. 'The ball connected with the back of his head and sent him head over heels. By the time he got back on his feet, you managed to make it look like you had been doing something else the entire time.'
  44. end
  45. end
  46. act 'Leave':gt 'gdksport', 'start'
  47. end
  48. --- volAndGev ---------------------------------