├── .gitignore ├── LICENSE ├── README.md ├── extra ├── unluac_2015_06_13.jar └── unluac_license.txt ├── finduanswer.php ├── readustring.php ├── settings.ini.sample ├── ucommons.php └── wherigoreader.php /.gitignore: -------------------------------------------------------------------------------- 1 | settings.ini 2 | *.gwc 3 | *_files 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krevo/WherigoTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krevo/WherigoTools/HEAD/README.md -------------------------------------------------------------------------------- /extra/unluac_2015_06_13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krevo/WherigoTools/HEAD/extra/unluac_2015_06_13.jar -------------------------------------------------------------------------------- /extra/unluac_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krevo/WherigoTools/HEAD/extra/unluac_license.txt -------------------------------------------------------------------------------- /finduanswer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krevo/WherigoTools/HEAD/finduanswer.php -------------------------------------------------------------------------------- /readustring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krevo/WherigoTools/HEAD/readustring.php -------------------------------------------------------------------------------- /settings.ini.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krevo/WherigoTools/HEAD/settings.ini.sample -------------------------------------------------------------------------------- /ucommons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krevo/WherigoTools/HEAD/ucommons.php -------------------------------------------------------------------------------- /wherigoreader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krevo/WherigoTools/HEAD/wherigoreader.php --------------------------------------------------------------------------------