diff options
author | Inkfish <Inkfish@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-08-02 04:10:23 +0000 |
---|---|---|
committer | Inkfish <Inkfish@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-08-02 04:10:23 +0000 |
commit | 7af299d591f357471bc8447707a10de9ea5ae0e3 (patch) | |
tree | 3a42528f874f1da21ee8aaf552da82181c01bcf7 /src/map/clif.c | |
parent | 73b9ce7e5d16ef9c2aa639c8442dd8f15c615fca (diff) | |
download | hercules-7af299d591f357471bc8447707a10de9ea5ae0e3.tar.gz hercules-7af299d591f357471bc8447707a10de9ea5ae0e3.tar.bz2 hercules-7af299d591f357471bc8447707a10de9ea5ae0e3.tar.xz hercules-7af299d591f357471bc8447707a10de9ea5ae0e3.zip |
* Questlog code cleanup.
* Fixed range check of autospell and autospell2 using wrong target when it should be used on yourself.
* Implemented official behavior of party_show_share_picker.
* Restricted zones in 'item_noequip.txt' can now stack.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13987 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 783a3d399..f3e2757d5 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -13139,6 +13139,27 @@ void clif_instance_leave(int fd) WFIFOSET(fd,packet_len(0x02CE)); } +void clif_party_show_picker(struct map_session_data * sd, struct item * item_data) +{ + unsigned char buf[22]; + + WBUFW(buf,0)=0x2b8; + WBUFL(buf,2) = sd->status.account_id; + WBUFW(buf,6) = item_data->nameid; + WBUFB(buf,8) = item_data->identify; + WBUFB(buf,9) = item_data->attribute; + WBUFB(buf,10) = item_data->refine; + WBUFW(buf,11) = item_data->card[0]; + WBUFW(buf,13) = item_data->card[1]; + WBUFW(buf,15) = item_data->card[2]; + WBUFW(buf,17) = item_data->card[3]; + //Unknown + //WBUFB(buf,19) = 0; + //WBUFB(buf,20) = 0; + //WBUFB(buf,21) = 0; + clif_send(buf, packet_len(0x2b8), &sd->bl, PARTY_SAMEMAP_WOS); +} + /*========================================== * パケットデバッグ *------------------------------------------*/ @@ -13409,7 +13430,7 @@ static int packetdb_readdb(void) 0, 0, 0, 6, 0, 0, 0, 0, 0, 8, 18, 0, 0, 0, 0, 0, 0, 4, 0, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0,117, 6, 0, 7, 7, 0,191, 0, 0, 0, 0, 0, 0, + 0, 0, 0,117, 6, 0, 7, 7, 22,191, 0, 0, 0, 0, 0, 0, //#0x02C0 0, 0, 0, 0, 0, 30, 0, 0, 0, 3, 0, 65, 4, 71, 10, 0, 0, 0, 0, 0, 0, 0, 6, -1, 10, 10, 3, 0, -1, 32, 6, 0, |