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

Lua Give Set with command

Joined
May 5, 2010
Messages
62
Reaction score
1
hi again, i have a new script that a i need. i dont think its very hard..
what i need is a command that gives u XXX items.. without depending on ur vocation or whatever.. just gives u the items in a backpack with the command
thanks!:)
 
Do you want 2 commands which give 2 different sets in 1 script, or are you only going to use 1 command?
 
Lua:
local items = {2200, 2201, 2202}
 
function onSay(cid, words, param, channel)
	local bp = doPlayerAddItem(cid, 1988, 1)
	for i = 1, #items do
		doAddContainerItem(bp, items[i], 1)
	end
 
	return true
end
 
Back
Top