Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2. $weapons = ['fists', 'whip', 'gun'];
  3. $opponentWeapon = $weapons[rand(0,2)];
  4.  
  5. switch ($opponentWeapon) {
  6. case 'fists':
  7. $indyWeapon = 'gun';
  8. break;
  9. case 'whip':
  10. $indyWeapon = 'fists';
  11. break;
  12. case 'gun':
  13. $indyWeapon = 'whip';
  14. break;
  15. }
  16. echo $opponentWeapon;
  17. echo $indyWeapon;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement