Que vacilo, eu nunca criei nenhum script aqui pro Xtibia, quando eu resolvo criar um pra ajudar a galera, fico um tempinho aqui fazendo, na hora de vir postar, ja fizeram =( oq eu fiz foi isso daqui :S
function onLogin(cid)
local config = {
mage = 130, -- aki ta o looktype do mage
pally = 129, -- aki o do pally
kina = 134, -- aki o do kina
}
if getPlayerStorageValue(cid,1593) ~= 2 then
if getPlayerVocation(cid) == 1 or getPlayerVocation(cid) == 2 then
doSetCreatureOutfit(cid, config.mage, -1)
setPlayerStorageValue(cid, 1593, 2)
end
if getPlayerVocation(cid) == 3 then
doSetCreatureOutfit(cid, config.pally, -1)
setPlayerStorageValue(cid, 1593, 2)
end
if getPlayerVocation(cid) == 4 then
doSetCreatureOutfit(cid, config.kina, -1)
setPlayerStorageValue(cid, 1593, 2)
end
end
return TRUE
end