Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Tens place with nonzero ones place (want to have 9 in tens place after withdrawing)
- Note: You get 50r from poe and then spend 10r at garo's mask, so subtract 1 from current tens place
- Tens place - 1 Actual Tens Place
- 0 --> 5 == bad (1 --> 4) 1
- 1 --> 6 == bad (2 --> 3) 2
- 2 --> 7 == good (3 --> 2) 3
- 3 --> 8 == good (4 --> 1) 4
- 4 --> 9 == bad (5 --> 0) 5
- 5 --> 0 == good (4 --> 1) 6
- 6 --> 1 == good (3 --> 2) 7
- 7 --> 2 == bad (2 --> 3) 8
- 8 --> 3 == bad (1 --> 4) 9
- 9 --> 4 == bad (0 --> 5) 0
- GET PURPLE RUPEE IF:
- T = 3, 4, 6, 7
- ---------------------------------------------------------------------------------
- Tens place with 0 in ones place (want to have 0 in tens place after withdrawing)
- Tens place - 1 Actual Tens Place
- 0 --> 5 == bad (0 --> 5) 1
- 1 --> 6 == bad (1 --> 4) 2
- 2 --> 7 == bad (2 --> 3) 3
- 3 --> 8 == good (3 --> 2) 4
- 4 --> 9 == good (5 --> 1) 5
- 5 --> 0 == good (5 --> 0) 6
- 6 --> 1 == good (4 --> 1) 7
- 7 --> 2 == good (3 --> 2) 8
- 8 --> 3 == bad (2 --> 3) 9
- 9 --> 4 == bad (1 --> 4) 0
- GET PURPLE RUPEE IF:
- T = 4, 5, 6, 7, 8
- and
- O = 0
Add Comment
Please, Sign In to add comment