• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

need scirpt vocacion items!

lord anthor

New Member
Joined
Oct 4, 2008
Messages
17
Reaction score
0
help!
i dont know how make a scritp that when qe choose your vocation and enter the game only have items for this vocation without opening chests ej, knight; spike sword, plate set, guardian shield, etc)

Sorc (spirit cloak, plate legs, guardian shield, wand of decay, etc)

i use tfs and make acc;1/1

straightedge.no-ip.org

Server 100% rpg no lag
exp by stages
 
Last edited:
Code:
local zjebana_tablica = {
	[1] = {2160, 2152},	-- sorcerer
	[2] = {2160, 2152},	-- druid
	[3] = {2160, 2152},	-- paladin
	[4] = {2160, 2152}	-- knight
}

local zjebana_profesja = getPlayerVocation(cid)

for i = 1, #zjebana_tablica[zjebana_profesja] do
	doPlayerAddItem(cid, zjebana_tablica[zjebana_profesja][i], 1)
end
 
Back
Top