• 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 and Pacc

UpAndDown

New Member
Joined
Mar 12, 2009
Messages
66
Reaction score
0
Hey, I wondered how I can transfer the name of "Premium Account" into VIP Account. And also, what is the storage ID of pacc, so I can make a door that only opens if you're vip/pacc.

Sincerely,
UpAndDown.
 
Use that script for it, and Rep++ me if it worked, thanks!

Vip DOOR

function onUse(cid, item, frompos, item2, topos)
if item.uid == 11551 then -- This number you will imput into map editor for the door you wish
queststatus = getPlayerStorageValue(cid,11551) -- Quest number that needs to be COMPLETE.
area = {x=2283, y=833, z=6} -- If that above quest is complete, It will teleport you here.
if queststatus == -1 then
doCreatureSay(cid, "Oops, you need to be VIP inorder to pass here, buy VIP from the website.", TALKTYPE_ORANGE_1)
else
doTeleportThing(cid, area,0)
doSendMagicEffect(topos, 12)
doCreatureSay(cid, "Welcome to the VIP Area!", TALKTYPE_ORANGE_1)
end
end
return 1
end
 
Back
Top