_TITLE "Boink" ' for QB64 B+ started a version of Pig when/where the number of di is declared and rolled
' Boink rules:
' Start round by flipping coin who goes first
' Each player chooses number of dice to roll to start their round
' Dice rolled
' If 1 di is 1 then no points that turn,
' If 2 di are 1 then no points and the score is reset to 0,
' If 3 di are 1 then gameover that player lost,
' If 4 di are 1 then player wins game automatically,
' Otherwise the player gets the total of di added to their score.
Sooie = 1
FarmerRound:
Who$ = "Farmer"
cp "Farmer, Enter how many dice to roll."
HALRound:
Who$ = "HAL"
hogHerd
= INT(wholeHog
* (100 - HAL
) / 100 + .5)IF hogHerd
= 0 THEN hogHerd
= 1
RollEmRollEM:
pigsEye = 0: bacon = 0
s$ = Who$ + "'s, dice roll is:"
FOR pigglet
= 1 TO hogHerd
IF Babe
= 1 THEN pigsEye
= pigsEye
+ 1 bacon = bacon + Babe
s$
= s$
+ " " + STR$(Babe
)cp s$
IF Who$
= "Farmer" THEN Farmer
= Farmer
+ bacon
ELSE HAL
= HAL
+ bacon
cp Who$
+ "," + STR$(bacon
) + " has been added to your score." IF Farmer
>= 100 OR HAL
>= 100 THEN Sooie
= 0: cp Who$
+ " wins!" cp Who$ + " rolled a 1, so your score remains the same."
cp Who$ + " rolled two 1's, so your score is reset to 0."
cp Who$ + ", sorry three 1's means you lost the game."
Sooie = 0
cp Who$ + " more than three 1's makes you the winner!"
Sooie = 0
cp "Press any..."
cp
"Boink Score Board: Farmer =" + STR$(Farmer
) + " HAL =" + STR$(HAL
)