Ir para conteúdo
  • Cadastre-se

Posts Recomendados

fiz do jeito que vc pediu e ainda nao deu certo:

voclogin.lua

local vocations = {
["tapion"] = {voc = 501, storage = 210000, outfit = 485},
["tapion2"] = {voc = 502, storage = 210001, outfit = 477},
["tapion3"] = {voc = 503, storage = 210002, outfit = 475},
["tapion4"] = {voc = 504, storage = 210003, outfit = 476},
["tapion5"] = {voc = 505, storage = 210004, outfit = 478},
["tapion Gt"] = {voc = 506, storage = 210005, outfit = 479},
["tapion2 Gt"] = {voc = 507, storage = 210006, outfit = 480},
["tapion3 Gt"] = {voc = 508, storage = 210007, outfit = 481},
["tapion4 Gt"] = {voc = 509, storage = 210008, outfit = 482},
["tapion5 Gt"] = {voc = 510, storage = 210009, outfit = 483},
["tapion6 gt"] = {voc = 511, storage = 210010, outfit = 421},
["tapion7 gt"] = {voc = 512, storage = 210011, outfit = 484}
 
 
}
 
function onLogin(cid)
    for k, v in pairs(vocations) do
        local outfit = {lookType = v.outfit , lookHead = 0, lookBody = 0, lookLegs = 0, lookFeet = 0, lookAddons = 0}
        if getPlayerStorageValue(cid, v.storage) == 1 then
           doPlayerSetVocation(cid, v.voc)
           doSetCreatureOutfit(cid, outfit, -1)
           break
        end
     end
 
    return true
end

 
 
voclogout.lua:
 

function onLogout(cid)
 
local vocations = {
["tapion"] = {voc = 501, storage = 21001},
["tapion2"] = {voc = 502, storage = 21002},
["tapion3"] = {voc = 503, storage = 21003},
["tapion4"] = {voc = 504, storage = 21004},
["tapion5"] = {voc = 505, storage = 21005},
["tapion Gt"] = {voc = 506, storage = 21006},
["tapion2 Gt"] = {voc = 507, storage = 21007},
["tapion3 Gt"] = {voc = 508, storage = 21008},
["tapion4 Gt"] = {voc = 509, storage = 21009},
["tapion5 Gt"] = {voc = 510, storage = 21010},
["tapion6 gt"] = {voc = 511, storage = 21011},
["tapion7 gt"] = {voc = 512, storage = 21012}
 
}
 
for k, v in pairs(vocations) do
if getPlayerVocation(cid) == v.voc then
setPlayerStorageValue(cid, v.storage, 1)
end
end
 
return true
end
 

Link para o post
Compartilhar em outros sites
  • Respostas 47
  • Created
  • Última resposta

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

O script de transformação provavelmente é feito por uma talkaction, abra a pasta "Data/talkactions" e abra o arquivo talkactions.xml e procure pelo seu comando de transform. Veja o nome do script em

Cara adicionar todas vai ser tenso, vou tentar montar uma gambiarra para não precisar adicionar em todos a storage, se eu conseguir até amanhã eu te passo. Pois adicionar em todas vai ser complicado

Criei uma forma para você adicionar as vocações que você quer que mantenha ao deslogar: Adicione em "Data/creaturescripts/scripts" esses dois scripts: voclogin.lua: function onLogin(cid) local voc

 

fiz do jeito que vc pediu e ainda nao deu certo:

voclogin.lua

local vocations = {
["tapion"] = {voc = 501, storage = 210000, outfit = 485},
["tapion2"] = {voc = 502, storage = 210001, outfit = 477},
["tapion3"] = {voc = 503, storage = 210002, outfit = 475},
["tapion4"] = {voc = 504, storage = 210003, outfit = 476},
["tapion5"] = {voc = 505, storage = 210004, outfit = 478},
["tapion Gt"] = {voc = 506, storage = 210005, outfit = 479},
["tapion2 Gt"] = {voc = 507, storage = 210006, outfit = 480},
["tapion3 Gt"] = {voc = 508, storage = 210007, outfit = 481},
["tapion4 Gt"] = {voc = 509, storage = 210008, outfit = 482},
["tapion5 Gt"] = {voc = 510, storage = 210009, outfit = 483},
["tapion6 gt"] = {voc = 511, storage = 210010, outfit = 421},
["tapion7 gt"] = {voc = 512, storage = 210011, outfit = 484}
 
 
}
 
function onLogin(cid)
    for k, v in pairs(vocations) do
        local outfit = {lookType = v.outfit , lookHead = 0, lookBody = 0, lookLegs = 0, lookFeet = 0, lookAddons = 0}
        if getPlayerStorageValue(cid, v.storage) == 1 then
           doPlayerSetVocation(cid, v.voc)
           doSetCreatureOutfit(cid, outfit, -1)
           break
        end
     end
 
    return true
end

 
 
voclogout.lua:
 

function onLogout(cid)
 
local vocations = {
["tapion"] = {voc = 501, storage = 21001},
["tapion2"] = {voc = 502, storage = 21002},
["tapion3"] = {voc = 503, storage = 21003},
["tapion4"] = {voc = 504, storage = 21004},
["tapion5"] = {voc = 505, storage = 21005},
["tapion Gt"] = {voc = 506, storage = 21006},
["tapion2 Gt"] = {voc = 507, storage = 21007},
["tapion3 Gt"] = {voc = 508, storage = 21008},
["tapion4 Gt"] = {voc = 509, storage = 21009},
["tapion5 Gt"] = {voc = 510, storage = 21010},
["tapion6 gt"] = {voc = 511, storage = 21011},
["tapion7 gt"] = {voc = 512, storage = 21012}
 
}
 
for k, v in pairs(vocations) do
if getPlayerVocation(cid) == v.voc then
setPlayerStorageValue(cid, v.storage, 1)
end
end
 
return true
end
 

 

O valor das storages de onLogin está diferente das storages de onLogout, coloque as storages do onLogin iguais a do onLogout e teste.

Link para o post
Compartilhar em outros sites

continua perdendo a outfit quando loga ver se fiz certo...

 

voclogin.lua

local vocations = {
["tapion"] = {voc = 501, storage = 21001, outfit = 485},
["tapion2"] = {voc = 502, storage = 21002, outfit = 477},
["tapion3"] = {voc = 503, storage = 21003, outfit = 475},
["tapion4"] = {voc = 504, storage = 21004, outfit = 476},
["tapion5"] = {voc = 505, storage = 21005, outfit = 478},
["tapion Gt"] = {voc = 506, storage = 21006, outfit = 479},
["tapion2 Gt"] = {voc = 507, storage = 21007, outfit = 480},
["tapion3 Gt"] = {voc = 508, storage = 21008, outfit = 481},
["tapion4 Gt"] = {voc = 509, storage = 21009, outfit = 482},
["tapion5 Gt"] = {voc = 510, storage = 21010, outfit = 483},
["tapion6 gt"] = {voc = 511, storage = 21011, outfit = 421},
["tapion7 gt"] = {voc = 512, storage = 21012, outfit = 484}
 
 
}
 
function onLogin(cid)
    for k, v in pairs(vocations) do
        local outfit = {lookType = v.outfit , lookHead = 0, lookBody = 0, lookLegs = 0, lookFeet = 0, lookAddons = 0}
        if getPlayerStorageValue(cid, v.storage) == 1 then
           doPlayerSetVocation(cid, v.voc)
           doSetCreatureOutfit(cid, outfit, -1)
           break
        end
     end
 
    return true
end

voclogout.lua

function onLogout(cid)
 
local vocations = {
["tapion"] = {voc = 501, storage = 21001},
["tapion2"] = {voc = 502, storage = 21002},
["tapion3"] = {voc = 503, storage = 21003},
["tapion4"] = {voc = 504, storage = 21004},
["tapion5"] = {voc = 505, storage = 21005},
["tapion Gt"] = {voc = 506, storage = 21006},
["tapion2 Gt"] = {voc = 507, storage = 21007},
["tapion3 Gt"] = {voc = 508, storage = 21008},
["tapion4 Gt"] = {voc = 509, storage = 21009},
["tapion5 Gt"] = {voc = 510, storage = 21010},
["tapion6 gt"] = {voc = 511, storage = 21011},
["tapion7 gt"] = {voc = 512, storage = 21012}
 
}
 
for k, v in pairs(vocations) do
if getPlayerVocation(cid) == v.voc then
setPlayerStorageValue(cid, v.storage, 1)
end
end
 
return true
end
 
Editado por jeanchess (veja o histórico de edições)
Link para o post
Compartilhar em outros sites

 

continua perdendo a outfit quando loga ver se fiz certo...

 

voclogin.lua

local vocations = {
["tapion"] = {voc = 501, storage = 210001, outfit = 485},
["tapion2"] = {voc = 502, storage = 210002, outfit = 477},
["tapion3"] = {voc = 503, storage = 210003, outfit = 475},
["tapion4"] = {voc = 504, storage = 210004, outfit = 476},
["tapion5"] = {voc = 505, storage = 210005, outfit = 478},
["tapion Gt"] = {voc = 506, storage = 210006, outfit = 479},
["tapion2 Gt"] = {voc = 507, storage = 210007, outfit = 480},
["tapion3 Gt"] = {voc = 508, storage = 210008, outfit = 481},
["tapion4 Gt"] = {voc = 509, storage = 210009, outfit = 482},
["tapion5 Gt"] = {voc = 510, storage = 2100010, outfit = 483},
["tapion6 gt"] = {voc = 511, storage = 210011, outfit = 421},
["tapion7 gt"] = {voc = 512, storage = 210012, outfit = 484}
 
 
}
 
function onLogin(cid)
    for k, v in pairs(vocations) do
        local outfit = {lookType = v.outfit , lookHead = 0, lookBody = 0, lookLegs = 0, lookFeet = 0, lookAddons = 0}
        if getPlayerStorageValue(cid, v.storage) == 1 then
           doPlayerSetVocation(cid, v.voc)
           doSetCreatureOutfit(cid, outfit, -1)
           break
        end
     end
 
    return true
end

voclogout.lua

function onLogout(cid)
 
local vocations = {
["tapion"] = {voc = 501, storage = 21001},
["tapion2"] = {voc = 502, storage = 21002},
["tapion3"] = {voc = 503, storage = 21003},
["tapion4"] = {voc = 504, storage = 21004},
["tapion5"] = {voc = 505, storage = 21005},
["tapion Gt"] = {voc = 506, storage = 21006},
["tapion2 Gt"] = {voc = 507, storage = 21007},
["tapion3 Gt"] = {voc = 508, storage = 21008},
["tapion4 Gt"] = {voc = 509, storage = 21009},
["tapion5 Gt"] = {voc = 510, storage = 21010},
["tapion6 gt"] = {voc = 511, storage = 21011},
["tapion7 gt"] = {voc = 512, storage = 21012}
 
}
 
for k, v in pairs(vocations) do
if getPlayerVocation(cid) == v.voc then
setPlayerStorageValue(cid, v.storage, 1)
end
end
 
return true
end
 

Storage está errada ainda amigo.

Link para o post
Compartilhar em outros sites

eu arrumei la em cima tinha um 0 amais aii eu tirei.


Nao sei se isso interfere na script mas eu notei aqui que apos criar uma conta e ela loga aparece assim:

 

22:07 Your last visit was on Tue Apr 4 13:06:20 1969.


Eu arrumei as storage la em cima viu .. e.e ficou certo?

Link para o post
Compartilhar em outros sites
  • 9 months later...

lek, tem um wodbo n lembro nome nele encontrei um script muito interessante, onde vc pode colocar as outfits, no meu caso eu coloquei pra sempre que logar ele aparece com a primeira outfit da transform. no caso sempre q vc loga ele checa o id de sua voc, e seta uma outfit indicada

 

aqui eh so um pedacinho do script e como ele funciona

explicando 

 [172] = Vocação

{lookType=297}}, = outfit

 

como eu disse no meu caso eu botei pra ele setar sempre a primeira outfit da vocaçao mas no seu caso, vc pode colocar cada vocação a outfit da transform.

isso tambem tem que ser registrado mas nao lembro como se faz
e depois era so ir adicionando todas as outras vocações uma embaixo da outra

function onLogin(cid)
wokacje = 
{ 
 [172] = {lookType = {lookType=297}}, -- Goku
   [173] = {lookType = {lookType=297}}, -- Goku
}

local wokacja = wokacje[getPlayerVocation(cid)]
    if (not wokacja) then
    else
        doSetCreatureOutfit(cid, wokacja.lookType, -1)
doCreatureSay(cid, 'Welcome !', TALKTYPE_ORANGE_1)
        return true
    end
    end

 

 

 

 

 

Link para o post
Compartilhar em outros sites

Participe da conversa

Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.

Visitante
Responder

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emojis são permitidos.

×   Seu link foi automaticamente incorporado.   Mostrar como link

×   Seu conteúdo anterior foi restaurado.   Limpar o editor

×   Não é possível colar imagens diretamente. Carregar ou inserir imagens do URL.

  • Quem Está Navegando   0 membros estão online

    Nenhum usuário registrado visualizando esta página.




×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo