Well... it’s been a while .
I hope it helps someone. I also added a line to ensure cards and in favorite tab aren’t sold.
prontera,148,178,5 script SellAll 543 ,{
.@overcharge_lv = getskilllv( "MC_OVERCHARGE" );
if( .@overcharge_lv )
.@overcharge_rate = 105 + ( 2 * .@overcharge_lv ) - ( ( .@overcharge_lv >= 10 )? 1:0 );
getinventorylist;
for (.@i=0; .@i < @inventorylist_count ; .@i++) {
if( @inventorylist_equip[.@i] ) continue; // Is not Equiped
if( getiteminfo(@inventorylist_id[.@i],2) == 6 ) continue; // Is not a card
if( @inventorylist_favorite[.@i] ) continue; // Is not favorite
.@item_sell_price = getiteminfo( @inventorylist_id[.@i],1 )*@inventorylist_amount[.@i];
mes " > "+getitemname( @inventorylist_id[.@i] )+" ["+@inventorylist_amount[.@i]+"] : "+callfunc("F_InsertComma",.@item_sell_price)+"z";
.@cost += .@item_sell_price;
}
if( .@cost ){
if( .@overcharge_lv )
.@overcharge_cost = ( (.@cost * .@overcharge_rate) /100 ) - .@cost;
mes "+" + callfunc("F_InsertComma",.@overcharge_cost) + "z Overcharge Lvl. " + .@overcharge_lv + " [+"+(.@overcharge_rate-100)+"%] ";
mes "Sell all items for "+ callfunc("F_InsertComma",(.@cost+.@overcharge_cost)) +" zeny?";
if( select( "Yes","Cancel" ) == 1 ){
for (.@i=0; .@i < @inventorylist_count ; .@i++) {
if( @inventorylist_equip[.@i] ) continue; // Is not Equiped
if( getiteminfo(@inventorylist_id[.@i],2) == 6 )continue ;//Is not a card
if( @inventorylist_favorite[.@i] ) continue; // Is not favorite
delitem @inventorylist_id[.@i],@inventorylist_amount[.@i];
}
Zeny += .@cost + .@overcharge_cost;
}
}else{
mes "You dont have any items to sell.";
}
close;
}