Added check for sfall version for gl_partycontrol and gl_npcarmor.

Changed version string because sfall 4.0 will be released in 'beta' stage first.
Minor edits to some documents.
This commit is contained in:
NovaRain
2017-05-23 22:28:42 +08:00
parent c2e6d743a3
commit 92b010f362
7 changed files with 32 additions and 36 deletions
Binary file not shown.
+1 -1
View File
@@ -72,7 +72,7 @@ end
procedure start begin
variable sect, sects, armorTypes, armorType, npc, pid, pids, i;
if game_loaded then begin
if game_loaded and (sfall_ver_major >= 4) then begin
register_hook_proc(HOOK_INVENWIELD, invenwield_handler);
register_hook_proc(HOOK_ADJUSTFID, adjustfid_handler);
Binary file not shown.
+1 -1
View File
@@ -38,7 +38,7 @@ procedure combatturn_handler begin
end
procedure start begin
if game_loaded then begin
if game_loaded and (sfall_ver_major >= 4) then begin
controlMode := GetConfig("CombatControl", "Mode", 0);
if (controlMode > 2) then controlMode := 0;
if (controlMode > 0) then begin
+1
View File
@@ -1 +1,2 @@
To install each mod, copy *.int file into your <Fallout Dir>\data\scripts\ folder.
For gl_npcarmor.int, you also need to copy npcarmor.ini to your Fallout directory.
-5
View File
@@ -437,7 +437,6 @@ int arg4 - 1 when wielding, 0 when unwielding
int ret1 - overrides hard-coded handler (-1 - use engine handler, any other value - override) - NOT RECOMMENDED
-------------------------------------------
HOOK_ADJUSTFID (hs_adjustfid.int)
@@ -451,7 +450,6 @@ int arg1 - the vanilla fid calculated by the engine according to critter bas
int ret1 - overrides the calculated FID with provided value
-------------------------------------------
HOOK_COMBATTURN (hs_combatturn.int)
@@ -464,7 +462,6 @@ int arg3 - unknown boolean argument
int ret1 - pass 1 at the start of turn to skip the turn, pass -1 at the end of turn to force end of combat
-------------------------------------------
HOOK_CARTRAVEL (hs_cartravel.int)
@@ -476,5 +473,3 @@ int arg2 - vanilla fuel consumption (100 and below)
int ret1 - car speed override (pass -1 if you just want to override fuel consumption)
int ret2 - fuel consumption override
+2 -2
View File
@@ -28,9 +28,9 @@
#define VERSION_REV 0
#ifdef WIN2K
#define VERSION_STRING "4.0 win2k"
#define VERSION_STRING "4.0 beta1 win2k"
#else
#define VERSION_STRING "4.0"
#define VERSION_STRING "4.0 beta1"
#endif
#define CHECK_VAL (4)