diff options
author | zxcPandora <81985226+zxcPandora@users.noreply.github.com> | 2023-01-06 06:03:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-05 23:03:55 +0100 |
commit | b8ad5076113c84136efa859c274bd515dbf984f8 (patch) | |
tree | ef711221412770c6a0cdc73b6027241807558c18 | |
parent | 0fd3cef04c04adb7c8aa368fda75e10a93462ec4 (diff) | |
download | NorthstarMods-b8ad5076113c84136efa859c274bd515dbf984f8.tar.gz NorthstarMods-b8ad5076113c84136efa859c274bd515dbf984f8.zip |
[FW] Networked Variable fix (#544)v1.12.0-rc1
* Support to input other languages in the search box
Support to input other languages in the search box
* fw Networked Variable fix
Networked Variable fix
* defaultValue,rangemin,rangemax
defaultValue,rangemin,rangemax
-rw-r--r-- | Northstar.Custom/mod/scripts/vscripts/gamemodes/sh_gamemode_fw_custom.nut | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Northstar.Custom/mod/scripts/vscripts/gamemodes/sh_gamemode_fw_custom.nut b/Northstar.Custom/mod/scripts/vscripts/gamemodes/sh_gamemode_fw_custom.nut index ca238d5d..e2cdc1a3 100644 --- a/Northstar.Custom/mod/scripts/vscripts/gamemodes/sh_gamemode_fw_custom.nut +++ b/Northstar.Custom/mod/scripts/vscripts/gamemodes/sh_gamemode_fw_custom.nut @@ -59,13 +59,13 @@ void function FWOnRegisteringNetworkVars() RegisterNetworkedVariable( "imcTowerThreatLevel", SNDC_GLOBAL, SNVT_INT ) RegisterNetworkedVariable( "milTowerThreatLevel", SNDC_GLOBAL, SNVT_INT ) RegisterNetworkedVariable( "fwCampAlertA", SNDC_GLOBAL, SNVT_INT ) - RegisterNetworkedVariable( "fwCampStressA", SNDC_GLOBAL, SNVT_INT ) + RegisterNetworkedVariable( "fwCampStressA", SNDC_GLOBAL, SNVT_FLOAT_RANGE, 0.0, 0.0, 1.0 ) RegisterNetworkedVariable( "fwCampAlertB", SNDC_GLOBAL, SNVT_INT ) - RegisterNetworkedVariable( "fwCampStressB", SNDC_GLOBAL, SNVT_INT ) + RegisterNetworkedVariable( "fwCampStressB", SNDC_GLOBAL, SNVT_FLOAT_RANGE, 0.0, 0.0, 1.0 ) RegisterNetworkedVariable( "fwCampAlertC", SNDC_GLOBAL, SNVT_INT ) - RegisterNetworkedVariable( "fwCampStressC", SNDC_GLOBAL, SNVT_INT ) + RegisterNetworkedVariable( "fwCampStressC", SNDC_GLOBAL, SNVT_FLOAT_RANGE, 0.0, 0.0, 1.0 ) #if CLIENT CLFortWar_RegisterNetworkFunctions() #endif -}
\ No newline at end of file +} |