Jump to content


PARM SFO Editor 1.0.0


¿Quieres enterarte al momento de las nuevas descargas? Síguenos en Twitter o Mastodon!
Ayúdanos con el mantenimiento de la web con una donación vía Paypal.

How To Use

Loading the SFO File

  var psfo = new Param_SFO.PARAM_SFO("Location of SFO");

Check which console the sfo is for

  Param_SFO.PARAM_SFO.Playstation version = psfo.PlaystationVersion;

A Couple of standard paramaters can be gathered from the SFO

  • Paramater    Description
  • APP_VER    Retruns the app version represented as a string value
  • Attribute    Attribute from the Param file
  • Category    Gets the category from the param file (differs per console)
  • ContentID    
  • DataType    
  • Detail    
  • PlaystationVersion    Retruns what console this sfo came from
  • Title    Gets the Title Of the Current Game
  • TitleID    Returns the TITLEID before the first split ('-')
  • TITLEID    Gets the Title ID Of the Current Game

Getting Anything else

    for (int i = 0; i < psfo.Tables.Count; i++)
    {
        if (psfo.Tables[i].Name == "Content we are looking for ")
        {
           //get the value 
           string value = psfo.Tables[i].Value;
        }
    }


Editing a value

    for (int i = 0; i < psfo.Tables.Count; i++)
    {
      if (psfo.Tables[i].Name == "TITLE_ID")
      {
          var tempitem = psfo.Tables[i];
          tempitem.Value = txtTitleId.Text.Trim();
          psfo.Tables[i] = tempitem;
      }
    }

68747470733a2f2f7062732e7477696d672e636f6d2f6d656469612f446b7a494a3261586f4141416836383f666f726d61743d6a7067266e616d653d6c61726765.jpeg

by xXxTheDarkprogramerxXx.


No te pierdas nada, síguenos en Twitter o Mastodon!
Preguntas, aportes y peticiones en el foro.
Si te sirve lo que hacemos, ayúdanos con el mantenimiento de la web con una donación vía Paypal.

×
×
  • Crear nuevo...