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

Lua Thing not found

Xleniz

New Member
Joined
Jul 6, 2009
Messages
178
Reaction score
3
Location
Sweden
whats wrong with this function, in talkactions?
getting error: (luaDoTeleportThing) Thing not found

Code:
function check(cid)
	if(getGlobalStorageValue(1337)==1) then
		doTeleportThing(cid, {x = 1611, y = 1283, z = 8}, true)
	end
end
 
Last edited:
whats wrong with this function, in talkactions?
(getting error: thing not found)

Code:
function check(cid)
	if(getGlobalStorageValue(1337)==1) then
		doTeleportThing(cid, {x = 1611, y = 1283, z = 8}, true)
	end
end


Should it be function OnSay?
 
Back
Top