• 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]Teleport item

clone

New Member
Joined
Jun 16, 2007
Messages
412
Reaction score
1
i want a teleport item that teleports u to a certain coordinate not needing to check white skull or pz lock and i want a seperate one that checks for white skull and pz lock.
 
Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	local newPos = {x=1, y=2, z=3}
	doTeleportThing(cid, newPos, FALSE)
end

If you want check skull:
Code:
if getPlayerSkullType(cid) ~= SKULL_WHITE then
   --
end
 
Back
Top Bottom