0
I’m trying to make a system of lootbox in python, but I can’t use an outside variable within the function
from main import player
from random import randint
p1 = player
class item:
def lootbox(a,c):
v = 0
b = 0
if c == 'C':
if LbCn < a:
print("Você não tem esse tanto de lootbox comum")
if LbCn >= a:
while v != a:
num = randint(1,10)
inv.append(LbC[num])
LbCn -= 1
print('Você ganhou...')
p1.tempo(1,3)
print(LbC[num])
LbCn -=1
v += 1
inv = []
#Quantas lootboxes o player tem de cada tipo
LbCn = 5
LbRn =0
LbEn = 0
LbLn = 0
#O que se pode ganhar na lootbox comum
LbC = ['Vara de Madeira Podre', 'Isca feita de pão','Anzol Enferrujado','Vara de Madeira','Chapéu de Couro Feio', 'Isca','10 reais','Sanduiche Mofado','Nada!!!','Balde Meio Amassado']
lootbox(1,'C')