diff options
author | shennetsind <ind@henn.et> | 2013-05-31 02:04:24 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-05-31 02:04:24 -0300 |
commit | adc2e6ea9778e34945722f8f7d89e10cd9a4b972 (patch) | |
tree | 0178b50b3ef3bdcdd16d45a56d1c8d250c0eb2ea /src/map/packets_struct.h | |
parent | 68ff83df2e3a161ebf67f9e8b1c64a0eab767f8b (diff) | |
download | hercules-adc2e6ea9778e34945722f8f7d89e10cd9a4b972.tar.gz hercules-adc2e6ea9778e34945722f8f7d89e10cd9a4b972.tar.bz2 hercules-adc2e6ea9778e34945722f8f7d89e10cd9a4b972.tar.xz hercules-adc2e6ea9778e34945722f8f7d89e10cd9a4b972.zip |
Fixed Bug #7272
Special Thanks to bgamez23
http://hercules.ws/board/tracker/issue-7272-secure-npctimeout-bug-for-those-npc-who-have-no-dialog-window/
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/packets_struct.h')
-rw-r--r-- | src/map/packets_struct.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/map/packets_struct.h b/src/map/packets_struct.h index 9d1f9b280..083c00e31 100644 --- a/src/map/packets_struct.h +++ b/src/map/packets_struct.h @@ -72,6 +72,7 @@ enum packet_headers { #else authokType = 0x2eb, #endif + script_clearType = 0x8d6, #if PACKETVER < 4 unit_walkingType = 0x7b, #elif PACKETVER < 7 @@ -453,6 +454,12 @@ struct packet_bgqueue_battlebegins { 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_ */ |