Does anyone know how to make unidentified items sellable through vending?
I tried searching and only found in vending.cpp
but modifying and deleting doesn't make it work
Quote
// filter out invalid items
i = 0;
int64 total = 0;
for( j = 0; j < count; j++ ) {
short index = *(uint16*)(data + 8*j + 0);
short amount = *(uint16*)(data + 8*j + 2);
unsigned int value = *(uint32*)(data + 8*j + 4);
index -= 2; // offset adjustment (client says that the first cart position is 2)
if( index < 0 || index >= MAX_CART // invalid position
|| pc_cartitem_amount(&sd, index, amount) < 0 // invalid item or insufficient quantity
//NOTE: official server does not do any of the following checks!
|| !sd.cart.u.items_cart[index].identify // unidentified item
|| sd.cart.u.items_cart[index].attribute == 1 // broken item
|| sd.cart.u.items_cart[index].expire_time // It should not be in the cart but just in case
|| (sd.cart.u.items_cart[index].bound && !pc_can_give_bounded_items(&sd)) // can't trade account bound items and has no permission
|| !itemdb_cantrade(&sd.cart.u.items_cart[index], pc_get_group_level(&sd), pc_get_group_level(&sd)) ) // untradeable item
continue;
sd.vending[i].index = index;
sd.vending[i].amount = amount;
sd.vending[i].value = min(value, (unsigned int)battle_config.vending_max_value);
total += static_cast<int64>(sd.vending[i].value) * amount;
i++; // item successfully added
}
Question
Akbare-2nd
Does anyone know how to make unidentified items sellable through vending?
I tried searching and only found in vending.cpp
but modifying and deleting doesn't make it work
thank you for helping
Link to comment
Share on other sites
0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.