I want the char name chicken have the curse effect all the time even if he has 0 pkpoints , or any effects i want it to show . the problem is i can see it in my monitor the effects but other players from other monitor dont see the effects im seeing.
Code:
if (client.Entity.Name.Contains("chicken"))
{
_String str = new _String(true);
str.UID = client.Entity.UID;
str.TextsCount = 1;
str.Type = _String.Effect;
str.Texts.Add("curse");
foreach (Client.GameClient Client in Kernel.GamePool.Values)
{
client.SendScreen(str);
}
}






