Ir para conteúdo
  • 0

[Dúvida] Como editar essa parte do otclient


LeoTK

Pergunta



Então galera gostaria de editar esta parte do otclient será que alguém pode ajudar pf?




 




print:




u2fr9p3.png




é isso ficarei no aguardo desde já obrigado


Link para o comentário
Compartilhar em outros sites

3 respostass a esta questão

Posts Recomendados

  • 0
1 hora atrás, Brunds disse:

Então galera gostaria de editar esta parte do otclient será que alguém pode ajudar pf?

 

Vá em modules\client_background\background.lua

procure:

function init()

e substitua toda por essa..

function init()  background = g_ui.displayUI('background')  background:lower()  connect(g_game, { onGameStart = hide })  connect(g_game, { onGameEnd = show })end

 

Link para o comentário
Compartilhar em outros sites

  • 0

@Drakopoulos

dei uma verificada no arquivo está assim

 

Spoiler

-- private variables
local background
local clientVersionLabel

-- public functions
function init()
  background = g_ui.displayUI('background')
  background:lower()

  clientVersionLabel = background:getChildById('clientVersionLabel')
  clientVersionLabel:setText(g_app.getName() .. ' ' .. g_app.getVersion() .. '\n' ..
                             'Rev  ' .. g_app.getBuildRevision() .. ' ('.. g_app.getBuildCommit() .. ')\n' ..
                             'Built on ' .. g_app.getBuildDate())

  if not g_game.isOnline() then
    addEvent(function() g_effects.fadeIn(clientVersionLabel, 1500) end)
  end

  connect(g_game, { onGameStart = hide })
  connect(g_game, { onGameEnd = show })
end

function terminate()
  disconnect(g_game, { onGameStart = hide })
  disconnect(g_game, { onGameEnd = show })

  g_effects.cancelFade(background:getChildById('clientVersionLabel'))
  background:destroy()

  Background = nil
end

function hide()
  background:hide()
end

function show()
  background:show()
end

function hideVersionLabel()
  background:getChildById('clientVersionLabel'):hide()
end

function setVersionText(text)
  clientVersionLabel:setText(text)
end
 

 

 

eu consegui fazer o seu e tals saiu porém eu gostária de editar o texto escrito naquela parte...

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...