mirror of
https://github.com/sfall-team/sfall.git
synced 2026-07-27 16:52:34 -07:00
Edited the documents for set_world_map_heal_time
Minor code edits to Worldmap.cpp.
This commit is contained in:
@@ -1425,15 +1425,17 @@
|
||||
macro: sfall.h
|
||||
- name: set_rest_heal_time
|
||||
detail: void set_rest_heal_time(int time)
|
||||
doc: 'Sets the time interval in minutes for healing during resting. The default is 180. Note: The interval will be reset each time the player reloads the game.'
|
||||
doc: |
|
||||
Sets the time interval in minutes for healing during resting. The default is 180
|
||||
- the time interval will be reset each time the player reloads the game
|
||||
macro: sfall.h
|
||||
- name: set_worldmap_heal_time
|
||||
detail: void set_worldmap_heal_time(int time)
|
||||
doc: |
|
||||
Sets the time interval in minutes for healing during worldmap travel.
|
||||
- passing 0 will revert to 1 second per real time (vanilla behavior)
|
||||
Sets the time interval in minutes for healing during world map travel
|
||||
- passing 0 will revert to 1 second in real time (vanilla engine behavior)
|
||||
- passing -1 will disable healing during travel
|
||||
- the interval will be reset each time the player reloads the game
|
||||
- the time interval will be reset each time the player reloads the game
|
||||
macro: sfall.h
|
||||
- name: set_rest_mode
|
||||
detail: void set_rest_mode(int flags)
|
||||
|
||||
@@ -528,7 +528,7 @@
|
||||
- name: CarTravel
|
||||
id: HOOK_CARTRAVEL
|
||||
doc: |
|
||||
Runs continuously during worldmap travel on car.
|
||||
Runs continuously during world map travel by car.
|
||||
|
||||
```
|
||||
int arg0 - vanilla car speed (between 3 and 8 "steps")
|
||||
|
||||
@@ -606,7 +606,7 @@ int ret0 - pass 1 at the start of turn to skip the turn, pass -1 at the end
|
||||
|
||||
#### `HOOK_CARTRAVEL (hs_cartravel.int)`
|
||||
|
||||
Runs continuously during worldmap travel on car.
|
||||
Runs continuously during world map travel by car.
|
||||
|
||||
```
|
||||
int arg0 - vanilla car speed (between 3 and 8 "steps")
|
||||
|
||||
@@ -1149,6 +1149,14 @@ sfall_funcX metarule functions
|
||||
- `frame`: frame number, the first frame starts from zero
|
||||
- `rotation`: rotation to get the frame for, useful when reading FRM files by path
|
||||
|
||||
----
|
||||
#### set_worldmap_heal_time
|
||||
`void sfall_func1("set_worldmap_heal_time", int minutes)`
|
||||
- Sets the time interval in minutes for healing during world map travel
|
||||
- Passing 0 will revert to 1 second in real time (vanilla engine behavior)
|
||||
- Passing -1 will disable healing during travel
|
||||
- The time interval will be reset each time the player reloads the game
|
||||
|
||||
|
||||
****
|
||||
_See other documentation files (arrays.md, hookscripts.md) for related functions reference._
|
||||
|
||||
Reference in New Issue
Block a user