• 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!

Firstitems

Gloyz

New Member
Joined
Mar 1, 2010
Messages
67
Reaction score
1
How do i create the first items some1 should start with? :thumbup:
 
creaturecript.xml

<event type="login" name="firstitems" event="script" value="firstitems.lua"/>

firstitems.lua

function onLogin(cid)
if getPlayerGroupId(cid) == 1 and getPlayerStorageValue(cid, 50000) == -1 then
if isSorcerer(cid) then
local bag = doPlayerAddItem(cid, 1988, 1)

doAddContainerItem(bag, 2120, 1)
doAddContainerItem(bag, 2554, 1)
doAddContainerItem(bag, 2152, 2)

doPlayerAddItem(cid, 2175, 1)
doPlayerAddItem(cid, 2190, 1)
doPlayerAddItem(cid, 8819, 1)
doPlayerAddItem(cid, 8820, 1)
doPlayerAddItem(cid, 2468, 1)
doPlayerAddItem(cid, 2643, 1)

setPlayerStorageValue(cid, 50000, 1)

elseif isDruid(cid) then
local bag = doPlayerAddItem(cid, 1988, 1)
doAddContainerItem(bag, 2120, 1)
doAddContainerItem(bag, 2554, 1)
doAddContainerItem(bag, 2152, 2)

doPlayerAddItem(cid, 2175, 1)
doPlayerAddItem(cid, 2182, 1)
doPlayerAddItem(cid, 8819, 1)
doPlayerAddItem(cid, 8820, 1)
doPlayerAddItem(cid, 2468, 1)
doPlayerAddItem(cid, 2643, 1)

setPlayerStorageValue(cid, 50000, 1)

elseif isPaladin(cid) then
local bag = doPlayerAddItem(cid, 1988, 1)
doAddContainerItem(bag, 2120, 1)
doAddContainerItem(bag, 2554, 1)
doAddContainerItem(bag, 2152, 2)

doPlayerAddItem(cid, 2456, 1)
doPlayerAddItem(cid, 2544, 100)
doPlayerAddItem(cid, 2660, 1)
doPlayerAddItem(cid, 2480, 1)
doPlayerAddItem(cid, 8923, 1)
doPlayerAddItem(cid, 2643, 1)

setPlayerStorageValue(cid, 50000, 1)

elseif isKnight(cid) then
local bag = doPlayerAddItem(cid, 1988, 1)
doAddContainerItem(bag, 2120, 1)
doAddContainerItem(bag, 2554, 1)
doAddContainerItem(bag, 2152, 2)
doAddContainerItem(bag, 2439, 1)
doAddContainerItem(bag, 8601, 1)

doPlayerAddItem(cid, 2509, 1)
doPlayerAddItem(cid, 8602, 1)
doPlayerAddItem(cid, 2465, 1)
doPlayerAddItem(cid, 2481, 1)
doPlayerAddItem(cid, 2478, 1)
doPlayerAddItem(cid, 2643, 1)

setPlayerStorageValue(cid, 50000, 1)
end
end
return TRUE
end
 
I deleted firstitems.lua etc and i log in on knight sample now give it the items and log out and create new char from webside and it doesnt have the same eq as i gave ..
 
Back
Top