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

[Request]onStepIn

Your Master

♫ ₥ẳ₱₱ễᏑ ♫
Joined
Dec 11, 2008
Messages
244
Reaction score
0
When I step in on ground(id 351 and uid 33001)
the mossy stone(1353)
appear on position (x=118, y=431, z=10).
Nothing happen when I step out of ground.

Plzz make It (I'm not very good in scripts :blink: )

Thanks :thumbup:
 
PHP:
local stone = {x=118, y=431, z=10, stackpos=1}

function onStepIn(cid, item, position, fromPosition)
	if item.uid == 33001 and item.itemid == 351 then
		doCreateItem(1353,1,stone)
	else
		doCreateItem(1353,1,stone)
	end
	return TRUE
end
 
Back
Top