If you know where any of these people are from, please contact me on Discord:
RoccoDev#1337
notSally
oKry
| # Needs testing as of March 31, 2019. | |
| No Great Plateau Barrier [RoccoDev] | |
| 00020000 101E07F8 | |
| 497423F0 00000000 | |
| 00020000 101E07FC | |
| 497423F0 00000000 | |
| 00020000 101E0800 | |
| 497423F0 00000000 | |
| 00020000 101E0804 |
| function findHashes(query) { | |
| let url = `https://radar.zeldamods.org/objs/MainField/?q=${encodeURI(query)}&withMapNames=false&limit=100000` | |
| let result = [] | |
| let xml = new XMLHttpRequest() | |
| function load() { | |
| console.log(this.responseText) | |
| let json = JSON.parse(this.responseText) |
| NFKSGVN / -709 | |
| IMNooB_CH / -474 | |
| LifeisAltered / -430 | |
| WingedWarriorBR / -64 | |
| keoShine / 0 | |
| luxury_ninja_35 / 0 | |
| King_of_Butter / 0 | |
| Noalix / 0 | |
| Caponiboys / 0 | |
| vegetooh / 0 |
| cooljam437 / 0 | |
| Palooza92 / 0 | |
| IDontEatBooty / 0 | |
| Diamond_Doofus / 0 | |
| Freetires / 0 | |
| TaquitoFlames / 0 | |
| Chrizwagner / 0 | |
| M_D_M / 0 | |
| ItsJustDamian / 0 | |
| vitaminass / 0 |
I hereby claim:
To claim this, I am signing this object:
| // | |
| // Created by roccodev on 06/03/18. | |
| // | |
| /* | |
| * | |
| * This program is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License as published by | |
| * the Free Software Foundation, either version 3 of the License, or | |
| * (at your option) any later version. |
| public static HashMap<Integer, Boolean> checksum = new HashMap<Integer, Boolean>(); // Used to be Byte, changed to Boolean for performance | |
| public static void main(String args[]) throws IOException { | |
| int state = 0; // A, B, C, D, E, F | |
| // 0, 1, 2, 3, 4, 5 | |
| int currentPos = 0; | |
| for (int i = 0; i < 12173597; i++) { |
| public static HashMap<String, Integer> registers = new HashMap<String, Integer>(); | |
| public static void main(String args[]) throws IOException { | |
| ArrayList<String> bloccs = new ArrayList<String>( | |
| Files.readAllLines(Paths.get(new File("res/day23").getPath())).stream().collect(Collectors.toList())); | |
| char[] array = "abcdefgh".toCharArray(); | |
| for (char c : array) |
| ArrayList<String> bloccs = new ArrayList<String>( | |
| Files.readAllLines(Paths.get(new File("res/day19").getPath())).stream().collect(Collectors.toList())); | |
| Step step = new Step(bloccs.get(0).indexOf('|'), 0); | |
| Grid grid = new Grid(bloccs); | |
| Dir dir = Dir.SOUTH; | |