Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. $weapons = ['poing' , 'fouet' , 'pistolet'];
  5. $opponentWeapon = $weapons[rand(0,2)]; // Cela permet de choisir une arme de manière aléatoire.
  6.  
  7. echo " Attention !!! " . "" . $opponentWeapon . " ";
  8.  
  9. if ($opponentWeapon == 'poing') {
  10.  
  11. echo $Indyweapon . " " . 'pistolet' . "" . " " . 'C\'est mort !!!';
  12.  
  13.  
  14. }
  15.  
  16. else if ($opponentWeapon == 'fouet') {
  17.  
  18. echo $Indyweapon . " " . 'poing' . " " . 'Pas bon pour toi !!!';
  19. }
  20. else {
  21.  
  22. echo $Indyweapon . " " . 'fouet' . " " . 'Le fouet !!!';
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement