Drennthew

Getting keys with Veran Warp

Jul 29th, 2019
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. GETTING KEYS WITH VERAN WARP
  2.  
  3. When you activate the "positioning glitch" with Veran Warp in Oracle of Ages, it tends to also corrupt your small key count.
  4.  
  5. It can give you keys in dungeons 5, 6 (present), and 7. The keys obtained from this are determined by the value of address $c6d8, which corresponds to 8 "global flags". The flags (and their corresponding bits) are as follows:
  6.  
  7. * 0: Ralph entered portal at start of game
  8. * 1: Saw cutscene with surprised npc upon entering the past the first time
  9. * 2: Animal companion has gotten lost in the forest
  10. * 3: Talked to cheval
  11. * 4: Bumped into Maple in the past at least one time
  12. * 5: Ralph entered black tower
  13. * 6: Got satchel upgrade
  14. * 7: Unused?
  15.  
  16. Assume that flags 0-2 are always set, and bits 5 and 7 are never set. Here are the keys you will get for each combination of flags. If it says "X", that means the keys for that dungeon are unaffected.
  17.  
  18. +------------------+--------KEYS--------+
  19. | | D5 | D6 | D7 |
  20. +----FLAGS SET-----+------+------+------+
  21. |0,1,2 = $07 | 132 | 132 | X |
  22. |0,1,2,3 = $0f | 15 | 7 | 7 |
  23. |0,1,2, 4 = $17 | 14 | 1 | X |
  24. |0,1,2,3,4 = $1f | 10 | 10 | X |
  25. |0,1,2, 6 = $47 | 1 | 1 | X |
  26. |0,1,2,3, 6 = $4f | 15 | 1 | X |
  27. |0,1,2, 4,6 = $57 | 1 | 1 | X |
  28. |0,1,2,3,4,6 = $5f | 1 | 1 | X |
  29. +------------------+------+------+------+
  30.  
  31. Including flag 5 (ralph entered black tower):
  32.  
  33. +--------------------+--------KEYS--------+
  34. | | D5 | D6 | D7 |
  35. +----FLAGS SET-------+------+------+------+
  36. |0,1,2, 5 = $27 | 2 | 2 | X |
  37. |0,1,2,3, 5 = $2f | 4 | 4 | X |
  38. |0,1,2, 4,5 = $37 | 1 | 1 | X |
  39. |0,1,2,3,4,5 = $3f | 1 | 1 | X |
  40. |0,1,2, 5,6 = $67 | 15 | 7 | 7 |
  41. |0,1,2,3, 5,6 = $6f | 14 | 7 | 7 |
  42. |0,1,2, 4,5,6 = $77 | 11 | 11 | X |
  43. |0,1,2,3,4,5,6 = $7f | 10 | 10 | X |
  44. +--------------------+------+------+------+
Add Comment
Please, Sign In to add comment