ItemOption

03/28/2015 20:13 Juppi2000#1
Hi,

wozu ist die ItemOption.Shn/txt da?

Was wird da eingestellt und wofür ist die da?

LG Juppi
04/04/2015 09:31 Juppi2000#2
~~PUSH~~

Es kommt mir noch ne Frage: Was bedeutet "UnkColl" wozu ist die bezeichnung da?

Das wissen über die ItemOption fehlt mir noch immer, wer weiter weiß bitte melden. LG
04/04/2015 09:48 xKuray#3
UnkColl heißt doch UnknownCollum oder nicht? :/ #BinMirNichtSicher
04/04/2015 12:28 Deodex#4
ItemOption.shn/txt:
  • STR
  • GES
  • AUS
  • INT
  • KON
  • USW..

UnkCol:
Code:
foreach(Column in Columns)
{
    string tName = BinaryReader.ReadString(48);
    uint tTyoe = BinaryReader.ReadUInt32();
    int tLenght = BinaryReader.ReadInt32();

    if (tName.Length == 0 || String.IsNullOrWhiteSpace(tName))
    {
        tName = "UnkCol" + iUnkCols.ToString();
        UnkCols++;
    }
}
Was sagst uns das ?
  • Der SHNEditor liest alle Columns/Rows aus wenn der Name des Columns fehlt wird er automatisch fest gelegt und wird beim Speichern wieder als White Space eingetragen.