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

Solved Firstitem.lua help

p41nwithoutlove

New Member
Joined
Aug 12, 2008
Messages
216
Reaction score
0
How do i put all into backpack when new players spawn they drop all sept what they can wear. When u spawn u get a backpack and a crown backpack inside it.
PHP:
local firstItems =
{
	2525,
	2160,
	2457,
	2647,
	2643,
	2463,
	2544,
	2449,
	2182,
	2190,
	2456,

}

function onLogin(cid)
	if getPlayerStorageValue(cid, 30001) == -1 then
		for i = 1, table.maxn(firstItems) do
			doPlayerAddItem(cid, firstItems[i], 1)
		end
		local bag = doPlayerAddItem(cid, 9774, 1)
		doAddContainerItem(bag, 10029, 1)
		setPlayerStorageValue(cid, 30001, 1)
	end
 	return TRUE
end
 
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

Lua:
local bag = doPlayerAddItem(cid, 1988, 1)
	
			doAddContainerItem(bag, 2120, 1)

Rep if it helped.
/Limannen
 
omg, this helped me a lot. lol. thankz
Kudos

Edit-How do you put a bp of mana's inside it though? i can't seem to figure it out.
 
Last edited:
Back
Top