0 of 0

File information

Last updated

Original upload

Created by

EpicStoffer

Uploaded by

Stoffer55000

Virus scan

Safe to use

Tags for this mod

Documentation

Readme

View as plain text

Steal Rarest Items First:

This is a simple mod, that allows you to always steal the rarest item first.
As with all modifications, consider making a backup of your file before you modify it.



Drag'n'Drop installation:
Installation is as easy as drag'n'dropping a single file into your gamefolder at the following location:

Just drop the file called "0058_StealScript.cs" into the following location, and press Yes to override

C:\Steam\steamapps\common\FINAL FANTASY IX\StreamingAssets\Scripts\Sources\Battle\

Enjoy being able to always steal the rarest items first!



Manual Edit Route:

To make it so that you steal in order of the rarest items first:

Step 1. Go to:
C:\Steam\steamapps\common\FINAL FANTASY IX\StreamingAssets\Scripts\Sources\Battle\0058_StealScript.cs and open it with your text editor of choice (I just used Notepad).

Step 2. Find the first section that has the lines with "enemy.StealableItems", and overwrite it with this copy paste:
if (enemy.StealableItems[3] != Byte.MaxValue)
StealItem(enemy, 3);
else if (enemy.StealableItems[2] != Byte.MaxValue)
StealItem(enemy, 2);
else if (enemy.StealableItems[1] != Byte.MaxValue)
StealItem(enemy, 1);
else
StealItem(enemy, 0);

return;


Step 3. Enjoy



-EpicStoffer