ALFA.Database.ACR_PCSave C# (CSharp) Метод

ACR_PCSave() публичный Метод

This routine performs a character save.
public ACR_PCSave ( uint PCToSave, bool Export, bool SaveLocation ) : void
PCToSave uint Supplies the object id of the player to /// save.
Export bool If true, save the character file to disk too. ///
SaveLocation bool If true, update the location of the /// player in the database.
Результат void
        public void ACR_PCSave(uint PCToSave, bool Export, bool SaveLocation)
        {
            DemandInitialize();

            ACR_PCSave_Method.Invoke(DBLibraryScript, new object[] { PCToSave, Export ? CLRScriptBase.TRUE : CLRScriptBase.FALSE, SaveLocation ? CLRScriptBase.TRUE : CLRScriptBase.FALSE });
        }