@citizenfx/client 2.0.7401-1 → 2.0.7427-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/natives_universal.d.ts +62 -18
- package/package.json +1 -1
package/natives_universal.d.ts
CHANGED
|
@@ -5911,6 +5911,19 @@ declare function N_0x7f4724035fdca1dd(padIndex: number): void;
|
|
|
5911
5911
|
*/
|
|
5912
5912
|
declare function DisableInterior(interiorID: number, toggle: boolean): void;
|
|
5913
5913
|
|
|
5914
|
+
/**
|
|
5915
|
+
* Removes any custom moon cycle overrides that have been configured with [ENABLE_MOON_CYCLE_OVERRIDE](#\_0x2C328AF17210F009)
|
|
5916
|
+
*/
|
|
5917
|
+
declare function DisableMoonCycleOverride(): void;
|
|
5918
|
+
/**
|
|
5919
|
+
* Removes any custom moon cycle overrides that have been configured with [ENABLE_MOON_CYCLE_OVERRIDE](#\_0x2C328AF17210F009)
|
|
5920
|
+
*/
|
|
5921
|
+
declare function N_0x2bf72ad5b41aa739(): void;
|
|
5922
|
+
/**
|
|
5923
|
+
* Removes any custom moon cycle overrides that have been configured with [ENABLE_MOON_CYCLE_OVERRIDE](#\_0x2C328AF17210F009)
|
|
5924
|
+
*/
|
|
5925
|
+
declare function ResetExtraTimecycleModifierStrength(): void;
|
|
5926
|
+
|
|
5914
5927
|
/**
|
|
5915
5928
|
* If true is passed, the player won't be able to open the multiplayer chat
|
|
5916
5929
|
*/
|
|
@@ -7635,6 +7648,55 @@ declare function HideMapObjectThisFrame(mapObjectHash: string | number): void;
|
|
|
7635
7648
|
*/
|
|
7636
7649
|
declare function EnableLaserSightRendering(toggle: boolean): void;
|
|
7637
7650
|
|
|
7651
|
+
/**
|
|
7652
|
+
* Enable a custom moon cycle, allowing control of which lunar phase the moon is in.
|
|
7653
|
+
* Valid values are from `0.0` to `1.0`, with `0.5` representing a full moon.
|
|
7654
|
+
* | Value | Lunar Phase |
|
|
7655
|
+
* | :---: | :-------------: |
|
|
7656
|
+
* | `0.1` | Waxing Crescent |
|
|
7657
|
+
* | `0.2` | First Quarter |
|
|
7658
|
+
* | `0.3` | Waxing Gibbous |
|
|
7659
|
+
* | `0.5` | Full Moon |
|
|
7660
|
+
* | `0.7` | Waning Gibbous |
|
|
7661
|
+
* | `0.8` | Third Quarter |
|
|
7662
|
+
* | `0.9` | Waning Crescent |
|
|
7663
|
+
* The moon phase can be disabled with [DISABLE_MOON_CYCLE_OVERRIDE](#\_0x2BF72AD5B41AA739)
|
|
7664
|
+
* @param phase A value indicating the moon cycle.
|
|
7665
|
+
*/
|
|
7666
|
+
declare function EnableMoonCycleOverride(phase: number): void;
|
|
7667
|
+
/**
|
|
7668
|
+
* Enable a custom moon cycle, allowing control of which lunar phase the moon is in.
|
|
7669
|
+
* Valid values are from `0.0` to `1.0`, with `0.5` representing a full moon.
|
|
7670
|
+
* | Value | Lunar Phase |
|
|
7671
|
+
* | :---: | :-------------: |
|
|
7672
|
+
* | `0.1` | Waxing Crescent |
|
|
7673
|
+
* | `0.2` | First Quarter |
|
|
7674
|
+
* | `0.3` | Waxing Gibbous |
|
|
7675
|
+
* | `0.5` | Full Moon |
|
|
7676
|
+
* | `0.7` | Waning Gibbous |
|
|
7677
|
+
* | `0.8` | Third Quarter |
|
|
7678
|
+
* | `0.9` | Waning Crescent |
|
|
7679
|
+
* The moon phase can be disabled with [DISABLE_MOON_CYCLE_OVERRIDE](#\_0x2BF72AD5B41AA739)
|
|
7680
|
+
* @param phase A value indicating the moon cycle.
|
|
7681
|
+
*/
|
|
7682
|
+
declare function N_0x2c328af17210f009(phase: number): void;
|
|
7683
|
+
/**
|
|
7684
|
+
* Enable a custom moon cycle, allowing control of which lunar phase the moon is in.
|
|
7685
|
+
* Valid values are from `0.0` to `1.0`, with `0.5` representing a full moon.
|
|
7686
|
+
* | Value | Lunar Phase |
|
|
7687
|
+
* | :---: | :-------------: |
|
|
7688
|
+
* | `0.1` | Waxing Crescent |
|
|
7689
|
+
* | `0.2` | First Quarter |
|
|
7690
|
+
* | `0.3` | Waxing Gibbous |
|
|
7691
|
+
* | `0.5` | Full Moon |
|
|
7692
|
+
* | `0.7` | Waning Gibbous |
|
|
7693
|
+
* | `0.8` | Third Quarter |
|
|
7694
|
+
* | `0.9` | Waning Crescent |
|
|
7695
|
+
* The moon phase can be disabled with [DISABLE_MOON_CYCLE_OVERRIDE](#\_0x2BF72AD5B41AA739)
|
|
7696
|
+
* @param phase A value indicating the moon cycle.
|
|
7697
|
+
*/
|
|
7698
|
+
declare function SetExtraTimecycleModifierStrength(phase: number): void;
|
|
7699
|
+
|
|
7638
7700
|
/**
|
|
7639
7701
|
* ENABLE_MOVIE_KEYFRAME_WAIT
|
|
7640
7702
|
*/
|
|
@@ -39964,15 +40026,6 @@ declare function ResetEntityAlpha(entity: number): void;
|
|
|
39964
40026
|
*/
|
|
39965
40027
|
declare function ResetExclusiveScenarioGroup(): void;
|
|
39966
40028
|
|
|
39967
|
-
/**
|
|
39968
|
-
* Resets the extra timecycle modifier strength normally set with [`SetExtraTimecycleModifierStrength`](#\_0x2C328AF17210F009)
|
|
39969
|
-
*/
|
|
39970
|
-
declare function ResetExtraTimecycleModifierStrength(): void;
|
|
39971
|
-
/**
|
|
39972
|
-
* Resets the extra timecycle modifier strength normally set with [`SetExtraTimecycleModifierStrength`](#\_0x2C328AF17210F009)
|
|
39973
|
-
*/
|
|
39974
|
-
declare function N_0x2bf72ad5b41aa739(): void;
|
|
39975
|
-
|
|
39976
40029
|
/**
|
|
39977
40030
|
* Resets parameters which is used by the game for checking is ped needs to fly through windscreen after a crash to default values.
|
|
39978
40031
|
*/
|
|
@@ -43711,15 +43764,6 @@ declare function SetExplosiveMeleeThisFrame(player: number): void;
|
|
|
43711
43764
|
*/
|
|
43712
43765
|
declare function SetExtraTimecycleModifier(modifierName: string): void;
|
|
43713
43766
|
|
|
43714
|
-
/**
|
|
43715
|
-
* The same as [`SetTimecycleModifierStrength`](#\_0x82E7FFCD5B2326B3) but for the secondary tiemcycle modifier.
|
|
43716
|
-
*/
|
|
43717
|
-
declare function SetExtraTimecycleModifierStrength(strength: number): void;
|
|
43718
|
-
/**
|
|
43719
|
-
* The same as [`SetTimecycleModifierStrength`](#\_0x82E7FFCD5B2326B3) but for the secondary tiemcycle modifier.
|
|
43720
|
-
*/
|
|
43721
|
-
declare function N_0x2c328af17210f009(strength: number): void;
|
|
43722
|
-
|
|
43723
43767
|
/**
|
|
43724
43768
|
* Clipsets:
|
|
43725
43769
|
* "facials@gen_female@base"
|