Advertisement
Guest User

Untitled

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