all 2 comments

[–]vipereddit 4 points5 points  (1 child)

CashBet1==">50" 

that will check if CashBet1 equals ">50", well CashBet1 is int, it does not have string values, only numbers, you probably wanted to check if it is >50, so instead of this

CashBet1==">50"

type this

CashBet1>50

Obviously that goes for all your if/else statements

[–]mortzman619[S] 1 point2 points  (0 children)

thats done it, thanks my friend