pronto resolvi ficou assim:
e o melhor é que não trava.
- Código:
def ciclo_barra
Thread.new {
$game_variables[11] = 0
$game_switches[10] = true
while($game_variables[11] < 100) #Loop fica rodando, enquanto a variável for menor que 100.
sleep(0.1)
$game_variables[11] += 1 #Adiciona 1 à variável.
end
pedra_retorno
}
end
e o melhor é que não trava.