1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
|
// Copyright (c) Hercules Dev Team, licensed under GNU GPL.
// See the LICENSE file
/* Hercules Renewal: Phase Two http://hercules.ws/board/topic/383-hercules-renewal-phase-two/ */
#ifndef _PACKETS_STRUCT_H_
#define _PACKETS_STRUCT_H_
#include "../common/mmo.h"
/**
* structs for data
*/
struct EQUIPSLOTINFO {
unsigned short card[4];
};
/**
*
**/
enum packet_headers {
sc_notickType = 0x196,
#if PACKETVER < 20061218
additemType = 0xa0,
#elif PACKETVER < 20071002
additemType = 0x29a,
#elif PACKETVER < 20120925
additemType = 0x2d4,
#else
additemType = 0x990,
#endif
#if PACKETVER < 4
idle_unitType = 0x78,
#elif PACKETVER < 7
idle_unitType = 0x1d8,
#elif PACKETVER < 20080102
idle_unitType = 0x22a,
#elif PACKETVER < 20091103
idle_unitType = 0x2ee,
#elif PACKETVER < 20101124
idle_unitType = 0x7f9,
#elif PACKETVER < 20140000 //actual 20120221
idle_unitType = 0x857,
#else
idle_unitType = 0x915,
#endif
#if PACKETVER >= 20120618
status_changeType = 0x983,
#elif PACKETVER >= 20090121
status_changeType = 0x43f,
#else
status_changeType = sc_notickType,/* 0x196 */
#endif
status_change2Type = 0x43f,
status_change_endType = 0x196,
#if PACKETVER < 4
spawn_unitType = 0x79,
#elif PACKETVER < 7
spawn_unitType = 0x1d9,
#elif PACKETVER < 20080102
spawn_unitType = 0x22b,
#elif PACKETVER < 20091103
spawn_unitType = 0x2ed,
#elif PACKETVER < 20101124
spawn_unitType = 0x7f8,
#elif PACKETVER < 20140000 //actual 20120221
spawn_unitType = 0x858,
#else
spawn_unitType = 0x90f,
#endif
#if PACKETVER < 20080102
authokType = 0x73,
#else
authokType = 0x2eb,
#endif
script_clearType = 0x8d6,
#if PACKETVER < 4
unit_walkingType = 0x7b,
#elif PACKETVER < 7
unit_walkingType = 0x1da,
#elif PACKETVER < 20080102
unit_walkingType = 0x22c,
#elif PACKETVER < 20091103
unit_walkingType = 0x2ec,
#elif PACKETVER < 20101124
unit_walkingType = 0x7f7,
#elif PACKETVER < 20140000 //actual 20120221
unit_walkingType = 0x856,
#else
unit_walkingType = 0x914,
#endif
bgqueue_ackType = 0x8d8,
bgqueue_notice_deleteType = 0x8db,
bgqueue_registerType = 0x8d7,
bgqueue_updateinfoType = 0x8d9,
bgqueue_checkstateType = 0x90a,
bgqueue_revokereqType = 0x8da,
bgqueue_battlebeginackType = 0x8e0,
bgqueue_notify_entryType = 0x8d9,
bgqueue_battlebegins = 0x8df,
#if PACKETVER > 20130000 /* not sure date */
dropflooritemType = 0x84b,
#else
dropflooritemType = 0x9e,
#endif
monsterhpType = 0x977,
maptypeproperty2Type = 0x99b,
};
#pragma pack(push, 1)
struct packet_authok {
short PacketType;
unsigned int startTime;
char PosDir[3];
unsigned char xSize;
unsigned char ySize;
#if PACKETVER >= 20080102
short font;
#endif
} __attribute__((packed));
struct packet_monster_hp {
short PacketType;
unsigned int GID;
int HP;
int MaxHP;
} __attribute__((packed));
struct packet_sc_notick {
short PacketType;
short index;
unsigned int AID;
unsigned char state;
} __attribute__((packed));
struct packet_additem {
short PacketType;
unsigned short Index;
unsigned short count;
unsigned short nameid;
bool IsIdentified;
bool IsDamaged;
unsigned char refiningLevel;
struct EQUIPSLOTINFO slot;
#if PACKETVER >= 20120925
unsigned int location;
#else
unsigned short location;
#endif
unsigned char type;
unsigned char result;
#if PACKETVER >= 20061218
int HireExpireDate;
#endif
#if PACKETVER >= 20071002
unsigned short bindOnEquipType;
#endif
} __attribute__((packed));
struct packet_dropflooritem {
short PacketType;
unsigned int ITAID;
unsigned short ITID;
#if PACKETVER >= 20130000 /* not sure date */
unsigned short type;
#endif
bool IsIdentified;
short xPos;
short yPos;
unsigned char subX;
unsigned char subY;
short count;
} __attribute__((packed));
struct packet_spawn_unit {
short PacketType;
#if PACKETVER >= 20091103
short PacketLength;
unsigned char objecttype;
#endif
unsigned int GID;
short speed;
short bodyState;
short healthState;
#if PACKETVER < 20080102
short effectState;
#else
int effectState;
#endif
short job;
short head;
#if PACKETVER < 7
short weapon;
#else
int weapon;
#endif
short accessory;
#if PACKETVER < 7
short shield;
#endif
short accessory2;
short accessory3;
short headpalette;
short bodypalette;
short headDir;
#if PACKETVER >= 20101124
short robe;
#endif
unsigned int GUID;
short GEmblemVer;
short honor;
#if PACKETVER >= 20091103
int virtue;
#else
short virtue;
#endif
bool isPKModeON;
unsigned char sex;
char PosDir[3];
unsigned char xSize;
unsigned char ySize;
short clevel;
#if PACKETVER >= 20080102
short font;
#endif
#if PACKETVER >= 20140000 //actual 20120221
int maxHP;
int HP;
unsigned char isBoss;
#endif
} __attribute__((packed));
struct packet_unit_walking {
short PacketType;
#if PACKETVER >= 20091103
short PacketLength;
unsigned char objecttype;
#endif
unsigned int GID;
short speed;
short bodyState;
short healthState;
#if PACKETVER < 20080102
short effectState;
#else
int effectState;
#endif
short job;
short head;
#if PACKETVER < 7
short weapon;
#else
int weapon;
#endif
short accessory;
unsigned int moveStartTime;
#if PACKETVER < 7
short shield;
#endif
short accessory2;
short accessory3;
short headpalette;
short bodypalette;
short headDir;
#if PACKETVER >= 20101124
short robe;
#endif
unsigned int GUID;
short GEmblemVer;
short honor;
#if PACKETVER >= 20091103
int virtue;
#else
short virtue;
#endif
bool isPKModeON;
unsigned char sex;
char MoveData[6];
unsigned char xSize;
unsigned char ySize;
short clevel;
#if PACKETVER >= 20080102
short font;
#endif
#if PACKETVER >= 20140000 //actual 20120221
int maxHP;
int HP;
unsigned char isBoss;
#endif
} __attribute__((packed));
struct packet_idle_unit {
short PacketType;
#if PACKETVER >= 20091103
short PacketLength;
unsigned char objecttype;
#endif
unsigned int GID;
short speed;
short bodyState;
short healthState;
#if PACKETVER < 20080102
short effectState;
#else
int effectState;
#endif
short job;
short head;
#if PACKETVER < 7
short weapon;
#else
int weapon;
#endif
short accessory;
#if PACKETVER < 7
short shield;
#endif
short accessory2;
short accessory3;
short headpalette;
short bodypalette;
short headDir;
#if PACKETVER >= 20101124
short robe;
#endif
unsigned int GUID;
short GEmblemVer;
short honor;
#if PACKETVER >= 20091103
int virtue;
#else
short virtue;
#endif
bool isPKModeON;
unsigned char sex;
char PosDir[3];
unsigned char xSize;
unsigned char ySize;
unsigned char state;
short clevel;
#if PACKETVER >= 20080102
short font;
#endif
#if PACKETVER >= 20140000 //actual 20120221
int maxHP;
int HP;
unsigned char isBoss;
#endif
} __attribute__((packed));
struct packet_status_change {
short PacketType;
short index;
unsigned int AID;
unsigned char state;
#if PACKETVER >= 20120618
unsigned int Total;
#endif
#if PACKETVER >= 20090121
unsigned int Left;
int val1;
int val2;
int val3;
#endif
} __attribute__((packed));
struct packet_status_change_end {
short PacketType;
short index;
unsigned int AID;
unsigned char state;
} __attribute__((packed));
struct packet_status_change2 {
short PacketType;
short index;
unsigned int AID;
unsigned char state;
unsigned int Left;
int val1;
int val2;
int val3;
} __attribute__((packed));
struct packet_maptypeproperty2 {
short PacketType;
short type;
struct {
unsigned int party : 1;
unsigned int guild : 1;
unsigned int siege : 1;
unsigned int mineffect : 1;
unsigned int nolockon : 1;
unsigned int countpk : 1;
unsigned int nopartyformation : 1;
unsigned int bg : 1;
unsigned int noitemconsumption : 1;
unsigned int usecart : 1;
unsigned int summonstarmiracle : 1;
unsigned int SpareBits : 15;
} flag;
} __attribute__((packed));
struct packet_bgqueue_ack {
short PacketType;
short type;
char bg_name[NAME_LENGTH];
} __attribute__((packed));
struct packet_bgqueue_notice_delete {
short PacketType;
short type;
char bg_name[NAME_LENGTH];
} __attribute__((packed));
struct packet_bgqueue_register {
short PacketType;
short type;
char bg_name[NAME_LENGTH];
} __attribute__((packed));
struct packet_bgqueue_update_info {
short PacketType;
char bg_name[NAME_LENGTH];
int position;
} __attribute__((packed));
struct packet_bgqueue_checkstate {
short PacketType;
char bg_name[NAME_LENGTH];
} __attribute__((packed));
struct packet_bgqueue_revoke_req {
short PacketType;
char bg_name[NAME_LENGTH];
} __attribute__((packed));
struct packet_bgqueue_battlebegin_ack {
short PacketType;
short result;
char bg_name[NAME_LENGTH];
char game_name[NAME_LENGTH];
} __attribute__((packed));
struct packet_bgqueue_notify_entry {
short PacketType;
char name[NAME_LENGTH];
int position;
} __attribute__((packed));
struct packet_bgqueue_battlebegins {
short PacketType;
char bg_name[NAME_LENGTH];
char game_name[NAME_LENGTH];
} __attribute__((packed));
struct packet_script_clear {
short PacketType;
unsigned int NpcID;
} __attribute__((packed));
#pragma pack(pop)
#endif /* _PACKETS_STRUCT_H_ */
|