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

item

agomez

Member
Joined
Jan 28, 2009
Messages
211
Reaction score
5
how can i make when an item disapear (example 7172 (snowman)) it create an effect (effect 52 :d)
 
it wold be like this:

PHP:
function meltIce(pos)
	for i = 1, 255 do
		pos.stackpos = i
		local ice = getThingFromPos(pos)
		if ice.itemid == 6966 then
			doRemoveItem(ice.uid, 1)
			doSendMagicEffect(pos, CONST_ME_ICEATTACK)
			break
		end
	end
end
isnt it?
 
Back
Top