Trying to edit Kaga encounters in Fallout 2

Dr.JohnDoe

First time out of the vault
I am trying to make it so that I can encounter Kaga at any time regardless of level (ex. find him as a weak outcast while I'm level 12 or something), but I can't seem to find "glkagaen.int" nor his encounter tables.

Does anyone know what I'm doing wrong here?

I should probably mention I'm using the "Restoration Project Updated" version.
 
You need to extract worldmap.txt from rpu.dat to your "data\data\" directory, then you can simply remove the level checks. For example:
Code:
// original
enc_27=Chance:80%,Special,Enc:KAGA1 AMBUSH Player, If(Global(399) < 66) And If(Player(Level) < 5)

// edit
enc_27=Chance:80%,Special,Enc:KAGA1 AMBUSH Player, If(Global(399) < 66)
 
You need to extract worldmap.txt from rpu.dat to your "data\data\" directory, then you can simply remove the level checks. For example:
Code:
// original
enc_27=Chance:80%,Special,Enc:KAGA1 AMBUSH Player, If(Global(399) < 66) And If(Player(Level) < 5)

// edit
enc_27=Chance:80%,Special,Enc:KAGA1 AMBUSH Player, If(Global(399) < 66)

Thank you so much! I doubt I would have found the file without your help.
 
Back
Top