just make a teleport infront of the VIP door...
function onUse(cid, item, frompos, item2, topos)
if getPlayerStorageValue(cid,11551) then
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...