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

Vip

bomba

Member
Joined
Feb 26, 2008
Messages
635
Reaction score
7
Location
Brazil
Don't are working:

Code:
function onStepIn(cid, item, position, fromPosition)

local = {x = 59, y = 45, z = 6}
efeito = getPlayerPosition(cid)
vip = 	getPlayerAccess(uid)

if item.actionid == 3636 and vip <= 1 then
doTeleportThing(cid, local)
doSendMagicEffect(efeito, 12)
doPlayerSendTextMessage(cid,22,"Você precisa ser VIP para passar.")
else
end
end

-Forgotten-serv
 
PHP:
function onStepIn(cid, item, position, fromPosition)

  pos = {x=59, y=45, z=6}
  efeito = getPlayerPosition(cid)
  vip = getPlayerAccess(uid)

  if item.actionid == 3636 and vip <= 1 then
    doTeleportThing(cid, pos, 1)
    doSendMagicEffect(efeito, 12)
    doPlayerSendTextMessage(cid,22,"Você precisa ser VIP para passar.")
  end
  return 1
end

And you maybe mean ">= 1" ? :D
 
Back
Top