diff options
Diffstat (limited to 'src/net/eathena/guildhandler.cpp')
-rw-r--r-- | src/net/eathena/guildhandler.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/net/eathena/guildhandler.cpp b/src/net/eathena/guildhandler.cpp index 85000d79f..84dd8eec8 100644 --- a/src/net/eathena/guildhandler.cpp +++ b/src/net/eathena/guildhandler.cpp @@ -477,4 +477,19 @@ void GuildHandler::endAlliance(const int guildId, outMsg.writeInt32(flag, "flag"); } +void GuildHandler::changePostionInfo(const int posId, + const int mode, + const int ranking, + const int payRate, + const std::string &name) const +{ + createOutPacket(CMSG_GUILD_CHANGE_POS_INFO); + outMsg.writeInt16(44, "len"); + outMsg.writeInt32(posId, "position id"); + outMsg.writeInt32(mode, "mode"); + outMsg.writeInt32(ranking, "ranking"); + outMsg.writeInt32(payRate, "pay rate"); + outMsg.writeString(name, 24, "name"); +} + } // namespace EAthena |