diff options
author | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-03-07 05:08:12 +0000 |
---|---|---|
committer | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-03-07 05:08:12 +0000 |
commit | 88d795a036a4f954df1987fe3b241964df182a65 (patch) | |
tree | d7b4e8ea7524a8936d15fb95f83c0fc8f7f1ea1d /src/map/clif.c | |
parent | 4641fe9f49efdb3cf5dc7ef96f3d7838c6dab473 (diff) | |
download | hercules-88d795a036a4f954df1987fe3b241964df182a65.tar.gz hercules-88d795a036a4f954df1987fe3b241964df182a65.tar.bz2 hercules-88d795a036a4f954df1987fe3b241964df182a65.tar.xz hercules-88d795a036a4f954df1987fe3b241964df182a65.zip |
- More updates to Auctions. Now you "really" can register auctions, limit to 5 per char (according to official info).
- Also added the Buy and Sell lists.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12314 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 32 |
1 files changed, 22 insertions, 10 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index a3ee81e0b..032fb275a 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -11826,7 +11826,7 @@ void clif_parse_Auction_setitem(int fd, struct map_session_data *sd) // 8 = You do not have enough Zeny // 9 = You cannot place more than 5 bids at a time -static void clif_Auction_message(int fd, unsigned char flag) +void clif_Auction_message(int fd, unsigned char flag) { WFIFOHEAD(fd,3); WFIFOW(fd,0) = 0x250; @@ -11876,6 +11876,7 @@ void clif_parse_Auction_register(int fd, struct map_session_data *sd) auction.price = auction.buynow - 1; } + auction.auction_id = 0; auction.seller_id = sd->status.char_id; safestrncpy(auction.seller_name, sd->status.name, NAME_LENGTH); auction.buyer_id = 0; @@ -11893,25 +11894,26 @@ void clif_parse_Auction_register(int fd, struct map_session_data *sd) return; } - sd->status.zeny -= (auction.hours * battle_config.auction_feeperhour); - clif_updatestatus(sd, SP_ZENY); - safestrncpy(auction.item_name, item->jname, ITEM_NAME_LENGTH); auction.type = item->type; memcpy(&auction.item, &sd->status.inventory[sd->auction.index], sizeof(struct item)); auction.item.amount = 1; - auction.item.identify = 1; - - pc_delitem(sd, sd->auction.index, sd->auction.amount, 0); - sd->auction.amount = 0; auction.timestamp = (int)mail_calctimes() + (auction.hours * 3600); - intif_Auction_register(sd->status.account_id, &auction); + if( !intif_Auction_register(&auction) ) + clif_Auction_message(fd, 4); // No Char Server? lets say something to the client + else + { + pc_delitem(sd, sd->auction.index, sd->auction.amount, 0); + sd->auction.amount = 0; + pc_payzeny(sd, auction.hours * battle_config.auction_feeperhour); + } } /*------------------------------------------ * Auction Search * S 0251 <search type>.w <search price>.l <search text>.24B <01>.w + * Search Type: 0 Armor 1 Weapon 2 Card 3 Misc 4 By Text 5 By Price 6 Sell 7 Buy *------------------------------------------*/ void clif_parse_Auction_search(int fd, struct map_session_data* sd) { @@ -11920,7 +11922,16 @@ void clif_parse_Auction_search(int fd, struct map_session_data* sd) int price = RFIFOL(fd,4); safestrncpy(search_text, (char*)RFIFOP(fd,8), NAME_LENGTH); - intif_Auction_requestlist(sd->status.account_id, type, price, search_text); + intif_Auction_requestlist(sd->status.char_id, type, price, search_text); +} + +void clif_parse_Auction_buysell(int fd, struct map_session_data* sd) +{ + short type = RFIFOW(fd,2) + 6; + char search_text[NAME_LENGTH]; + + memset(&search_text, '\0', NAME_LENGTH); + intif_Auction_requestlist(sd->status.char_id, type, 0, search_text); } #endif @@ -12455,6 +12466,7 @@ static int packetdb_readdb(void) {clif_parse_Mail_send,"mailsend"}, // AUCTION SYSTEM {clif_parse_Auction_search,"auctionsearch"}, + {clif_parse_Auction_buysell,"auctionbuysell"}, {clif_parse_Auction_setitem,"auctionsetitem"}, {clif_parse_Auction_registerwindow,"auctionregisterwindow"}, {clif_parse_Auction_register,"auctionregister"}, |