RoundEnd.qsrc 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # RoundEnd
  2. round += 1
  3. rMin = 8
  4. stoper = 0
  5. if round = Formula + 1:
  6. 'The fight has ended and you and your opponent stand next to the referee awaiting the verdict.'
  7. if point > pointE:
  8. !win[1] += 1
  9. !loss[i] += 1
  10. 'The referee raises your hand as a sign of victory.'
  11. resultFight = 1
  12. elseif point < pointE:
  13. !win[i] += 1
  14. !loss[1] += 1
  15. 'The referee raises your opponents hand as a sign their victory.'
  16. resultFight = 3
  17. elseif point = pointE:
  18. !draw[1] += 1
  19. !draw[i] += 1
  20. 'The referee raises both of your hands as a sign of a draw.'
  21. resultFight = 2
  22. end
  23. act '...':gt 'EndFight'
  24. elseif round < Formula + 1:
  25. endur += lustw * 25 / 100
  26. endurE += lustwe * 25 / 100
  27. if crouch = 1 and croonce = 0:crouch = 0 & croonce = 1
  28. if crouch = 0 and croonce = 0:crouch = 1 & croonce = 1
  29. croonce = 0
  30. '<center><b>Break between rounds</b></center>'
  31. if crouch = 1:$text = 'They point on your opponent to go down on all fours, while you step behind and prepare yourself to grab hold.'
  32. if crouch = 0:$text = 'You get down on all fours, while your opponent gets ready to grab you from behind.'
  33. 'You manage to rest up for a while and head back in the ring as the referee blows the whistle announcing the start of the next round.'
  34. 'The referee blows their whistle. <<$text>>'
  35. act 'Follow the referee''s instruction':gt 'FightCrouch'
  36. end
  37. --- RoundEnd ---------------------------------