Ohh, sorry. Though the logic is just the same.
case 2:
if ( mobcount( "this", strnpcinfo(3)+"::OnMobDead" ) ) {
mes "[MVP Summoner]";
mes "I cannot summon another MVP when there are monsters around.";
close;
} else if ( .mvpcost ) {
mes "[MVP Summoner]";
mes "The cost to summon an MVP is "+ callfunc( "F_InsertComma", .mvpcost ) +" Mithril Coin.";
next;
set .@menu, select(.mvpid_menu$) -1;
mes "[MVP Summoner]";
if (countitem(675) < .mvpcost ) {
mes "You don't have enough Mithrils to summon an MVP.";
close;
}
} else {
set .@menu, select(.mvpid_menu$) -1;
mes "[MVP Summoner]";
}
mes "Please get ready.";
close2;
if (countitem(675) > .mvpcost ) end;
delitem 675,1*.mvpcost;
monster "this", 0, 0, "--ja--", .mvpid[.@menu], 1, strnpcinfo(3)+"::OnMobDead";
end;
case 3:
if ( mobcount( "this", strnpcinfo(3)+"::OnMobDead" ) ) {
mes "[MVP Summoner]";
mes "I cannot summon another mini-boss when there are monsters around.";
close;
} else if ( .bosscost ) {
mes "[MVP Summoner]";
mes "The cost to summon a mini-boss is "+ callfunc( "F_InsertComma", .bosscost ) +" Mithril Coins.";
next;
set .@menu, select(.bossid_menu$) -1;
mes "[MVP Summoner]";
if (countitem(675) < .bosscost ) {
mes "You doesn't have enough Mithrils to summon a mini-boss.";
close;
}
} else {
set .@menu, select(.bossid_menu$) -1;
mes "[MVP Summoner]";
}
mes "Please get ready.";
close2;
if (countitem(675) > .bosscost ) end;
delitem 675,1*.bosscost;
monster "this", 0, 0, "--ja--", .bossid[.@menu], 1, strnpcinfo(3)+"::OnMobDead";
end;
_____
set .mvpcost, 10; // Zeny cost to summon an MVP (0 = free)
set .bosscost, 10; // Zeny cost to summon a boss monster (0 = free)
Haven't tried it though. Optimized it if there are any errors since I haven't tested it yet. But it will definitely give you a huge idea on how it should work.