• 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 Script.. Animated

GMBear

chaos revived Owner
Joined
Jan 28, 2008
Messages
575
Reaction score
2
Location
New york
Hey Im looking for a VIP script that has these features

  • Gives 20 days of VIP time
  • Every 3 seconds It sends a anitmated text saying VIP! and does colorfull sparkels. (few pic on bottom of post)
  • And you must have VIP to get passed door
  • You get teleported to 1000 998 7 when VIP is gone (not needed but would be cool if u can do)

2rxfhft.jpg
[/IMG]
MSN: [email protected]
 
Effects on Player -- Not Tested

data/creaturescripts/scripts/vip.lua
Lua:
local timeEffect = 10 -- Seconds for effects
local status = 12345 -- Storage for VIP
local playerVip = getPlayerStorageValue(cid, status)
function onLogin(cid)
    if getPlayerStorageValue(cid, status) == TRUE then
	doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Welcome back VIP ".. getCreatureName(cid) ..".")
	addEvent(special, timeEffect * 1000)
    end
    return TRUE
end

local function special()
    if playerVip == TRUE then
	doSendAnimatedText(getCreaturePosition(cid), "VIP!", TEXTCOLOR_RED)
    end
end
 
Back
Top