function onThink(interval, lastExecution, thinkInterval)
for _, cid in ipairs(getPlayersOnline()) do
if vip.hasVip(cid) then
local v = getThingPos(cid)
doSendMagicEffect(v, CONST_ME_GIFT_WRAPS)
doSendAnimatedText(v, 'VIP!', math.random(255))
end
end
return true
end