[ Help | Earliest Comments | Latest Comments ][ List All Subjects of Discussion | Create New Subject of Discussion ][ List Earliest Comments Only For Pages | Games | Rated Pages | Rated Games | Subjects of Discussion ]Single Comment The birth of two variants: Apothecary chess 1 & Apothecary chess 2[Subject Thread] [Add Response] 🕸Fergus Duniho wrote on Wed, Oct 17, 2018 04:04 PM UTC:Contrary to the code you posted, this is in your code: set coin1 (rand 0 1); set coin2 (rand 0 1); This code sets coin1 and coin2 to Array ( [0] => rand [1] => 0 [2] => 1 ) , not to a random number. You need to remove the parentheses for it to work right.
Contrary to the code you posted, this is in your code:
This code sets coin1 and coin2 to
, not to a random number. You need to remove the parentheses for it to work right.