├── LICENSE ├── README.md ├── classes ├── Tibia_binary_serializer.class.php └── Tibia_client.class.php ├── libs ├── XTEA.class.php ├── hhb_.inc.php └── hhb_datatypes.inc.php ├── research ├── 7.6.tibia_client.class.php ├── Player.class.php ├── searchBinary.php ├── xtea2.php ├── xtea3.php ├── xtea_helper.cpp └── xtea_helper.php └── tests ├── lazer.php ├── loginPlayerBot.php └── xtea_tests.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Znote/POTCP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Znote/POTCP/HEAD/README.md -------------------------------------------------------------------------------- /classes/Tibia_binary_serializer.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Znote/POTCP/HEAD/classes/Tibia_binary_serializer.class.php -------------------------------------------------------------------------------- /classes/Tibia_client.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Znote/POTCP/HEAD/classes/Tibia_client.class.php -------------------------------------------------------------------------------- /libs/XTEA.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Znote/POTCP/HEAD/libs/XTEA.class.php -------------------------------------------------------------------------------- /libs/hhb_.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Znote/POTCP/HEAD/libs/hhb_.inc.php -------------------------------------------------------------------------------- /libs/hhb_datatypes.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Znote/POTCP/HEAD/libs/hhb_datatypes.inc.php -------------------------------------------------------------------------------- /research/7.6.tibia_client.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Znote/POTCP/HEAD/research/7.6.tibia_client.class.php -------------------------------------------------------------------------------- /research/Player.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Znote/POTCP/HEAD/research/Player.class.php -------------------------------------------------------------------------------- /research/searchBinary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Znote/POTCP/HEAD/research/searchBinary.php -------------------------------------------------------------------------------- /research/xtea2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Znote/POTCP/HEAD/research/xtea2.php -------------------------------------------------------------------------------- /research/xtea3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Znote/POTCP/HEAD/research/xtea3.php -------------------------------------------------------------------------------- /research/xtea_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Znote/POTCP/HEAD/research/xtea_helper.cpp -------------------------------------------------------------------------------- /research/xtea_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Znote/POTCP/HEAD/research/xtea_helper.php -------------------------------------------------------------------------------- /tests/lazer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Znote/POTCP/HEAD/tests/lazer.php -------------------------------------------------------------------------------- /tests/loginPlayerBot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Znote/POTCP/HEAD/tests/loginPlayerBot.php -------------------------------------------------------------------------------- /tests/xtea_tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Znote/POTCP/HEAD/tests/xtea_tests.php --------------------------------------------------------------------------------