All right! I would like power armors to give 2 and 3 points to Strength instead of 3 and 4, and I'd like to do that with a global script. Here it is:
It doesn't work. Does anyone have an idea why? I haven't tried editing Perks.ini, but I'd rather not do that for compatibility reasons.
Code:
//gl_F2WRPowArmorNerf.int
procedure start;
#include "..\sfall.h"
procedure start begin
if(game_loaded) then begin
set_global_script_repeat(2);
set_global_script_type(1);
end else begin
//maybe this works?
set_perk_stat_mag(68, 2);
set_perk_stat_mag(69, 3);
//or maybe this works?
set_perk_str(68, 2);
set_perk_str(69, 3);
end
end
It doesn't work. Does anyone have an idea why? I haven't tried editing Perks.ini, but I'd rather not do that for compatibility reasons.