491_roundstop 485 B

123456789101112131415161718192021222324252627
  1. gs 'fightStat'
  2. stoper = 0
  3. if crouch = 1 and croonce = 0:
  4. crouch = 0 & croonce = 1
  5. end
  6. if crouch = 0 and croonce = 0:
  7. crouch = 1 & croonce = 1
  8. end
  9. croonce = 0
  10. if crouch = 1:
  11. $text='Stand your opponent on all fours, and you catch him from behind.'
  12. end
  13. if crouch = 0:
  14. $text='You get up on all fours, and your opponent to catch him from behind.'
  15. end
  16. 'The referee raises you with an opponent and commands. <<$text>>'
  17. act 'Follow the instructions referees':
  18. gt 'FightCrouch'
  19. end