Ir para conteúdo
  • Cadastre-se

Outfit por vocação [Duvida] Player de Tal vocação nascer com x roupa


Posts Recomendados

Opa galera, eu queria saber como eu faça para cada player de cada vocação,, nascer com uma roupa difeferente? tipo vocação, druid nascer com tal roupa, knight nascer com tal roupa, Server 8.54.

                                                        

Link para o post
Compartilhar em outros sites
local outGain = {
	[1] = 69,  --[ID VOCATION] = ID OUTFIT
	[2] = 62, 
	[3] = 250, 
	[4] = 73, 
	[5] = 158,
	[6] = 137,
	[7] = 227,
	[8] = 52
}

function onLogin(cid)
	local outfit = getCreatureOutfit(cid)
	outfit.lookType = outGain[getPlayerVocation(cid)]
	doSetCreatureOutfit(cid, outfit, -1)
return true
end

Em Creaturescripts.xml

<event type="login" name="ChangeOutfit" event="script" value="ChangeOutfit.lua"/>

Em Login.lua

registerCreatureEvent(cid, "ChangeOutfit")	

Creditos?

Emerson Henrique

Skype : emersonaaron Se Te ajudei não me REP+ isso não muda nada! kkkkkkkkkkkk

Link para o post
Compartilhar em outros sites

luanluciano93 ñ :/


é ta legal, so que qunado o player reloga ela volta com a skin, envez de ficar a que tava transformada

                                                        

Link para o post
Compartilhar em outros sites

Em Creaturescripts.xml

<event type="login" name="ChangeOutfit" event="script" value="ChangeOutfit.lua"/>

Em Login.lua 

registerCreatureEvent(cid, "ChangeOutfit") 

 

 

ChangeOutfit.lua

 

local outfit =
{
	-- SORCERER
	sorcerer_male = {lookType = 268, lookHead = 86, lookBody = 86, lookLegs = 86, lookFeet = 86, lookTypeEx = 0, lookAddons = 3},
	sorcerer_female = {lookType = 268, lookHead = 86, lookBody = 86, lookLegs = 86, lookFeet = 86, lookTypeEx = 0, lookAddons = 3},
	-- DRUID
	druid_male = {lookType = 268, lookHead = 86, lookBody = 86, lookLegs = 86, lookFeet = 86, lookTypeEx = 0, lookAddons = 3},
	druid_female = {lookType = 268, lookHead = 86, lookBody = 86, lookLegs = 86, lookFeet = 86, lookTypeEx = 0, lookAddons = 3},
	-- PALADIN
	paladin_male = {lookType = 268, lookHead = 86, lookBody = 86, lookLegs = 86, lookFeet = 86, lookTypeEx = 0, lookAddons = 3},
	paladin_female = {lookType = 268, lookHead = 86, lookBody = 86, lookLegs = 86, lookFeet = 86, lookTypeEx = 0, lookAddons = 3},
	-- KNIGHT
	knight_male = {lookType = 268, lookHead = 86, lookBody = 86, lookLegs = 86, lookFeet = 86, lookTypeEx = 0, lookAddons = 3},
	knight_female = {lookType = 268, lookHead = 86, lookBody = 86, lookLegs = 86, lookFeet = 86, lookTypeEx = 0, lookAddons = 3},
}
local storage = 8888

function onLogin(cid)
	if getPlayerStorageValue(cid, storage) == -1 then
		if getPlayerVocation(cid) == 1 or getPlayerVocation(cid) == 5 then
			if getPlayerSex(cid) == 0 then
				doCreatureChangeOutfit(cid, outfit.sorcerer_female)
			else
				doCreatureChangeOutfit(cid, outfit.sorcerer_male)
			end
		
		elseif getPlayerVocation(cid) == 2 or getPlayerVocation(cid) == 6 then
			if getPlayerSex(cid) == 0 then
				doCreatureChangeOutfit(cid, outfit.druid_female)
			else
				doCreatureChangeOutfit(cid, outfit.druid_male)
			end
		
		elseif getPlayerVocation(cid) == 3 or getPlayerVocation(cid) == 7 then
			if getPlayerSex(cid) == 0 then
				doCreatureChangeOutfit(cid, outfit.paladin_female)
			else
				doCreatureChangeOutfit(cid, outfit.paladin_male)
			end
		
		elseif getPlayerVocation(cid) == 4 or getPlayerVocation(cid) == 8 then
			if getPlayerSex(cid) == 0 then
				doCreatureChangeOutfit(cid, outfit.knight_female)
			else
				doCreatureChangeOutfit(cid, outfit.knight_male)
			end
		end
		setPlayerStorageValue(cid, storage, 1)
	end
	
	return true
end 

 

Configura apenas a tabela outfit.

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