zerodowned

Moderator
I'm trying to set it so Chaos and Order guilds are automatically at war or allied.

So far I havent had any luck by automating the acceptance of war when creating a guild
 
Hello!

something like this might do the trick find allow harmfull method:


Code:
if (from.Guild != null && target.Guild != null && from.Guild.Type != Guilds.GuildType.Regular && target.Guild.Type != Guilds.GuildType.Regular && from.Guild.Type != target.Guild.Type)
{
return true;
}

you have to make another check to MobileNotoriety method, hope it helps
 
Back