Bug Report v1.6
Map Serv Crash
if Use skill Vending Map Server Crash
and Setting config
case MC_VENDING:
if(sd)
{
if ( !pc_can_give_items(sd) ) //Prevent vending of GMs with unnecessary Level to trade/drop. [skotlex]
clif_skill_fail(sd,MC_VENDING,USESKILL_FAIL_LEVEL,0);
else {
if(battle_config.extended_vending){
struct item_data *item;
char output[1024];
int i,c;
sd->vend_lvl = skilllv;
for( c = 0, i = 0; i < MAX_INVENTORY; i ++ ) {
if((item = itemdb_exists(item_vend[i].itemid)) != NULL)
c++;
}
if(c > 1)
clif_vend(sd,sd->vend_lvl);
else {
item = itemdb_exists(item_vend[0].itemid);
sd->vend_loot = item->nameid; ------------------> core dump report error this line
sprintf(output,msg_txt(706),itemdb_jname(sd->vend_loot));
clif_displaymessage(sd->fd,output);
clif_openvendingreq(sd,2+sd->vend_lvl);
}
} else
clif_openvendingreq(sd,2+skilllv);
}
}
break;
And Bug can't Create Shop
// Specific items for Vending System
// Format: ItemID
// For Zeny use 30000, for Cashpoints use 30001
// Max items is equal MAX_INVENTORY ( 100 by default )
// Zeny
//30000
// CashPoints
30001 <------ Chose one item_id can't create shop vending
// TCG Card
//7227
// Mithril Coin
//674
// Silver Coin
//675
// Bronze Coin
//673
Pls Confirm again