• 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 Doors.

anubis131

New Member
Joined
Nov 4, 2009
Messages
117
Reaction score
0
Location
england
hello i just got VIP fixed thanks to someone helping me but when i right click the door to go in vip it says door is locked how can i fix this?
 
Code:
data\actions\scripts\quest\VIP Door1.lua
PHP:
function onUse(cid, item, frompos, item2, topos)
if item.uid == 11552 then -- This number you will imput into map editor for the door you wish
queststatus = getPlayerStorageValue(cid,11552) -- Quest number that needs to be COMPLETE.
area = {x=996, y=992, z=7} -- If that above quest is complete, It will teleport you here.
if queststatus == -1 then
doCreatureSay(cid, "You don't have Vip Access! Buy Vip Access in sms shop.", TALKTYPE_ORANGE_1)
else
doTeleportThing(cid, area,0)
doSendMagicEffect(topos, 12)
doCreatureSay(cid, "Welcome on Vip Land!", TALKTYPE_ORANGE_1)
end
end
return 1
end
Code:
data\actions\scripts\actions.xml
PHP:
	<action uniqueid="11552" script="quests/VIP Door1.lua"/>
 
Back
Top