├── .gitattributes ├── .gitignore ├── README.md ├── WatyBotInjector ├── WatyBotInjector.vcxproj ├── WatyBotInjector.vcxproj.filters └── main.cpp ├── WatyBotManager ├── GeneralSettings.h ├── MainForm.cpp ├── MainForm.h ├── MainForm.resx ├── Tab.cpp ├── Tab.h ├── WatyBotManager.vcxproj ├── WatyBotManager.vcxproj.filters └── main.cpp ├── WatyBotRevamp.sln ├── WatyBotRevamp ├── Addys.h ├── AutoSkill.cpp ├── AutoSkill.h ├── ChangeChannel.cpp ├── ChangeChannel.h ├── HackAddys.h ├── Hacks.cpp ├── Hacks.h ├── Hooks.cpp ├── Log.cpp ├── Log.h ├── MainDll.cpp ├── MainForm.cpp ├── MainForm.h ├── MainForm.resx ├── MapleStory.cpp ├── MapleStory.h ├── Memory.cpp ├── Memory.h ├── PacketDialog.h ├── PacketDialog.resx ├── PacketSender.cpp ├── PacketSender.h ├── SPControl.cpp ├── SPControl.h ├── SPControlDialog.cpp ├── SPControlDialog.h ├── SPControlDialog.resx ├── Settings.cpp ├── Settings.h ├── StopWatch.h ├── WatyBotRevamp.vcxproj ├── WatyBotRevamp.vcxproj.filters ├── detours.lib ├── noncopyable.h └── syelog.lib └── WatyBotUpdater ├── AOBs.xml ├── Address.h ├── MainDLL.cpp ├── MyForm.cpp ├── MyForm.h ├── MyForm.resx ├── PatternFind.cpp ├── PatternFind.h ├── WatyBotUpdater.vcxproj └── WatyBotUpdater.vcxproj.filters /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/README.md -------------------------------------------------------------------------------- /WatyBotInjector/WatyBotInjector.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotInjector/WatyBotInjector.vcxproj -------------------------------------------------------------------------------- /WatyBotInjector/WatyBotInjector.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotInjector/WatyBotInjector.vcxproj.filters -------------------------------------------------------------------------------- /WatyBotInjector/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotInjector/main.cpp -------------------------------------------------------------------------------- /WatyBotManager/GeneralSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotManager/GeneralSettings.h -------------------------------------------------------------------------------- /WatyBotManager/MainForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotManager/MainForm.cpp -------------------------------------------------------------------------------- /WatyBotManager/MainForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotManager/MainForm.h -------------------------------------------------------------------------------- /WatyBotManager/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotManager/MainForm.resx -------------------------------------------------------------------------------- /WatyBotManager/Tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotManager/Tab.cpp -------------------------------------------------------------------------------- /WatyBotManager/Tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotManager/Tab.h -------------------------------------------------------------------------------- /WatyBotManager/WatyBotManager.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotManager/WatyBotManager.vcxproj -------------------------------------------------------------------------------- /WatyBotManager/WatyBotManager.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotManager/WatyBotManager.vcxproj.filters -------------------------------------------------------------------------------- /WatyBotManager/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotManager/main.cpp -------------------------------------------------------------------------------- /WatyBotRevamp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp.sln -------------------------------------------------------------------------------- /WatyBotRevamp/Addys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/Addys.h -------------------------------------------------------------------------------- /WatyBotRevamp/AutoSkill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/AutoSkill.cpp -------------------------------------------------------------------------------- /WatyBotRevamp/AutoSkill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/AutoSkill.h -------------------------------------------------------------------------------- /WatyBotRevamp/ChangeChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/ChangeChannel.cpp -------------------------------------------------------------------------------- /WatyBotRevamp/ChangeChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/ChangeChannel.h -------------------------------------------------------------------------------- /WatyBotRevamp/HackAddys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/HackAddys.h -------------------------------------------------------------------------------- /WatyBotRevamp/Hacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/Hacks.cpp -------------------------------------------------------------------------------- /WatyBotRevamp/Hacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/Hacks.h -------------------------------------------------------------------------------- /WatyBotRevamp/Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/Hooks.cpp -------------------------------------------------------------------------------- /WatyBotRevamp/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/Log.cpp -------------------------------------------------------------------------------- /WatyBotRevamp/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/Log.h -------------------------------------------------------------------------------- /WatyBotRevamp/MainDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/MainDll.cpp -------------------------------------------------------------------------------- /WatyBotRevamp/MainForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/MainForm.cpp -------------------------------------------------------------------------------- /WatyBotRevamp/MainForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/MainForm.h -------------------------------------------------------------------------------- /WatyBotRevamp/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/MainForm.resx -------------------------------------------------------------------------------- /WatyBotRevamp/MapleStory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/MapleStory.cpp -------------------------------------------------------------------------------- /WatyBotRevamp/MapleStory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/MapleStory.h -------------------------------------------------------------------------------- /WatyBotRevamp/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/Memory.cpp -------------------------------------------------------------------------------- /WatyBotRevamp/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/Memory.h -------------------------------------------------------------------------------- /WatyBotRevamp/PacketDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/PacketDialog.h -------------------------------------------------------------------------------- /WatyBotRevamp/PacketDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/PacketDialog.resx -------------------------------------------------------------------------------- /WatyBotRevamp/PacketSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/PacketSender.cpp -------------------------------------------------------------------------------- /WatyBotRevamp/PacketSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/PacketSender.h -------------------------------------------------------------------------------- /WatyBotRevamp/SPControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/SPControl.cpp -------------------------------------------------------------------------------- /WatyBotRevamp/SPControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/SPControl.h -------------------------------------------------------------------------------- /WatyBotRevamp/SPControlDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/SPControlDialog.cpp -------------------------------------------------------------------------------- /WatyBotRevamp/SPControlDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/SPControlDialog.h -------------------------------------------------------------------------------- /WatyBotRevamp/SPControlDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/SPControlDialog.resx -------------------------------------------------------------------------------- /WatyBotRevamp/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/Settings.cpp -------------------------------------------------------------------------------- /WatyBotRevamp/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/Settings.h -------------------------------------------------------------------------------- /WatyBotRevamp/StopWatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/StopWatch.h -------------------------------------------------------------------------------- /WatyBotRevamp/WatyBotRevamp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/WatyBotRevamp.vcxproj -------------------------------------------------------------------------------- /WatyBotRevamp/WatyBotRevamp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/WatyBotRevamp.vcxproj.filters -------------------------------------------------------------------------------- /WatyBotRevamp/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/detours.lib -------------------------------------------------------------------------------- /WatyBotRevamp/noncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/noncopyable.h -------------------------------------------------------------------------------- /WatyBotRevamp/syelog.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotRevamp/syelog.lib -------------------------------------------------------------------------------- /WatyBotUpdater/AOBs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotUpdater/AOBs.xml -------------------------------------------------------------------------------- /WatyBotUpdater/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotUpdater/Address.h -------------------------------------------------------------------------------- /WatyBotUpdater/MainDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotUpdater/MainDLL.cpp -------------------------------------------------------------------------------- /WatyBotUpdater/MyForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotUpdater/MyForm.cpp -------------------------------------------------------------------------------- /WatyBotUpdater/MyForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotUpdater/MyForm.h -------------------------------------------------------------------------------- /WatyBotUpdater/MyForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotUpdater/MyForm.resx -------------------------------------------------------------------------------- /WatyBotUpdater/PatternFind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotUpdater/PatternFind.cpp -------------------------------------------------------------------------------- /WatyBotUpdater/PatternFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotUpdater/PatternFind.h -------------------------------------------------------------------------------- /WatyBotUpdater/WatyBotUpdater.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotUpdater/WatyBotUpdater.vcxproj -------------------------------------------------------------------------------- /WatyBotUpdater/WatyBotUpdater.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waty/WatyBot/HEAD/WatyBotUpdater/WatyBotUpdater.vcxproj.filters --------------------------------------------------------------------------------