Do you notice that when you chat(guild chat) with no guild you will get an error in the Console? If you don't experience, then try it, Guild chat with no Guild.
Now here's the release:
In World.cs find:
Replace it with:
And your done!
This only for people who can't manage to fix it.
Now here's the release:
In World.cs find:
Code:
if (ChatType == 2004)
{
Char.MyGuild.GuildMessage(Char, Message, To);
}
Code:
if (ChatType == 2004)
{
if (Char.MyClient.MyChar.MyGuild != null)
Char.MyGuild.GuildMessage(Char, Message, To);
}
This only for people who can't manage to fix it.