Guest User

Untitled

a guest
Dec 6th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. public void booya() {
  2. for (int r = 0; r < questionMenuCount; ++r)
  3. {
  4. boolean answer = false;
  5.  
  6. for (int j = 0; j < optionsy.length; ++j)
  7. {
  8. if (questionMenuAnswer[r].equals(optionsy[j]))
  9. {
  10. answer = true;
  11. break;
  12. }
  13.  
  14.  
  15. if (answer)
  16. {
  17. super.streamClass.createPacket(154);
  18. super.streamClass.addByte(j);
  19. super.streamClass.formatPacket();
  20. showQuestionMenu = false;
  21. break;
  22. }
  23. }
  24. }
  25. }
Add Comment
Please, Sign In to add comment