diff options
author | shennetsind <ind@henn.et> | 2013-05-02 20:20:24 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-05-02 20:20:24 -0300 |
commit | 6bca43acc31cdd3b9b418779eff45dc68a918a1c (patch) | |
tree | b0c0250102fba737263494656441c2d069f12e09 /src | |
parent | 7aa95956da289b7c94de45ae41e2818c795a8f48 (diff) | |
download | hercules-6bca43acc31cdd3b9b418779eff45dc68a918a1c.tar.gz hercules-6bca43acc31cdd3b9b418779eff45dc68a918a1c.tar.bz2 hercules-6bca43acc31cdd3b9b418779eff45dc68a918a1c.tar.xz hercules-6bca43acc31cdd3b9b418779eff45dc68a918a1c.zip |
Fixed 2012-07-16a Storage Packet
Special thanks to mybitch for pointing it out, Also enabled ragexe's cash shop for clients 2011-07-18 onwards (special thanks to Yommy!)
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src')
-rw-r--r-- | src/map/packets.h | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src/map/packets.h b/src/map/packets.h index edfa40c37..09e158d98 100644 --- a/src/map/packets.h +++ b/src/map/packets.h @@ -1845,6 +1845,14 @@ packet(0x020d,-1); packet(0x0859,-1); #endif +//2011-07-18aRagexe (Thanks to Yommy!) +#if PACKETVER >= 20110718 + packet(0x0844,2,clif->pCashShopOpen,2);/* tell server cashshop window is being open */ + packet(0x084a,2,clif->pCashShopClose,2);/* tell server cashshop window is being closed */ + packet(0x08c9,2,clif->pCashShopSchedule,0); + packet(0x0848,-1,clif->pCashShopBuy,2); +#endif + //2011-10-05aRagexeRE #if PACKETVER >= 20111005 packet(0x0364,5,clif->pWalkToXY,2); @@ -2025,6 +2033,10 @@ packet(0x020d,-1); #if PACKETVER >= 20120710 packet(0x0886,2,clif->pReqCloseBuyingStore,0); #endif +//2012-07-16aRagExe (special thanks to Yommy!) +#if PACKETVER >= 20120716 + packet(0x0364,8,clif->pMoveFromKafra,2,4); +#endif #if PACKETVER >= 20130313 packet(0x035f,6,clif->pReqClickBuyingStore,2); @@ -2062,10 +2074,6 @@ packet(0x020d,-1); packet(0x094E,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); //packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); //packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); - packet(0x0844,2,clif->pCashShopOpen,2);/* tell server cashshop window is being open */ - packet(0x084a,2,clif->pCashShopClose,2);/* tell server cashshop window is being closed */ - packet(0x08c9,4,clif->pCashShopSchedule,2); - packet(0x0848,-1,clif->pCashShopBuy,2); packet(0x0447,2); #endif |