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

Premium Only Tiles(REP++)

Ward_214

Pro PvP
Joined
Dec 11, 2008
Messages
297
Reaction score
0
I need a script that makes these tiles in the following image to be PREMIUM only... Thanks!


Premiumonlytiles.jpg
 
Code:
local pos = {x = 32060, y = 32193, z = 7}
 --Position where player gets teleported if he DOES NOT HAVE premium
function onStepIn(cid, item, position, fromPosition)
	if(not(isPremium(cid))) then
		doTeleportThing(cid, pos)
		doSendMagicEffect(pos, CONST_ME_TELEPORT)
	end
	return true
end
Code:
<movevent type="StepIn" actionid="9922" event="script" value="Premtile.lua"/>

Found using search...
 
Back
Top