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

click the item and turn the city dweller

president vankk

Web Developer & AuraOT Owner
Joined
Jul 10, 2009
Messages
5,719
Solutions
9
Reaction score
339
I wanted a script that when you use it on a statue, you turn the city dweller

rep+:wub:
 
try it
PHP:
local statue = 1003  --uid statue
local pos = {x=1000,y=1000,z=7}

function onUse(cid, item, fromPosition, itemEx, toPosition)
	if(itemEx.uid==statue)then
		 doTeleportThing(cid, pos, TRUE)
	else
	doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Sorry")
	end
	return true
end


<action itemid="10515" event="script" value="test.lua"/>

tested
 
Last edited:
Back
Top