i got this mod in my server and it doesnt do anything i dont get any errors either
PHP:
<?xml version="1.0" encoding="UTF-8"?>
<mod name="VIP_indicator" version="1.0" author="Syntax" contact="otland.net" enabled="yes">
<globalevent name="Core_Indicator" interval="60" event="buffer"><![CDATA[
for _, pid in ipairs(getPlayersOnline()) do
if getPlayerPremiumDays(cid) > 0 then
doSendAnimatedText(getCreaturePosition(pid), "VIP", COLOR_GREEN)
doSendMagicEffect(getCreaturePosition, CONST_ME_GIFT_WRAPS)
end
end
]]></globalevent>
</mod>