volAndGev.qsrc 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. $loc_arg = $ARGS[0]
  10. $loc = 'volAndGev'
  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 sneers at you and mutters something about a bow-legged cow.'
  18. else
  19. 'The guy smiles, looking at you.'
  20. end
  21. act 'Swear at him':
  22. cls
  23. gs 'stat'
  24. 'You curse at the guy for roughly pushing you.'
  25. if pcs_apprnc < 60:
  26. 'The guy flips you the bird and smiles.'
  27. else
  28. 'The guy just looks at you and shrugs.'
  29. end
  30. act 'Leave':gt 'gdksport', 'start'
  31. end
  32. end
  33. if bumpK >= 7:
  34. andGevknow = 1
  35. gs 'stat'
  36. 'You finally have had enough. The same guy pushes you again, and you lose it. You grab the ball and whip it at him with all your strength, aiming at the back of his head.'
  37. if rand(0,2) = 2:
  38. AndRev = 1
  39. 'Unfortunately, he turns towards you just as you release the ball and it connects right with his nose. The cracking sound of his nose breaking can be clearly heard. Fortunately for you, no one really liked him and they all declare they saw nothing.'
  40. else
  41. 'The ball connects with the back of his head and sends him head over heels. By the time he gets back on his feet, you manage to make it look like you had been doing something else the entire time.'
  42. end
  43. end
  44. act 'Leave':gt 'gdksport', 'start'
  45. end
  46. --- volAndGev ---------------------------------