Updated some documents

This commit is contained in:
NovaRain
2023-07-03 15:39:56 +08:00
parent f42b232e19
commit 9f6ca9d55d
5 changed files with 10 additions and 6 deletions
+3 -3
View File
@@ -1,11 +1,11 @@
/**
Item Highlight mod
Item Highlighting mod
Previously was part of sfall itself, now a separate mod.
Features:
- highlighting items, containers (optional) and lootable corpses (optional) on the ground
- highlighting critters using the same rules as combat mode highlighting (optional)
- highlights items, containers (optional) and lootable corpses (optional) on the ground
- highlights critters using the same rules as combat mode highlighting (optional)
- configurable hotkey is used to trigger highlight
- hotkey can be pressed and held to continuously update highlighted objects based on current position
- only objects in direct line-of-sight of player are highlighted (optional)
+3
View File
@@ -1,2 +1,5 @@
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.
gl_highlighting.int and gl_partycontrol.int are already included in sfall.dat.
You don't usually need to install them separately.
@@ -356,6 +356,7 @@ There are several changes in this version of sslc which may result in problems f
- fixed optimizer not treating `call string_variable` as variable use
- fixed unused arguments in a procedure being removed incorrectly by the optimizer
- fixed unused string literals in an optimized-out procedure not being removed by the optimizer
- fixed `get_array` syntax not working for exported variables
**sfall 4.2.9:**
- added support for additional universal opcodes `sfall_func7` and `sfall_func8`
+1 -1
View File
@@ -930,7 +930,7 @@ sfall_funcX metarule functions
----
#### string_format
`string sfall_func2("string_format", string format, any val1)`
`string sfall_func2("string_format", string format, any val1)`\
`string sfall_funcX("string_format", string format, any val1, any val2, ...)`
- Formats given values using standard syntax of C `printf` function (google "printf" for format details). However, it is limited to formatting up to 7 values
- The format string is limited to 1024 characters