少年修仙传服务端代码子仓库
ServerPack/MapServerPack/HA7_Interaction/ChatBubbleBoxState.h
@@ -1,9 +1,16 @@
// A7 17 聊天气泡框状态 #tagMCChatBubbleBoxState
struct    tagMCChatBubbleBoxState
struct   tagMCChatBubbleBox
{
   BYTE      BoxID;      //气泡ID
   BYTE      State;      //是否已激活
   DWORD      EndTime;      //到期时间戳,0为永久
   BYTE      Star;      //星级
};
struct    tagMCChatBubbleBoxState
{
   tagHead       Head;
   BYTE      UseBoxID;   // 当前使用的气泡框ID
   DWORD      BoxState;   // 按二进制位存储代表是否已开启,暂支持31位,以后有需要再加
   BYTE      Count;
   tagMCChatBubbleBox   BoxList[Count];
};