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

I need 2 script with Teleport

lajrek34a

New Member
Joined
Sep 15, 2009
Messages
117
Reaction score
0
1)Teleport woth 3 random posiotion
2)Teleport when i use box or dp chest

Please help me i need it! :S
 
Lua:
	RandomPos = {
		[1] = {x=1, y=1, z=1},
		[2] = {x=1, y=1, z=1},
		[3] = {x=1, y=1, z=1},
}
function onStepIn(cid, item, position)
	return doTeleportThing(cid, RandomPos[math.random(1, #RandomPos)])
end
 
Back
Top