imbued

100% Poe HP 50r

Apr 4th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. Tens place with nonzero ones place (want to have 9 in tens place after withdrawing)
  2.  
  3. Note: You get 50r from poe and then spend 10r at garo's mask, so subtract 1 from current tens place
  4.  
  5. Tens place - 1 Actual Tens Place
  6. 0 --> 5 == bad (1 --> 4) 1
  7. 1 --> 6 == bad (2 --> 3) 2
  8. 2 --> 7 == good (3 --> 2) 3
  9. 3 --> 8 == good (4 --> 1) 4
  10. 4 --> 9 == bad (5 --> 0) 5
  11. 5 --> 0 == good (4 --> 1) 6
  12. 6 --> 1 == good (3 --> 2) 7
  13. 7 --> 2 == bad (2 --> 3) 8
  14. 8 --> 3 == bad (1 --> 4) 9
  15. 9 --> 4 == bad (0 --> 5) 0
  16.  
  17. GET PURPLE RUPEE IF:
  18.  
  19. T = 3, 4, 6, 7
  20.  
  21. ---------------------------------------------------------------------------------
  22. Tens place with 0 in ones place (want to have 0 in tens place after withdrawing)
  23.  
  24. Tens place - 1 Actual Tens Place
  25. 0 --> 5 == bad (0 --> 5) 1
  26. 1 --> 6 == bad (1 --> 4) 2
  27. 2 --> 7 == bad (2 --> 3) 3
  28. 3 --> 8 == good (3 --> 2) 4
  29. 4 --> 9 == good (5 --> 1) 5
  30. 5 --> 0 == good (5 --> 0) 6
  31. 6 --> 1 == good (4 --> 1) 7
  32. 7 --> 2 == good (3 --> 2) 8
  33. 8 --> 3 == bad (2 --> 3) 9
  34. 9 --> 4 == bad (1 --> 4) 0
  35.  
  36. GET PURPLE RUPEE IF:
  37.  
  38. T = 4, 5, 6, 7, 8
  39. and
  40. O = 0
Add Comment
Please, Sign In to add comment