I'm not familiar with making commands of this sort..
So could someone edit this and post it back to me?
I just need it to work this way.. if i type /congratulate vortex.. for example
I want a message to appear (2011) Congratulations to Vortex for wining the event..
Don't flame.. I'll possibly learn from this..
Thanks
Vortex
P.S If your still gonna flame, remember some of you cant even spell congratulate
So could someone edit this and post it back to me?
Code:
if (Splitter[0] == "/congratulate")
{
foreach (DictionaryEntry DE in World.AllChars)
{
Character Char = (Character)DE.Value;
if (Splitter[1] == Char.Name)
{
World.SendMsgToAll("", "", 2011);
}
}
}
I want a message to appear (2011) Congratulations to Vortex for wining the event..
Don't flame.. I'll possibly learn from this..
Thanks
Vortex
P.S If your still gonna flame, remember some of you cant even spell congratulate