So I been writing hours of different codes, trying and testing over and over and decided to see if anyone here has the golden hint. The effect does appear, however when people jump out screen and back.. it's gone. and it will take a moment before it will appear again. Thanks in advance.
Code:
try
{
byte servermin = ServerTime.Minute;
if (servermin % 1 == 0)
{
foreach (Game.Character C in Game.World.H_Chars.Values)
{
if (C.VipLevel >= 5)
{
if (!C.VIPAura)
{
C.VIPAura = true;
Game.World.Action(C, (Packets.String(C.EntityID, 10, "2NDMetempsychosis")).Get);
}
else
{
Game.World.Action(C, (Packets.String(C.EntityID, 10, "none")).Get);
Game.World.Action(C, (Packets.String(C.EntityID, 10, "2NDMetempsychosis")).Get);
}
}
}
}
}
catch { }