Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- GETTING KEYS WITH VERAN WARP
- When you activate the "positioning glitch" with Veran Warp in Oracle of Ages, it tends to also corrupt your small key count.
- 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:
- * 0: Ralph entered portal at start of game
- * 1: Saw cutscene with surprised npc upon entering the past the first time
- * 2: Animal companion has gotten lost in the forest
- * 3: Talked to cheval
- * 4: Bumped into Maple in the past at least one time
- * 5: Ralph entered black tower
- * 6: Got satchel upgrade
- * 7: Unused?
- 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.
- +------------------+--------KEYS--------+
- | | D5 | D6 | D7 |
- +----FLAGS SET-----+------+------+------+
- |0,1,2 = $07 | 132 | 132 | X |
- |0,1,2,3 = $0f | 15 | 7 | 7 |
- |0,1,2, 4 = $17 | 14 | 1 | X |
- |0,1,2,3,4 = $1f | 10 | 10 | X |
- |0,1,2, 6 = $47 | 1 | 1 | X |
- |0,1,2,3, 6 = $4f | 15 | 1 | X |
- |0,1,2, 4,6 = $57 | 1 | 1 | X |
- |0,1,2,3,4,6 = $5f | 1 | 1 | X |
- +------------------+------+------+------+
- Including flag 5 (ralph entered black tower):
- +--------------------+--------KEYS--------+
- | | D5 | D6 | D7 |
- +----FLAGS SET-------+------+------+------+
- |0,1,2, 5 = $27 | 2 | 2 | X |
- |0,1,2,3, 5 = $2f | 4 | 4 | X |
- |0,1,2, 4,5 = $37 | 1 | 1 | X |
- |0,1,2,3,4,5 = $3f | 1 | 1 | X |
- |0,1,2, 5,6 = $67 | 15 | 7 | 7 |
- |0,1,2,3, 5,6 = $6f | 14 | 7 | 7 |
- |0,1,2, 4,5,6 = $77 | 11 | 11 | X |
- |0,1,2,3,4,5,6 = $7f | 10 | 10 | X |
- +--------------------+------+------+------+
Add Comment
Please, Sign In to add comment