Edited some wording in ddraw.ini and Enums.h

This commit is contained in:
NovaRain
2020-02-07 10:03:16 +08:00
parent a3f22b67d8
commit 537bea45c0
3 changed files with 12 additions and 11 deletions
+3 -3
View File
@@ -119,7 +119,7 @@ ActionPointsBar=0
;The resolution of hi-res patch must be set to at least 890x720
ExpandWorldMap=0
;Set to 1 to enable drawing a dotted line when traveling on the world map (similar to Fallout 1)
;Set to 1 to draw a dotted line while traveling on the world map (similar to Fallout 1)
WorldMapTravelMarkers=0
;Uncomment these lines to change the appearance of the markers
;The color index in Fallout default palette (valid range: 1..255; default is 134)
@@ -262,11 +262,11 @@ UseFileSystemOverride=0
;Modified: master_patches > critter_patches > patchXXX.dat > critter_dat > f2_res_patches > f2_res_dat > master_dat
DataLoadOrderPatch=1
;Set to 1 to enable loading alternative dialog msg files from text\<language>\dialog_female\ for female PC
;Set to 1 to load alternative dialog msg files from text\<language>\dialog_female\ for female PC
;Set to 2 to also load subtitle files from text\<language>\cuts_female\ for female PC
FemaleDialogMsgs=0
;Set to 1 to enable using the special '^' character in dialog msg files to specify the alternative text
;Set to 1 to allow using the special '^' character in dialog msg files to specify the alternative text
;that will be displayed in the dialogue based on the player's gender
;The text must be enclosed in angle brackets (example: <MaleText^FemaleText>)
DialogGenderWords=0
+2 -1
View File
@@ -98,7 +98,8 @@
#define CFLG_FLATTN 2048 // 0x00000800 - Flatten (leaves no dead body)
#define CFLG_SPECIAL 4096 // 0x00001000 - Special (has a special type of death)
#define CFLG_RANGED 8192 // 0x00002000 - Range (has extra hand-to-hand range)
#define CFLG_NOKNOCKDOWN 16384 // 0x00004000 - Knock (cannot be knocked back)
#define CFLG_NOKNOCKBACK 16384 // 0x00004000 - Knock (cannot be knocked back)
#define CFLG_NOKNOCKDOWN CFLG_NOKNOCKBACK // for old scripts
/* Window flags */
#define WIN_FLAG_MOVEONTOP (0x4)
+7 -7
View File
@@ -97,14 +97,14 @@ enum CritterFlags : long
Level = 0x04, // Level received ?
Addict = 0x08, // Drug addiction ?
NoSteal = 0x20, // Can't be stolen from
NoDrop = 0x40, // Doesn't drop items
NoDrop = 0x40, // Can't Drop items
NoLimbs = 0x80, // Can't lose limbs
DeadAges = 0x100, // Dead body does not disappear
NoHeal = 0x200, // Damage is not healed with time
Invlunerable = 0x400, // Is Invlunerable (cannot be hurt)
NotFlattens = 0x800, // Doesn't flatten on death (leaves no dead body)
SpecialDeath = 0x1000, // Has a special type of death
RangeHth = 0x2000, // Has extra hand-to-hand range
NoAges = 0x100, // Dead Bodies Can't Age
NoHeal = 0x200, // Can't Heal by Aging
Invulnerable = 0x400, // Is Invulnerable (cannot be hurt)
NoFlatten = 0x800, // Can't Flatten on Death (leaves no dead body)
SpecialDeath = 0x1000, // Has Special Death
RangeHth = 0x2000, // Has Extra Hand-To-Hand Range
NoKnockBack = 0x4000, // Can't be knocked back
};