Cedrus Posted January 18, 2021 Share Posted January 18, 2021 I need a function to define current bet equal to base bet if current bet is lower than base bet. Can anyone help me with a suggestion? Link to comment Share on other sites More sharing options...
kenn3676 Posted January 18, 2021 Share Posted January 18, 2021 If you are looking for what I think, then this would work. var currentBet = config.baseBet.value; If (currentBet < config.baseBet.value) { currentBet = config.baseBet.value; } Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.