Move hook OnBigWheelWin?Solved
Any way to move the hook and be able to return the mutiplyer before the payout?

Also send the terminal?
Sure, can do that.
Thanks Alot... Thank you for all your work if i have never thanked you thank you.
Was just checking to see if this would be in the next update.
It will be.
Think you forgot to add the mutiplyer in the hook call.
Oops, will add for next.
thanks i need to be able to set the mutiplyer on a return befor the payout.

Merged post

What is there for the hook now will work for what i need so no need to change it unless ya want to.. thansks again.
It hasn't been pushed yet, but will be for today, unless you don't want to.
You can add it would make my code smaller unstead of me setting item amounts again.

Merged post

Oh i was going to also ask on the hook because its in a foreach  should it be a continue not a return on the hook? as would not a return cancel all other wining terminals after.

Merged post

all is good except slot1.amount += slot1.amount * multiplier; needs to be below the hook.
I don't think so, as you can override the slot.amount by setting it again if you need to. Setting it below the hook would produce inaccurate results as you'd be multiplying twice.
but then i am unable to get the correct start item amount to miniplate to the mutiplyer i want?  

				int betAmount = item.amount;
				int total = config.BettingItem.items[item.info.shortname];
				if (total != 0)
				{
					NextTick(() => {
						item.amount = betAmount * total + betAmount;
					});					
					
				}
			}​
Okay, bumped up to the previous slot.
thank you.
Locked automatically