Hacking? hm?

killaer

First time out of the vault
Ive heard somewhere on here that theres a program that you can use to mess arround with the game...
So I just created a character in Fallout II, and I wanted to shift one skill point to another skill...Right now I'm in Kalmath, and am wondering if this is possible.
Also, where can I get this, and will it cause my game to crash every five seconds? Will it invalidate my savegames? that kind of stuff.
 
So what you want to do is basically this:

Skill 1: 35%
Skill 2:45%

and you want it to be something like this:

Skill 1: 36%
Skill 2: 34%



Why would you want that? you could use Falche 2 for all your save game editing needs(but not inventory).
 
Oops sorry, what I maent was stat.
I want to move charisma to strength...how do I do this?

Edit: Okay downloading right now..by the way where can I find a copy of my savegame (sorry for my crappy knowledge :/)
 
You can do that with Falche too, or if you don't want to risk it, you could start the game over and reallocate your stats. That might actually be the better route, in my opinion. But it's your choice.

Edit: It's in C:\(Where you installed Fallout2)\DATA\SAVEGAME\SLOT(Number)\SAVE.DAT
 
killaer said:
I want to move charisma to strength...how do I do this?

Code:
procedure use_p_proc begin
script_overrides;
set_critter_stat(dude_obj,STAT_ch,-1);
set_critter_stat(dude_obj,STAT_st,1);
end
 
Back
Top