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

Only one class can go through

Entral

C
Joined
May 1, 2009
Messages
371
Reaction score
0
Location
Sweden
Hello!
I have a place in my map that only sorcs can pass... is there any script that can make that only sorc can walk over?
thank u
 
Lua:
local noSorcererPos = {  -- where you get teleportet if you aren't a sorcerer
	x = XXX,
	y = YYY,
	z = Z
}

function onStepIn(cid, item, position, fromPosition)
	if isSorcerer(cid) == FALSE then
		doTeleportThing(cid, noSorcererPos, TRUE)
		doPlayerSendTextMessage(cid, 18, "Only sorcerers can pass.")
	end
	return TRUE
end
Not tested.
 
Back
Top