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

bomba

Member
Joined
Feb 26, 2008
Messages
635
Reaction score
7
Location
Brazil
Now I'm access 3 and not pass.

PHP:
function onUse(cid, item, frompos, item2, topos)
    vip = {x=122, y=43, z=8}
    access = getPlayerAccess(cid)
    needaccess = 1
  if item.uid == 2201 and access >= needaccess then
    doTeleportThing(cid,vip)
    doSendMagicEffect(vip,10)
    doPlayerSendTextMessage(cid,22,"Você foi teleportado para a area VIP.")
  else
    doPlayerSendCancel(cid,"Você precisa ser VIP para passar.")
  end
  return 1
  end

:(
 
PHP:
function onUse(cid, item, frompos, item2, topos)
local vip = {x = 122, y = 43, z = 8}
local access = getPlayerAccess(cid)
local needaccess = 1
    if item.uid == 2201 and access >= needaccess then
        doTeleportThing(cid, vip, FALSE)
        doSendMagicEffect(vip, 10)
        doPlayerSendTextMessage(cid, 22, "Voce foi teleportado para a area VIP.")
    else
        doPlayerSendCancel(cid,"Voce precisa ser VIP para passar.")
    end
    return TRUE
end
 
Back
Top