Created
September 25, 2019 10:08
-
-
Save krez69/f8497166346452a0efd28656285efd96 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
set_time_limit(5); | |
$weapons = ['fists', 'whip', 'gun']; | |
$opponentWeapon = $weapons[rand(0,2)]; // Cela permet de choisir une arme de manière aléatoire. | |
// TODO | |
$indyWeapon = ''; | |
echo 'opponent weapon' . ' '. $opponentWeapon; | |
echo '<br>'; | |
if ($opponentWeapon === 'fists'){ | |
$indyWeapon = 'gun'; | |
} | |
elseif ($opponentWeapon === 'whip'){ | |
$indyWeapon = 'fist'; | |
} | |
elseif ($opponentWeapon === 'gun'){ | |
$indyWeapon = 'whip'; | |
} | |
echo 'indy weapon' .' '. $indyWeapon; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment