Dan(Tasanar)

Moderator
I went through and removed all references to faction.map in Notority.cs and PlayerMobile.cs

They now show orange to eachother and the VvV tag on all facets but when attacked nothing happens. Just a nudge in the right direction would be appreciated.
 
in Notoriety.cs, AllowHarmful, you need this check:

Code:
if (ViceVsVirtueSystem.Enabled)
            {
                if (ViceVsVirtueSystem.IsEnemy(from, target))
                {
                    return true;
                }
            }
 
Back