diff options
Diffstat (limited to 'src/net/eathena/adminhandler.cpp')
-rw-r--r-- | src/net/eathena/adminhandler.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/net/eathena/adminhandler.cpp b/src/net/eathena/adminhandler.cpp index 56f69feeb..aa4980fb9 100644 --- a/src/net/eathena/adminhandler.cpp +++ b/src/net/eathena/adminhandler.cpp @@ -105,4 +105,16 @@ void AdminHandler::warp(const std::string &map, const int x, const int y) const outMsg.writeInt16(y, "y"); } +void AdminHandler::resetStats() const +{ + MessageOut outMsg(CMSG_ADMIN_RESET_PLAYER); + outMsg.writeInt16(0, "flag"); +} + +void AdminHandler::resetSkills() const +{ + MessageOut outMsg(CMSG_ADMIN_RESET_PLAYER); + outMsg.writeInt16(1, "flag"); +} + } // namespace EAthena |