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

Need GM to go through teleport.

bielzin

Scripter, Retired Mapper
Joined
Jul 29, 2009
Messages
103
Reaction score
2
Location
At Home
I need help guys, i want to make a teleport that u need to have the group id of a minimum of 4 to go through. Can anyone help me please?
I'm using TFS 0.3.6
 
Try this:) And remember to add the actionid in movements and on your teleport!

Lua:
function onStepIn(cid, item, frompos, itemEx, topos)
	local getAccess = getPlayerGroupId(cid)
	if getAccess <4 then
	doPlayerSendCancel(cid, "Sorry you must have Group ID 4 or above to enter.")
	return true
	end
	end
 
Last edited:
Back
Top