Bom da pra faze colocando isso no login.lua, não tenho tempo de testar agora, mas quando voltar da escola testo 
if getPlayerLastLoginSaved(cid) <= 0 then
local configs = {
--[vocacao] = { {posiçao que nasce}, {outfit female}, {outfit male}}
["sorcerer"] = {
{x=0, y=0, z=0},
{lookType = 268, lookHead = 79, lookBody = 91, lookLegs = 91, lookFeet = 91, lookTypeEx = 0, lookAddons = 3},
{lookType = 269, lookHead = 86, lookBody = 86, lookLegs = 86, lookFeet = 86, lookTypeEx = 0, lookAddons = 3}
},
["druid"] = {
{x=0, y=0, z=0},
{lookType = 268, lookHead = 79, lookBody = 91, lookLegs = 91, lookFeet = 91, lookTypeEx = 0, lookAddons = 3},
{lookType = 269, lookHead = 86, lookBody = 86, lookLegs = 86, lookFeet = 86, lookTypeEx = 0, lookAddons = 3}
},
["paladin"] = {
{x=0, y=0, z=0},
{lookType = 268, lookHead = 79, lookBody = 91, lookLegs = 91, lookFeet = 91, lookTypeEx = 0, lookAddons = 3},
{lookType = 269, lookHead = 86, lookBody = 86, lookLegs = 86, lookFeet = 86, lookTypeEx = 0, lookAddons = 3}
},
["knight"] = {
{x=0, y=0, z=0},
{lookType = 268, lookHead = 79, lookBody = 91, lookLegs = 91, lookFeet = 91, lookTypeEx = 0, lookAddons = 3},
{lookType = 269, lookHead = 86, lookBody = 86, lookLegs = 86, lookFeet = 86, lookTypeEx = 0, lookAddons = 3}
}
}
local voc = getPlayerVocation(cid)
local voc = configs[voc]
doTeleportThing(cid, voc[1])
if getPlayerSex(cid) == 0 then
doCreatureChangeOutfit(cid, voc[1]) -- se for female
else
doCreatureChangeOutfit(cid, voc[2]) -- se for male
end
end
As Vezes construímos sonhos em cima de grandes pessoas, o tempo pas-
sa e descobrimos que grande mesmo eram os sonhos e as pessoas pe-
quenas demais para torná-los reais!