diff options
author | shennetsind <ind@henn.et> | 2013-04-27 16:27:15 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-04-27 16:27:15 -0300 |
commit | 8c5e27c1cc48ca323df82acb1b46314aac213b76 (patch) | |
tree | ea0ebea161e530d6bb4cef959b324235edbf92fc | |
parent | f2942453592621f5d3e4553fa96cd1b417fa74fb (diff) | |
download | hercules-8c5e27c1cc48ca323df82acb1b46314aac213b76.tar.gz hercules-8c5e27c1cc48ca323df82acb1b46314aac213b76.tar.bz2 hercules-8c5e27c1cc48ca323df82acb1b46314aac213b76.tar.xz hercules-8c5e27c1cc48ca323df82acb1b46314aac213b76.zip |
Fixed Buying Stores on 2013 clients
Special Thanks to Yommy!
Signed-off-by: shennetsind <ind@henn.et>
-rw-r--r-- | src/map/packets.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/map/packets.h b/src/map/packets.h index 0b8cbf5a3..13547586a 100644 --- a/src/map/packets.h +++ b/src/map/packets.h @@ -2021,6 +2021,10 @@ packet(0x020d,-1); packet(0x0960,5,clif->pChangeDir,2,4); #endif +#if PACKETVER >= 20130313 + packet(0x035f,6,clif->pReqClickBuyingStore,2); +#endif + //2013-03-20Ragexe (Judas) #if PACKETVER >= 20130320 packet(0x01FD,15,clif->pRepairItem,2); @@ -2049,8 +2053,7 @@ packet(0x020d,-1); packet(0x0998,8,clif->pEquipItem,2,4); //packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); packet(0x0938,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); - //packet(0x0817,2,clif->pReqCloseBuyingStore,0); - //packet(0x0360,6,clif->pReqClickBuyingStore,2); + packet(0x0815,2,clif->pReqCloseBuyingStore,0); packet(0x0922,-1,clif->pReqTradeBuyingStore,2,4,8,12); packet(0x094E,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); //packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); |