public void Ex_CustomMultisell() {
Player player = this.getSelf();
if (player != null && player.hasBonus()) {
MultiSellHolder.getInstance().SeparateAndSend(MULTISELL, player, 0.0);
}
}
how i can add this ?The fastest way is to create a custom bypass, where you check the player for premium
Java:public void Ex_CustomMultisell() { Player player = this.getSelf(); if (player != null && player.hasBonus()) { MultiSellHolder.getInstance().SeparateAndSend(MULTISELL, player, 0.0); } }
Use exthow i can add this ?