JamesBond007 Posted November 5, 2012 Report Share Posted November 5, 2012 Ola Metin2Zone aki comparto la quest para alguien que la andaba buscando quest loteria begin state start begin when 20041.chat."Loteria" begin if 30 > get_global_time() - pc . getqf ( "lottery_last_play" ) then say ("Debe esperar 30 segundos antes de repetir el juego") return end say_title ( "Apuestas" ) say ("Debe esperar 30 segundos antes de repetir el juego.") say_reward ("Precio: 50.000 Yang") say ("Continuación?") local scelta = select ( "Si","No" ) if scelta == 1 then if pc . gold >= 50000 then pc . changegold ( - 50000 ) local k repeat say_title ( "Apuestas" ) say ( "Introduzca un número de 1 a 20" ) say ("Si el número sorteado se corresponde con la") say ("número elegido por usted puede ganar la") say ("premio mayor 150.000.000 Yang!!") k = tonumber(input()) if k == nil then say_title("Apuestas") say("Usted debe introducir el número de!") local s = select("Continuar", "Anular") if s == 2 then return end else if k <= 0 then say_title("Apuestas") say("Debe introducir un número positivo!") local s = select("Continuar", "Anular") if s == 2 then return end else if k > 20 then say_title("Apuestas") say("Debe introducir un número entre 1 y 20") local s = select("Continuar", "Anular") if s == 2 then return end else break end end end until false say("Número elegido: " .. k ) wait () say ("Y ahora procedemos al sorteo") local random_number = tostring(number(1,20)) say("Número elaborado: " .. random_number) if random_number == tostring(k) then say ("Felicidades, usted ganó el premio mayor de 150kk!") say_reward ("Has Recibido 150.000.000 Yang") pc.changegold ( 150000000 ) else say ("Siento que hayas perdido. No siempre se gana!") end end pc.setqf("lottery_last_play" , get_global_time()) return end end end end Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.