first of all i want to say that i know this is not the best way, its for testing.
i created a code which will use this effect on you every 5 sec, and idk whats wrong but it keep using every 60 sec = 1min.
i rly dont understand why? here is the code
any idea why?
i created a code which will use this effect on you every 5 sec, and idk whats wrong but it keep using every 60 sec = 1min.
i rly dont understand why? here is the code
Code:
if (DateTime.Now.Second <= 05 && DateTime.Now.Second <= 00)
{
if (client.Entity.Level == 140)
{
_String str = new _String(true);
str.UID = client.Entity.UID;
str.TextsCount = 1;
str.Type = _String.Effect;
str.Texts.Add("break_start");
client.SendScreen(str, true);
}
}
any idea why?