3 Commits
1.1.0 ... 1.1.1

Author SHA1 Message Date
mikx
fd893057f2 1.1.1 (Removed log file logic) 2025-10-13 16:07:12 -04:00
mikx
9eeea525d3 Readme Update 2025-10-12 23:25:42 -04:00
mikx
0ba8668d09 Readme edit with How-To 2025-10-12 23:24:55 -04:00
3 changed files with 19 additions and 8 deletions

View File

@@ -62,7 +62,6 @@ namespace Jsarus
str3 = num.ToString(); str3 = num.ToString();
} }
string str4 = string.Format("{0}:{1}:{2}", (object)str3, (object)str2, (object)str1); string str4 = string.Format("{0}:{1}:{2}", (object)str3, (object)str2, (object)str1);
File.AppendAllText("mxfiltergen.logs", string.Format("[{0}] {1}", (object)str4, (object)msg) + Environment.NewLine);
ConsoleColor consoleColor = ConsoleColor.White; ConsoleColor consoleColor = ConsoleColor.White;
switch (color) switch (color)
{ {

View File

@@ -14,7 +14,7 @@ namespace Jsarus
{ {
internal class Program internal class Program
{ {
public static string version = "1.1.0"; public static string version = "1.1.1";
public static string cd = Directory.GetCurrentDirectory(); public static string cd = Directory.GetCurrentDirectory();
public static Process p = new Process(); public static Process p = new Process();
static void Main(string[] args) static void Main(string[] args)

View File

@@ -1,4 +1,4 @@
# ![logo](https://mxdev.ovh/wp-content/uploads/2025/09/mxdev-1.png) ![logo](https://mxdev.ovh/wp-content/uploads/2025/09/mxdev-1.png)
## Jsarus ## Jsarus
Official MxIcarus Modding Tool for Icarus. Official MxIcarus Modding Tool for Icarus.
@@ -8,3 +8,15 @@ Official MxIcarus Modding Tool for Icarus.
* Mod your extracted json data according to the settings.json config. * Mod your extracted json data according to the settings.json config.
* Create a pak file, ready to use on your client/server. * Create a pak file, ready to use on your client/server.
* Can copy the created pak file to a user specified list of path. * Can copy the created pak file to a user specified list of path.
## How-To
1. Download the latest release. (https://mxgit.ovh/Icarus/Jsarus/releases)
2. Copy the archive content in an empty folder on your disk.
3. Open "settings.json" and edit the "ModName" and "GameContentPath".
4. IMPORTANT: Escape "\" in your path with "/". Ex.: "C:\/SteamLibrary\/steamapps\/common\/Icarus\/Icarus\/Content"
5. Save the "settings.json" file and run "Jsarus.exe".
6. Jsarus will extract your game data, press "y" when asked to mod it and generate a mod pak.
7. Copy the created pak file from the "Paks" folder to your game "mods" folder.
8. "mods" location exemple: "C:\SteamLibrary\steamapps\common\Icarus\Icarus\Content\Paks\mods"
9. If you don't have a "mods" folder, create one first.
10. Voila!