• 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!

Help here

Stewie

Family Guy # ;3
Joined
May 3, 2010
Messages
786
Reaction score
12
Location
TV
Hi Otlanders,i would like a script VIP,each 1 minute show VIP in player,how this img

2802u0k.png




Code:
if vip.hasVip(cid) == TRUE then

Thx,im REP +
 
XML:
<globalevent name="vipeffect" interval="60" event="script" value="name_of_script.lua"/>
LUA:
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
 
Back
Top