• 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 premium system

semary

[BB] OTland
Joined
May 3, 2009
Messages
813
Reaction score
18
Location
E G Y P T
i request premium system NOT VIP SYSTEM

please don't say search or edite ect

-i want premium system + title like on rookguard ppls cant pass if they are not premy.

-Items on click on it give u premy items id 5785

please rember i dont want it vip system

so the site show if he is premy ect and outfits for premy
thats why i need premium system

REP+
 
Lua:
function onStepIn(cid, item, position, fromPosition)
	if(item.actionid == 40020 and not isPremium(cid)) then
		doTeleportThing(cid, fromPosition)
		doSendMagicEffect(position, CONST_ME_MAGIC_BLUE)
		doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You don't have a premium time.")
	end
	return true
end
test in 0.3.6
 
redbull
Lol
There is a few posts with this scripts in this thread... He need script that TP a pacc player, and tp facc p[layer but to other positions...
 
Give a tile the actionid.

Code:
<movevent type="StepIn" actionid="[B]15021[/B]" event="script" value="[B]SCRIPT_NAME[/B].lua"/>

Lua:
function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition, actor)
	if item.itemid == 106 then -- EDIT TO TILE ITEMID
		if isPremium(cid) then
		local pos = {x=995,y=1034,z=7} -- PACC TP
			doTeleportThing(cid,pos)
			doSendMagicEffect(pos,10)
		elseif(not isPremium(cid))  then
		local pos = {x=995,y=1037,z=8} -- FACC TP
			doTeleportThing(cid,pos)
			doSendMagicEffect(pos,10)
		return true
		end
	else
		return false
	end
end
 
Back
Top