hey guys, so since my project have no reborn system i cant use the 2reborn effect that go on you every 10sec.
so i wane create something that when you hit level 140, you get that effect on you every 10sec
so far i came up with this
now if you guys can put me in the right track i will be thankful. never done anything like this.
so i wane create something that when you hit level 140, you get that effect on you every 10sec
so far i came up with this
Code:
#region level 140 effect
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("good"); // good is the effect folder name
client.SendScreen(str, true);
}
#endregion level 140 effect