Sign in to follow this  
JumpStationZ

MOD:AI's Hard Core Mod

Recommended Posts

AI's Hard Core Mod


Part of the...

5luQymB.png

If you just want to use the altered scripts as they are, open the archive with WinRAR or some other application capable of extracting RAR files. Then drag all the files from the compiled(override) folder inside the archive into your game's override folder.

If you don't have an override folder, create a new folder named override in the folder containing the swkotor2.exe file.


If you want to alter the scripts to combine them with beancounter's hardcore mod, you'll have to add two lines in the k_ai_master.nss script as described.

Go to line 155, which should look like...

code:
DelayCommand(fDelay, GN_DetermineCombatRound());


Put the cursor at the end of this line and press return to make a new line, and on this new blank line, paste in

code:
if (!GetPlayerRestrictMode() && !GetFeatAcquired(FEAT_IMPLANT_LEVEL_1)) {
    Hardcore_Mod();
}


Then scroll up to the top of the file and go to line 13, which should looke like...

code:
#include "k_inc_utility"


Put the cursor at the end of line 13 and hit return to add a new line below it. On this new line, paste in

code:
#include "Hardcore_Mod"

 

Then you need to recompile the k_ai_master.nss script you just modified to get an NCS file that the game can use.

To do this you need the nwnnsscomp.exe utility. Check the tutorial section at the top of the forum, I think there's a description there about how to compile scripts. Make sure you place any source (NSS) scripts that came with the hardcore mod in the same folder as the scripts from this mod before you try to recompile.

Since I don't use the hardcore mod myself I haven't personally tested if this works, but from what I've heard from others, it appears to work fine.


 

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Sign in to follow this