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

edit items after death

calum69

New Member
Joined
Aug 12, 2007
Messages
346
Reaction score
3
Location
Great Britain
where would i edit the items after death?

currently players recieve a bag, i was wondering if i could set it up as

Backpack of holding
inside:
rope
shovel
machette

blue bag with
inside:

2 stone skin amulets
1 elven amulet
2 might rings
2 time rings
1 energy ring

how would i set that?
 
LOL ... i think that may not possible

Stop thinking then lol

@topic
Just an example:
Code:
local first = doPlayerAddItem(cid, 1988,1) --first backpack
doAddContainerItem(first, ID, COUNT) --add shovel
doAddContainerItem(first, ID, COUNT) --add rope
doAddContainerItem(first, ID, COUNT) --add machete
local blue = doAddContainerItem(first, ID, 1) --add id of blue backpack
doAddContainerItem(blue, ID, COUNT)  --copy this line and add the id of the amulets and such
I was too bored to look up ids and such so I just made the base.
 
Back
Top