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

How can i fill an empty beer bottle using it on a barrel?

Code:
local storage = 10000
local caskID = 1771 -- 8176 is the actual ID
function onUse(cid, item, fromPosition, itemEx, toPosition)
	if itemEx.itemid == caskID and getPlayerStorageValue(cid, storage) == 1 then
		doCreatureSay(cid, "GULP, GULP, GULP", TALKTYPE_ORANGE_1, nil, nil, toPosition)
		doSendMagicEffect(toPosition, CONST_ME_SOUND_YELLOW)
		doTransformItem(item.uid, 7495)
		setPlayerStorageValue(cid, storage, 2)
		return true
	end
	return false
end
 
Back
Top