antiblock
Rodnia | Alpha & Omega
  • Chatbox

    You don't have permission to chat.
    Load More
Sign in to follow this  
TheSubKIller aka Skinning

[TRADUÇÃO] Painel Portátil Teleporter

6 posts in this topic

Boas Cyber-Gamers

Crie um arquivo chamado pannello_teleporter.quest e Copie e cole codigo em baixo:

quest teleporter_portatile begin

state start begin

when login or levelup with pc.get_level() > 0 begin

set_state( "Tele-portador" )

end

end

state asd begin

when letter begin

send_letter( "Tele-portador Portátil" )

end

when button or info begin

say_title( "Tele-portador Portátil" )

set_state( "Tele-portador" )

local ganja = select("Tele-portador Reinos", "Tele-portador mapas EXP", "Cancelar")

if ganja == 1 then

say_title ( " Tele-portador Reinos " )

say ( " Bem-Vindo " )

say ( " Queres viajar? " )

say ( "" )

say ( "" )

local ceso = select ( "Sim" , "Não" )

if ceso == 2 then

say ( " Irás te arrepender disso.!! " )

return

end

say ( " Bem, agora você deve escolher o seu " )

say ( " Destino para teleportar " )

villaggiz = select ( " Shinsoo" , " Chunjo" , " Jinno" , "Cancelar" )

if 1 == villaggiz then

rossiz = select ( "Villa 1" , "Villa 2" , "Cancelar" )

if 1 == rossiz then

say ( "Agora você vai ser Tele-portado." )

wait ( )

pc . warp ( 469300 , 964200 )

elseif 2 == rossiz then

say ( "Agora você vai ser Tele-portado." )

wait ( )

pc . warp ( 360800 , 877600 )

end

elseif 2 == villaggiz then

gialliz = select ( "Villa 1" , "Villa 2" , "Cancelar" )

if 1 == gialliz then

say ( "Agora você vai ser Tele-portado." )

wait ( )

pc . warp ( 55700 , 157900 )

elseif 2 == gialliz then

say ( "Agora você vai ser Tele-portado." )

wait ( )

pc . warp ( 138500 , 234900 )

end

elseif 3 == villaggiz then

bluz = select ( "Villa 1" , "Villa 2" , "Cancelar" )

if 1 == bluz then

say ( "Agora você vai ser Tele-portado." )

wait ( )

pc . warp ( 969600 , 278400 )

elseif 2 == bluz then

say ( "Agora você vai ser Tele-portado." )

wait ( )

pc . warp ( 873100 , 242600 )

end

end

elseif ganja == 2 then

say ("Tele-portado para mapas de EXP")

say ("Queres viajar??")

say ("")

say ("")

local asdin = select ("Sim" , "Não")

if asdin == 2 then

say ("Olá, Ok então xau...")

return

end

say ("Escolhe o teu destino.")

say ("Vai lá então..")

local zone = select ( "Atlantida 1" , "Atlantida 2" , "Bosque rosso" , "Bosque fantasma" , "Covo 2 Vermelho" , "Covo 1 Vermelho" , "Valle Azul" , "Valle Vermelho" , "Valle Amarelo" , "Cancelar")

if zone == 1 then

pc . warp ( 10000 , 1207800 )

elseif zone == 2 then

pc . warp ( 241300 , 1275500 )

elseif zone == 3 then

pc . warp ( 1119900 , 70800 )

elseif zone == 4 then

pc . warp ( 288700 , 5700 )

elseif zone == 5 then

pc . warp ( 703800 , 522700 )

elseif zone == 6 then

pc . warp ( 89600 , 525400 )

elseif zone == 7 then

pc . warp ( 334900 , 755800 )

elseif zone == 8 then

pc . warp ( 346400 , 733200 )

elseif zone == 9 then

pc . warp ( 317200 , 732200 )

elseif zone == 10 then

return

end

end

end

end

end

Colocar em:

usr/game(o rain)/channel/share_data/locale/english(o hongkong)/quest

Share this post


Link to post
Share on other sites
antiblock
diamwall

Erros da Quest corrigida e tradução melhorada By Thunder

quest teleporter_portatile beginstate start beginwhen login or levelup with pc.get_level() > 0 beginset_state("asd")endendstate asd beginwhen letter beginsend_letter( "Tele-portador Portátil" )endwhen button or info beginsay_title( "Tele-portador Portátil" )set_state("asd")local ganja = select("Tele-portador Reinos", "Tele-portador mapas EXP", "Cancelar")if ganja == 1 thensay_title ( " Tele-portador Reinos " )say ( " Bem-Vindo " )say ( " Queres viajar? " )say ( "" )say ( "" )local ceso = select ( "Sim" , "Não" )if ceso == 2 thensay ( " Irás te arrepender disso.!! " )returnendsay ( " Bem, agora você deve escolher o seu " )say ( " Destino para teleportar " )villaggiz = select ( " Shinsoo" , " Chunjo" , " Jinno" , "Cancelar" )if 1 == villaggiz thenrossiz = select ( "Villa 1" , "Villa 2" , "Cancelar" )if 1 == rossiz thensay ( "Agora você vai ser Tele-portado." )wait ( )pc . warp ( 469300 , 964200 )elseif 2 == rossiz thensay ( "Agora você vai ser Tele-portado." )wait ( )pc . warp ( 360800 , 877600 )endelseif 2 == villaggiz thengialliz = select ( "Villa 1" , "Villa 2" , "Cancelar" )if 1 == gialliz thensay ( "Agora você vai ser Tele-portado." )wait ( )pc . warp ( 55700 , 157900 )elseif 2 == gialliz thensay ( "Agora você vai ser Tele-portado." )wait ( )pc . warp ( 138500 , 234900 )endelseif 3 == villaggiz thenbluz = select ( "Villa 1" , "Villa 2" , "Cancelar" )if 1 == bluz thensay ( "Agora você vai ser Tele-portado." )wait ( )pc . warp ( 969600 , 278400 )elseif 2 == bluz thensay ( "Agora você vai ser Tele-portado." )wait ( )pc . warp ( 873100 , 242600 )endendelseif ganja == 2 thensay ("Tele-portado para mapas de EXP")say ("Queres viajar??")say ("")say ("")local asdin = select ("Sim" , "Não")if asdin == 2 thensay ("Olá, Ok então xau...")returnendsay ("Escolhe o teu destino.")say ("Vai lá então..")local zone = select ( "Chun Piso 1" , "Chun Piso 2" , "Floresta 2" , "Floresta 1" , "Gomi Piso 2" , "Gomi Piso 1" , "Vale de Suryoung Dominio Jinno" , "Vale de Suryoung Dominio Shinsoo" , "Vale de Suryoung Dominio Chonjo" , "Cancelar")if zone == 1 thenpc . warp ( 10000 , 1207800 )elseif zone == 2 thenpc . warp ( 241300 , 1275500 )elseif zone == 3 thenpc . warp ( 1119900 , 70800 )elseif zone == 4 thenpc . warp ( 288700 , 5700 )elseif zone == 5 thenpc . warp ( 703800 , 522700 )elseif zone == 6 thenpc . warp ( 89600 , 525400 )elseif zone == 7 thenpc . warp ( 334900 , 755800 )elseif zone == 8 thenpc . warp ( 346400 , 733200 )elseif zone == 9 thenpc . warp ( 317200 , 732200 )elseif zone == 10 thenreturnendendendendend

Share this post


Link to post
Share on other sites

Como e que sei qual e o item para me teleportar ?

Share this post


Link to post
Share on other sites

Como e que sei qual e o item para me teleportar ?

Mesma pergunta!!

Share this post


Link to post
Share on other sites

A quest não é por item, é por missão.

Share this post


Link to post
Share on other sites

So funciona nos reds ? 

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this