volAndGev 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. $metkaM = $ARGS[0]
  10. $locM = $CURLOC
  11. $metka = $ARGS[0]
  12. $loc = $CURLOC
  13. $location_type = 'event'
  14. CLOSE ALL
  15. gs 'stat'
  16. if andGevknow = 0:
  17. bumpK += 1
  18. if pcs_apprnc < 60:
  19. 'The guy sneered at you and muttered something about a bow-legged cow.'
  20. else
  21. 'The guy smiled, looking at you.'
  22. end
  23. if pcs_dom > 0:
  24. act 'Swear at him':
  25. cls
  26. gs 'stat'
  27. 'You cursed at the guy for roughly pushing you.'
  28. if pcs_apprnc < 60:
  29. 'The guy flipped you the bird and smiled.'
  30. else
  31. 'The guy just looked at you and shrugged.'
  32. end
  33. act 'Leave':gt 'gdksport', 'start'
  34. end
  35. end
  36. end
  37. if bumpK >= 7 and pcs_dom >=10:
  38. andGevknow = 1
  39. gs 'stat'
  40. '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.'
  41. if rand(0,2) = 2:
  42. AndRev = 1
  43. '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.'
  44. else
  45. '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.'
  46. end
  47. end
  48. act 'Leave':gt 'gdksport', 'start'
  49. end
  50. --- volAndGev ---------------------------------