Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2.  
  3. $weapons = ['fists', 'whip', 'gun'];
  4. $opponentWeapon = $weapons[rand(0,2)]; // Cela permet de choisir une arme de manière aléatoire.
  5.  
  6.  
  7. if ($opponentWeapon == 'fists') {
  8. $indyWeapon = 'gun';
  9.  
  10. }elseif ($opponentWeapon == 'whip'){
  11. $indyWeapon = 'fists';
  12.  
  13. }elseif ($opponentWeapon == 'gun'){
  14. $indyWeapon = 'whip';
  15. }
  16.  
  17. echo "$indyWeapon";
  18.  
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement