LobbyServer.RpcFile.FileManager.SaveInfo C# (CSharp) Method

SaveInfo() public method

public SaveInfo ( int AcctId, int id, string WorldName, string CharName, byte Info ) : void
AcctId int
id int
WorldName string
CharName string
Info byte
return void
        public void SaveInfo(int AcctId, int id, string WorldName, string CharName, byte[] Info)
        {
            if (WorldName.Length <= 0 || CharName.Length <= 0) SaveInfo(AcctId, id, Info);
            else
            {
                Log.Info("FileManager", "SaveInfo: " + AcctId + " | " + WorldName + " | " + CharName);
                ConfigFile Conf = GetFile(AcctId, id, false, WorldName, CharName);
                if (Conf != null) Conf.Write(Info);
            }
        }
    }

Same methods

FileManager::SaveInfo ( int AcctId, int id, byte Info ) : void