Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2.  
  3. $weapons = ['fists', 'whip', 'gun'];
  4. $opponentWeapon = $weapons[rand(0,2)];
  5.  
  6. if($opponentWeapon == $weapons[0]){
  7. $indyWeapon = $weapons[2];
  8. } elseif($opponentWeapon == $weapons[1]){
  9. $indyWeapon = $weapons[0];
  10. } else {
  11. $indyWeapon = $weapons[1];
  12. }
  13. echo 'Opponent uses ' . $opponentWeapon . ', ' . 'Indiana wins with ' . $indyWeapon ;
  14.  
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement