Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
96
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.  
  3. $weapons = ['fists', 'whip', 'gun'];
  4.  
  5. $indyWeapon = "";
  6.  
  7. $opponentWeapon = $weapons[rand(0,2)];
  8.  
  9. switch ($opponentWeapon) {
  10. case 'fists';
  11. $indyWeapon = "gun";
  12. break;
  13. case 'whip';
  14. $indyWeapon = "fists";
  15. break;
  16. case 'gun';
  17. $indyWeapon = "whip";
  18. break;
  19. }
  20.  
  21. echo $indyWeapon;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement