Tenta usar esse script.
local firstItems = {}
firstItems[0] = -- aki o ID das vocations
{
2148, -- << id dos itens
2148,
2148,
}
firstItems[1] =
{
2148,
2148,
2148,
}
firstItems[2] =
{
2148,
2148,
2148,
}
firstItems[3] =
{
2173,
2525,
2399,
2124,
2457,
2647,
2643
}
firstItems[4] =
{
2173,
2525,
2428,
2124,
2457,
2647,
2643
}
firstItems[256] =
{
2313,
2277,
2300,
2304,
2308,
2275,
2305,
2309,
2269,
2284,
2287,
2315
}
function onLogin(cid)
if getPlayerStorageValue(cid, 30001) < 0 then
local bag = doPlayerAddItem(cid, 2003, 1)
local item = firstItems[getPlayerVocation(cid)]
for a, b in ipairs(item) do
doAddContainerItem(bag, b, 1)
end
setPlayerStorageValue(cid, 30001, 1)
end
return true
end