Santoz2015 Posted July 17, 2015 Report Share Posted July 17, 2015 Porque me da error? "TesteDeAptidao.quest:46:must start with `quest` Abort (Core dumped) alguien la corrige y le pone tiempo de 12 horas? por favor quest TesteDeAptidao begin state start begin when 20088.chat."Teste de Aptidao" begin say_title("Chuk-Sal:") say("") say("O que te tras ate mim?") say("Hum... Deixa-me advinhar necessitas de") say("uma Passagem...") say("Posso te dar uma passagem,") say("mas para isso tens que me mostrar que") say("estas suficientemente apto para entrar") say("no 2°Piso da Cave das Aranhas.") say("") say_reward("Necessito que mates 1 Rainha Aranha") say_reward("Boa Sorte!") say("") set_state(stadoms1) end end state stadoms1 begin when letter begin send_letter("Teste de Aptidao") end when button or info begin say("O Chuk-Sal pediu que matases 1 Rainha") say("Aranha, como prova da tua aptidao.") say("Em troca ele vai te dar uma passagem.") say("Ate agora mataste:"..pc.getqf("contador").." Aranhas") end when 2091.kill begin if pc.getqf("contador") == 1 then say("Terminaste o Teste de Aptidao,") say("mataste todas as 100 Aranhas.") say("") say_reward("Como recompensa aqui tens a tua") say_reward("Passagem.") pc.give_item2(71095,1) clear_letter() set_state(__COMPLETE__) end pc.setqf("contador",pc.getqf("contador")+1) end end end state __complete begin end end Link to comment Share on other sites More sharing options...
Santoz2015 Posted July 17, 2015 Author Report Share Posted July 17, 2015 Nobunaga no me puedes ayudar en esta? XD no soy mucho bueno a hacer quest xD me da erro y no ce como poner el tiempo de 24 en 24 horas Link to comment Share on other sites More sharing options...
Kowloon2 Posted July 17, 2015 Report Share Posted July 17, 2015 Nobunaga no me puedes ayudar en esta? XD no soy mucho bueno a hacer quest xD me da erro y no ce como poner el tiempo de 24 en 24 horas Revisa tu otro tema, ahí te puse una quest que hice rápidamente, pero bueno, te la dejo aquí también. quest blablabla begin state start begin when IDNPC.chat."Mision" begin say("") say("") say("") local sel = select("Si", "No") if sel == 1 then say("") say("") say("") set_state("matar_jefe") end end end state matar_jefe begin when 2091.kill begin say("") say("") say("") say("") say_reward("Mision repetible cada 24h") pc.give_item2(IDITEM,1) timer("reinicio",86400) return end when reinicio.timer begin set_state("start") end end end Santoz2015 1 Link to comment Share on other sites More sharing options...
Santoz2015 Posted July 17, 2015 Author Report Share Posted July 17, 2015 gracias hermano Link to comment Share on other sites More sharing options...
Recommended Posts