ACR_ServerCommunicator.ACR_ServerCommunicator.EnableCharacterSave C# (CSharp) Method

EnableCharacterSave() private method

This method asks the vault plugin to remove any blackhole to stop character saves for a given file name.
private EnableCharacterSave ( uint PlayerObjectId ) : bool
PlayerObjectId uint Supplies the PC object whose saves are /// to be reinstated.
return bool
        private bool EnableCharacterSave(uint PlayerObjectId)
        {
            if (NWNXGetInt(
                "SERVERVAULT",
                "ENABLE CHARACTER SAVE",
                GetBicFileName(PlayerObjectId).Substring(12) + ".bic",
                0) == FALSE)
            {
                WriteTimestampedLogEntry("ACR_ServerCommunicator.EnableCharacterSave(): FAILED to enable character save for " + GetName(PlayerObjectId) + "!");
                return false;
            }

            return true;
        }
ACR_ServerCommunicator