Skip to content

Commit d186774

Browse files
committed
Progress every day
- ModdersPack update (sfall-team/sfall@b852d6f) - Configuration refresh
1 parent bdbf7ab commit d186774

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

Fallout2/Fallout1in2/ddraw.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ StartingMap=V13ent.map
294294

295295
;To change the 'FALLOUT II v1.02d' version string on the main menu, uncomment the next line
296296
;You can use up to 2 %d's in this if you want to include Fallout's version number somewhere
297-
VersionString=FALLOUT ET TU v1.10.3517
297+
VersionString=FALLOUT ET TU v1.10.3518
298298

299299
;To use a config file other than fallout2.cfg, uncomment the next line and add the name of your new file
300300
;ConfigFile=

Tools/ModdersPack/config_files/sfall-mods.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ CheckLOS=1
2626
; You can set a custom color from the game palette by multiplying the color index value by 256 (in 4.2.7 or later)
2727
OutlineColor=16
2828

29-
; Set the color of outlines for corpses
30-
OutlineColorCorpses=4
31-
3229
; Set the color of outlines for containers
3330
OutlineColorContainers=4
3431

32+
; Set the color of outlines for corpses
33+
OutlineColorCorpses=4
34+
3535
; Motion Scanner mode:
3636
; 0 - ignored
3737
; 1 - requires Motion Sensor to be present in the player's inventory to activate highlighting
76 Bytes
Binary file not shown.

Tools/ModdersPack/mods/gl_highlighting.ssl

+5-4
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ variable alsoCorpse;
3636
variable alsoCritter;
3737
variable checkLOS;
3838
variable outlineColor;
39-
variable outlineColorCorpses;
4039
variable outlineColorContainers;
40+
variable outlineColorCorpses;
4141
variable motionScanner;
4242
variable highlightFailMsg1;
4343
variable highlightFailMsg2;
@@ -173,10 +173,11 @@ procedure start begin
173173
alsoCritter := GetConfig(configSection, "Critters", 0);
174174
checkLOS := GetConfig(configSection, "CheckLOS", 0);
175175
outlineColor := GetConfig(configSection, "OutlineColor", 16);
176-
outlineColorCorpses := GetConfig(configSection, "OutlineColorCorpses", 16);
177-
outlineColorContainers := GetConfig(configSection, "OutlineColorContainers", 16);
178-
179176
if (outlineColor < 1) then outlineColor := 64;
177+
outlineColorContainers := GetConfig(configSection, "OutlineColorContainers", 16);
178+
if (outlineColorContainers < 1) then outlineColorContainers := 64;
179+
outlineColorCorpses := GetConfig(configSection, "OutlineColorCorpses", 16);
180+
if (outlineColorCorpses < 1) then outlineColorCorpses := 64;
180181
motionScanner := GetConfig(configSection, "MotionScanner", 0);
181182

182183
highlightFailMsg1 := Translate("HighlightFail1", "You aren't carrying a motion sensor.");

Tools/ModdersPack/sfall_dat/sfall.dat

81 Bytes
Binary file not shown.
81 Bytes
Binary file not shown.
81 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)