Jump to content

2Nations

Miembro
  • Contador contenido

    1
  • Ingreso

  • Última visita

2Nations's Achievements

  1. --------------------------------------------------------------------------Quest Exp comerciable By Juan14bailen------------------------------------------------------------------------quest comercioexp begin state start begin when login or levelup with pc.level >= 100 begin set_state("exp") end state exp begin when letter begin send_letter("Exp Por Dinero") end when button or info begin say("Aqui estan los precios." ) say("100kk Exp = 100kk Yang" ) say("150kk Exp = 150kk Yang" ) say("200kk Exp = 200kk Yang" ) say("500kk Exp = 500kk Yang" ) local exp = select ( "100kk Exp" , "150kk Exp" , "200kk Exp" , "500kk Exp" , "No necesito Exp!" ) if exp == 1 then if pc.get_gold < 100000000 then say("No tienes suficiente yang.") return end say("Has comprado 100kk de Exp") say("Muy bien") say_reward("Buena Suerte!") pc.changegold(-100000000) pc.give_exp2( 100000000 ) return elseif exp == 2 then if pc.get_gold < 150000000 then say("No tienes suficiente yang.") return end say("Has cojido 150kk exp") say("Has cojido 150kk exp por 150kk de yang!") say_reward("Buena Suerte!") pc.changegold(-150000000) pc.give_exp2(150000000) return elseif exp == 3 then if pc.get_gold < 200000000 then say("No tienes suficiente yang.") return end say("Has cojido 200kk exp") say("Recibiras 200kk exp por 200kk yang!") say_reward("Buena Suerte!") pc.changegold(-200000000) pc.give_exp2(200000000) return elseif exp == 4 then if pc.get_gold < 500000000 then say("No tienes suficiente yang.") return end say("Has cojido 500kk") say("Recibiras 500kk exp por 500kk yang") say_reward("Buena Suerte!") pc.changegold(-500000000) pc.give_exp2(500000000) return elseif exp == 5 then return end end endend
×
×
  • Crear nuevo...