we are running the newest servUO repo and I can not fo the life of me get the factions out properly in the ACC system! Can someone please help me before I go completely insane! As far as I can tell it is only in this script that it needs to be removed but if there is more I will ask again later! Thank you in advance to anyone willing to help me out!
 

Attachments

  • ACC Systems.zip
    26.4 KB · Views: 2
They removed Fractions in the newest repo, either go back to the last ServUO released prior to there update or remove all reference to Fractions from ACC!
 
If you intend to use the Vice versus Virtue system, just removing references to factions isn't enough.

VvV still uses sigils so, for example, you'd replace the default faction sigil check ..

C#:
if ( Server.Factions.Sigil.ExistsOn( m_From ) )

.. with:

C#:
if (Server.Engines.VvV.VvVSigil.ExistsOn(m_From))

You'll also need to replace using Server.Factions; with using Server.Engines.VvV; and so forth.

If you're not interested in VvV, just removing faction references will be enough (obviously).
 
Back