Ir para conteúdo
  • 0

Qual o arquivo/código responsável pelas "falas" do Account Manager?


Superion

Pergunta

Qual o arquivo/código responsável pelas "falas" do Account Manager?

Tem algumas falas dele em Data/CreatureScripts/Scripts/Login.lua, pórem não são as "falas" que eu procuro.

 

Obrigado, no aguardo.

REP+

Link para o comentário
Compartilhar em outros sites

8 respostass a esta questão

Posts Recomendados

  • 0

Eu Vi em Login.Lua (SeuOt/Data/CreatureScripts/Scripts/Login.lua)

Encontrei aqui, olha.

 

 

 

local config = {
loginMessage = getConfigValue('loginMessage'),
useFragHandler = getBooleanFromString(getConfigValue('useFragHandler'))
}
function onLogin(cid)
local loss = getConfigValue('deathLostPercent')
if(loss ~= nil) then
doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss * 10)
end
local accountManager = getPlayerAccountManager(cid)
if(accountManager == MANAGER_NONE) then
local lastLogin, str = getPlayerLastLoginSaved(cid), config.loginMessage
if(lastLogin > 0) then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
str = "Your last visit was on " .. os.date("%a %b %d %X %Y", lastLogin) .. "."
end
doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
elseif(accountManager == MANAGER_NAMELOCK) then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, it appears that your character has been namelocked, what would you like as your new name?")
elseif(accountManager == MANAGER_ACCOUNT) then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to manage your account and if you want to start over then type 'cancel'.")
else
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to create an account or type 'recover' to recover an account.")
end

Se for que Esteja Procurando.. Esta Ai.
Ajudei,
REP++
Link para o comentário
Compartilhar em outros sites

  • 0

Como eu tinha dito lá em cima, essas ai eu já encontrei.

As que eu procuro é a parte que ele fala Character, Delete, Recovery Key, Cancel e etc.

Mesmo assim obrigado.

Editado por Superion
Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...