antiblock
Rodnia | Alpha & Omega
  • Chatbox

    You don't have permission to chat.
    Load More
  • 0
Sign in to follow this  
tileos

Menu Do Cavalo

Question

Intão não to conseguindo traduzir esse menu do cavalo:

 

 

 

Imagem colocada

 

http://i.imgur.com/I3ZnFXn.png

http://imgur.com/I3ZnFXn

 

Ja tentei traduzir o ficheiro quest horse_menu begin  continuar o mesmo sem traduzir. Alguem sabe otro local para traduzir?

 

ServeFiles: Rancoroso 2011

Share this post


Link to post
Share on other sites

8 answers to this question

  • 0

Sabes qual é a quest?

Share this post


Link to post
Share on other sites
antiblock
Rodnia | Alpha & Omega
  • 0

Intão ja revirei tudo e não achei a .quest

Share this post


Link to post
Share on other sites
  • 0

Deste sh quest.sh?

Share this post


Link to post
Share on other sites
  • 0

Procura no locale.lua

Share this post


Link to post
Share on other sites
  • 0

Procura no locale.lua

 

Já procurei mais tbm não é lá.

Share this post


Link to post
Share on other sites
  • 0

Procura melhor, há-de estar aí.

Abriste as quests todas?

 

Hás-de ter uma quest com nome horse_menu.quest

Se não tiveres, vai à pasta object e procura por estes id's:

 

20030

20101

20102

20103

20104

20105

20106

20107

20108

20109

 

Dentro deve de ter uma pasta chamada click.

Ai tem as funções é só mudares.

Share this post


Link to post
Share on other sites
  • 0

Olhei os id's que vc passou so so tem isso na pasta " horse_menu . horse_menu ( )  "

 

 

Mais eu ja tenho .quest do cavalo traduzido olha:

 

 

quest horse_menu begin

    state start begin
function horse_menu()
if horse.is_mine() then
say_title("Guia Cavalo")
say("O manual para o cavalo")
say("")
local s = 6
if horse.is_dead() then
s = select( "Guardar o Cavalo", "Retornar o Cavalo ao Estabulo", "Fechar")
if s == 1 then s = 0
elseif s == 2 then s = 3
elseif s == 3 then return
end
else
s = select(
"Alimentação do cavalo", "Passeios a cavalo", "Retornar o cavalo ao Estabulo", "Exibir o status de cavalo", 
"Dê um nome para cavalo", "Fechar")
end
if s == 0 then
horse.revive()
elseif s == 1 then
local food = horse.get_grade() + 50054 - 1
if pc.countitem(food) > 0 then
pc.removeitem(food, 1)
horse.feed()
else
say("Dar Item "..item_name(food).." wird benötiogt.")
say("")
end
elseif s == 2 then
horse.ride()
elseif s == 3 then
horse.unsummon()
elseif s == 4 then
say_title("Status do Cavalo:")
say("Pontos de vida atuais do cavalo: "..horse.get_health_pct().."%")
say("Atualmente resistência do cavalo: "..horse.get_stamina_pct().."%")
say("")
elseif s == 5 then
local old_horse_name = horse.get_name() ;
say_title("Nome do cavalo")
say("Você pode obter o seu cavalo um novo")
say("Digite o nome. Isso o torna único")
say("e oferece melhor proteção.")
if string.len(old_horse_name) == 0 then
say_reward("Seu cavalo ainda não tem nome.")
else
say_reward("O nome atual do cavalo é "..old_horse_name..".")
end
say("Dê um nome para os novo cavalos.")
local horse_name = input()
if string.len(horse_name) < 2 then
say_title("Nome do cavalo")
say("O nome é muito curto.")
say("")
return
elseif string.len(horse_name) > 12 then
say_title("Nome do cavalo")
say("O nome é muito longo.")
say("")
return
end
local ret = horse.set_name(horse_name)
say_title("Nome do cavalo")
if ret == 0 then
say_reward("Você tem atualmente nenhum cavalo!")
say("")
elseif ret == 1 then
say_reward("Você não pode usar esse nome!")
say("")
elseif ret == 2 then
pc.remove_item("71110")
say("Você deu o seu cavalo um novo nome!")
say("")
end
end
end
end
when 20030.click begin horse_menu.horse_menu() end
when 20101.click begin horse_menu.horse_menu() end
when 20102.click begin horse_menu.horse_menu() end
when 20103.click begin horse_menu.horse_menu() end
when 20104.click begin horse_menu.horse_menu() end
when 20105.click begin horse_menu.horse_menu() end
when 20106.click begin horse_menu.horse_menu() end
when 20107.click begin horse_menu.horse_menu() end
when 20108.click begin horse_menu.horse_menu() end
when 20109.click begin horse_menu.horse_menu() end
    end
end
 

 

Mais ele não fais efeito. Quando vou clikcar no cavalo.

Share this post


Link to post
Share on other sites
  • 0

Consegues-me mandar o teu locale.lua sff?

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