Vejo muita gente ainda criando vários e vários baús para colocar um item para cada vocação... Então criei esse simples, porém eficiente, script que te da os itens dependendo da sua vocação. No actions.xml coloque:
<action actionid="10201" event="script" value="firstitems.lua"/>
Crie um arquivo chamado firstitems.lua dentro da pasta script e coloque isso dentro:
function onUse(cid, item, frompos, item2, topos)
if item.uid == 10201 then
if getPlayerStorageValue(cid,10201) == -1 then
doPlayerSendTextMessage(cid,22,"You have found a chest.")
if getPlayerVocation(cid) == 1 then -- Sorcerer
doPlayerAddItem(cid,2190,1) -- Wand of Vortex
elseif getPlayerVocation(cid) == 2 then -- Druid
doPlayerAddItem(cid,2182,1) -- Snakebite Rod
elseif getPlayerVocation(cid) == 3 then -- Paladin
doPlayerAddItem(cid,2389,1) -- Spear
elseif getPlayerVocation(cid) == 4 then -- Knight
doPlayerAddItem(cid,8602,1) -- Jagged Sword
doPlayerAddItem(cid,2439,1) -- Daramanian Mace
doPlayerAddItem(cid,8601,1) -- Steel Axe
end
doPlayerAddItem(cid,1988,1) -- Backpack
doPlayerAddItem(cid,2666,2) -- Meat
doPlayerAddItem(cid,2120,1) -- Rope
doPlayerAddItem(cid,2554,1) -- Shovel
doPlayerAddItem(cid,2461,1) -- Leather Helmet
doPlayerAddItem(cid,2467,1) -- Leather Armor
doPlayerAddItem(cid,2649,1) -- Leather Legs
doPlayerAddItem(cid,2643,1) -- Leather Boots
doPlayerAddItem(cid,2509,1) -- Dark Shield
setPlayerStorageValue(cid,10201,1)
else
doPlayerSendTextMessage(cid,22,"The chest is empty.")
end
end
return TRUE
end
Proooooooooooooonto, agora é só ligar o servidor