[ALERTE] J'AI 13 ANS ET je suis PLUS MATURE que vous
- 1
pv = 20
print(string.format("Une créature sauvage (%d PV) apparaît !", pv))
win = false
action = true
for tour = 3, 1, -1 do
print(string.format("Plus que %d tour(s) pour tuer la créature !", tour))
print("Que faites-vous ? (SLASH ou FIREBALL)")
local action = io.read()
if action == "SLASH" then
pv = pv * 0.5
elseif action == "FIREBALL" then
pv = pv - 5
else action = false
end
while action == false do
print("Action invalide.")
if action == false then
tour = nil
break
end
end
if pv <= 0 then
print("La créature est morte !")
win = true
break
end
print(string.format("La créature n'as plus que %d PV !", pv))
end
if win then
print("Tu as gagné !")
else
print("Tu as perdu !")
end
Pourquoi ca marche pas?
Le 09 juin 2021 à 22:23:01 :
pv = 20
print(string.format("Une créature sauvage (%d PV) apparaît !", pv))
win = false
action = truefor tour = 3, 1, -1 do
print(string.format("Plus que %d tour(s) pour tuer la créature !", tour))
print("Que faites-vous ? (SLASH ou FIREBALL)")
local action = io.read()if action == "SLASH" then
pv = pv * 0.5
elseif action == "FIREBALL" then
pv = pv - 5
else action = false
endwhile action == false do
print("Action invalide.")
if action == false then
tour = nil
break
end
endif pv <= 0 then
print("La créature est morte !")
win = true
break
endprint(string.format("La créature n'as plus que %d PV !", pv))
end
if win then
print("Tu as gagné !")
else
print("Tu as perdu !")
endPourquoi ca marche pas?
L'op qui est incapable de résoudre
- 1
Données du topic
- Auteur
- OkBoomerent6
- Date de création
- 9 juin 2021 à 22:20:54
- Nb. messages archivés
- 15
- Nb. messages JVC
- 15