Fougerite Official

Fougerite Official 1.9.2

No permission to download
Somehow it's not attaching a new zip file. Let me try again.
Newest IronPythonModule now included.
  • Like
Reactions: [K4N]Uslanmaz[PRO]
  • Like
Reactions: [K4N]Uslanmaz[PRO]
Changes since 1.0.7:
  • Removed sample admin.xml and whitelist.xml from Rust++.
  • Zone3D uses a separate Hastable from DataStore.
  • DataStore no longer tries to serialize Vector3.
  • SafeTeleportTo uses a timer for 2nd safety teleport, instead of sleep. Much smoother. Checks slope for steepness. Other fixes.
  • Fixed harmless exception from /loadout command.
  • DataStore has two new methods:
  • DataStore.ToIni(string tablename, IniParser ini);
  • DataStore.FromIni(string tablename, IniParser ini);
  • Values from ini are cast back to float, int, bool, or null from string when loading to DataStore.
  • The filename of the ini doesn't have to match the name of the DataStore table. The table name is stored as a [Section] in the ini.
Use like this:
JavaScript:
var ini = Plugin.CreateIni("saveTable");
DataStore.ToIni("someTable", ini);

if (Plugin.IniExists("otherSave")) {
    var ini = Plugin.GetIni("otherSave");
    DataStore.FromIni("otherTable", ini);
}
  • Like
Reactions: [K4N]Uslanmaz[PRO]
  • Like
Reactions: [K4N]Uslanmaz[PRO]