static void mapif_parse_Auction_register(int fd) { struct auction_data auction; if( RFIFOW(fd,2) != sizeof(struct auction_data) + 4 ) return; memcpy(&auction, RFIFOP(fd,4), sizeof(struct auction_data)); if( auction_count(auction.seller_id, false) < 5 ) auction.auction_id = auction_create(&auction); mapif_Auction_register(fd, &auction); }
static void mapif_parse_Auction_bid(int fd) { int char_id = RFIFOL(fd,4), bid = RFIFOL(fd,12); unsigned int auction_id = RFIFOL(fd,8); struct auction_data *auction; if( (auction = (struct auction_data *)idb_get(auction_db_, auction_id)) == NULL || auction->price >= bid || auction->seller_id == char_id ) { mapif_Auction_bid(fd, char_id, bid, 0); // You have failed to bid in the auction return; } if( auction_count(char_id, true) > 4 && bid < auction->buynow && auction->buyer_id != char_id ) { mapif_Auction_bid(fd, char_id, bid, 9); // You cannot place more than 5 bids at a time return; } if( auction->buyer_id > 0 ) { // Send Money back to the previous Buyer if( auction->buyer_id != char_id ) { mail_sendmail(0, "Auction Manager", auction->buyer_id, auction->buyer_name, "Auction", "Someone has placed a higher bid.", auction->price, NULL); mapif_Auction_message(auction->buyer_id, 7); // You have failed to win the auction } else mail_sendmail(0, "Auction Manager", auction->buyer_id, auction->buyer_name, "Auction", "You have placed a higher bid.", auction->price, NULL); } auction->buyer_id = char_id; safestrncpy(auction->buyer_name, (char*)RFIFOP(fd,16), NAME_LENGTH); auction->price = bid; if( bid >= auction->buynow ) { // Automatic won the auction mapif_Auction_bid(fd, char_id, bid - auction->buynow, 1); // You have successfully bid in the auction mail_sendmail(0, "Auction Manager", auction->buyer_id, auction->buyer_name, "Auction", "You have won the auction.", 0, &auction->item); mapif_Auction_message(char_id, 6); // You have won the auction mail_sendmail(0, "Auction Manager", auction->seller_id, auction->seller_name, "Auction", "Payment for your auction!.", auction->buynow, NULL); auction_delete(auction); return; } auction_save(auction); mapif_Auction_bid(fd, char_id, 0, 1); // You have successfully bid in the auction }
void mapif_parse_Auction_bid(int fd) { uint32 char_id = RFIFOL(fd,4), auction_id = RFIFOL(fd,8); int bid = RFIFOL(fd,12); struct auction_data *auction; if( (auction = (struct auction_data *)idb_get(auction_db_, auction_id)) == NULL || auction->price >= bid || auction->seller_id == char_id ) { mapif_Auction_bid(fd, char_id, bid, 0); // You have failed to bid in the auction return; } if( auction_count(char_id, true) > 4 && bid < auction->buynow && auction->buyer_id != char_id ) { mapif_Auction_bid(fd, char_id, bid, 9); // You cannot place more than 5 bids at a time return; } if( auction->buyer_id > 0 ) { // Send Money back to the previous Buyer if( auction->buyer_id != char_id ) { mail_sendmail(0, msg_txt(200), auction->buyer_id, auction->buyer_name, msg_txt(201), msg_txt(208), auction->price, NULL, 0); mapif_Auction_message(auction->buyer_id, 7); // You have failed to win the auction } else mail_sendmail(0, msg_txt(200), auction->buyer_id, auction->buyer_name, msg_txt(201), msg_txt(209), auction->price, NULL, 0); } auction->buyer_id = char_id; safestrncpy(auction->buyer_name, RFIFOCP(fd,16), NAME_LENGTH); auction->price = bid; if( bid >= auction->buynow ) { // Automatic won the auction mapif_Auction_bid(fd, char_id, bid - auction->buynow, 1); // You have successfully bid in the auction mail_sendmail(0, msg_txt(200), auction->buyer_id, auction->buyer_name, msg_txt(201), msg_txt(210), 0, &auction->item, 1); mapif_Auction_message(char_id, 6); // You have won the auction mail_sendmail(0, msg_txt(200), auction->seller_id, auction->seller_name, msg_txt(201), msg_txt(211), auction->buynow, NULL, 0); auction_delete(auction); return; } auction_save(auction); mapif_Auction_bid(fd, char_id, 0, 1); // You have successfully bid in the auction }