i tryed to code something that if i kill a mob called "DarkLord" then i will that there appears a world message like "Playername" has killed the "DarkLord" the "1" time.
ok now thats my code and if i kill the mob namen DarkLord i dont get a worldmsg, would be nice if someone could help me
Code:
if (this.Name == "DarkLord")
{
Target.Killed += 1;
World.SendMsgToAll("Wow! " + Target.Name + " Has Killed the DarkLord " + Target.Killed.ToString() + " Times!", "Server", 2011);
}






