• 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 - rep+

enriel

Big L
Joined
Dec 14, 2007
Messages
1,254
Reaction score
2
Location
Montenegro
How does VIP system work? Something like, you buy 10 days VIP and you can acces VIP towns etc, where to get this script? :p Like: VIP with Premiums
 
Last edited:
How does VIP system work? Something like, you buy 10 days VIP and you can acces VIP towns etc, where to get this script? :p Like: VIP with Premiums

here you go
This is for Tfs 0.2
Data/action
Code:
function onUse(cid, item, frompos, item2, topos)
	doSendAnimatedText(getPlayerPosition(cid), "Welcome!", TEXTCOLOR_RED) 
	doCreatureSay(cid, "CONGRATULATIONS! You are now a VIP! You can now enter the VIP-area and use unique features!. ", TALKTYPE_ORANGE_1)
	setPlayerStorageValue(cid, 11551, 1)
	doRemoveItem(item.uid, 1)
	return TRUE
end

and you also need a door
Code:
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, "Sorry, but only VIP Players can pass here! Buy VIP on the WEB!. ", TALKTYPE_ORANGE_1)
else
doTeleportThing(cid, area,0)
doSendMagicEffect(topos, 12)
doCreatureSay(cid, "Hiho VIP Player!", TALKTYPE_ORANGE_1)
end
end
return 1
end

Btw : 200 post's :D
 
Back
Top