少年修仙传服务端代码子仓库
hxp
2023-07-10 5bca9ccdabaacdc676e331bbdf0c7caaa833d351
提交 | 用户 | age
6f59d9 1 // B0 04 使用协助感谢礼盒预览 #tagGCUseAssistThanksGiftPreview
H 2
3 struct    tagGCAssistPlayerInfo
4 {
5     DWORD        PlayerID;
6     char        PlayerName[33];
7     BYTE        Job;
8     WORD        LV;
9     BYTE        RealmLV;        //境界
10 };
11
12 struct    tagGCUseAssistThanksGiftPreview
13 {
14     tagHead        Head;
15     DWORD        ItemID;        //礼盒ID
16     DWORD        MapID;
17     DWORD        LineID;
18     DWORD        NPCID;
19     WORD        ExDataLen;
20     char        ExData[ExDataLen];    //其他自定义数据
21     BYTE        AssistPlayerCount;
22     tagGCAssistPlayerInfo    AssistPlayerList[AssistPlayerCount];    //协助玩家列表
23 };