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

i need a easy script...

esker

New Member
Joined
Oct 11, 2009
Messages
17
Reaction score
0
i need a script :

onuse create item 1502 from pos x,y,z to pos x,y,z

thanks
 
Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	local cfg = {
		{x = 100, y = 100, z = 7}, -- First position of the item.
		{x = 100, y = 100, z = 7} -- New position of the item.
	}
	return doRelocate(cfg[1], cfg[2], false)
end
 
Back
Top