• 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 Door and premium dround

nicolasduarte

New Member
Joined
Oct 18, 2008
Messages
14
Reaction score
0
Hello! I need a script to a door where only players who have become premium account.
Thanks
Sorry my bad English (google translator APOSPASOPA ^_^).
 
Last edited:
Not tested just took it from a request!

PHP:
function onUse(cid, item, frompos, item2, topos)
	if item.uid == 10092 then
		if isPremium(cid) == 1 then
			doPlayerSendTextMessage(cid, 22, "You can enter!")
			pos = getPlayerPosition(cid)

			if pos.x == topos.x then
				if pos.y < topos.y then
					pos.y = topos.y + 1
				else
					pos.y = topos.y - 1
				end
			elseif pos.y == topos.y then
				if pos.x < topos.x then
					pos.x = topos.x + 1
				else
					pos.x = topos.x - 1
				end
			else
				doPlayerSendTextMessage(cid,22,'Please stand in front of the door.')
			return 1
			end

			doTeleportThing(cid,pos)
			doSendMagicEffect(topos,12)
		else
			doPlayerSendTextMessage(cid,22,'You can\'t pass, you are not premium.')
		end
		return 1
	else
	return 0
	end
end
 
Back
Top Bottom