Advertisement
mariopaster

Untitled

Feb 10th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. public void updateQuiver(int lvl) {
  2. int count;
  3. switch (lvl) {
  4. case 2:
  5. case 3:
  6. count = 121216;
  7. break;
  8. case 4:
  9. case 5:
  10. count = 141422;
  11. break;
  12. case 6:
  13. case 7:
  14. count = 161628;
  15. break;
  16. case 8:
  17. case 9:
  18. count = 181834;
  19. break;
  20. case 10:
  21. count = 202040;
  22. break;
  23. default:
  24. count = 101010;
  25. break;
  26. }
  27. Quiver_Amount = count;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement