Any way to move the hook and be able to return the mutiplyer before the payout?
Also send the terminal?
int betAmount = item.amount;
int total = config.BettingItem.items[item.info.shortname];
if (total != 0)
{
NextTick(() => {
item.amount = betAmount * total + betAmount;
});
}
}