@citizenfx/client 2.0.6243-1 → 2.0.6246-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.
@@ -4104,7 +4104,7 @@ declare function DeleteCheckpoint(checkpoint: number): void;
4104
4104
  declare function DeleteChildRope(ropeId: number): void;
4105
4105
 
4106
4106
  /**
4107
- * Deletes the specified entity, then sets the handle pointed to by the pointer to NULL.
4107
+ * Deletes the specified entity, and invalidates the passed handle (i.e. in/out argument).
4108
4108
  * @param entity The entity to delete.
4109
4109
  */
4110
4110
  declare function DeleteEntity(entity: number): void;
@@ -7806,12 +7806,9 @@ declare function GetDisabledControlUnboundNormal(padIndex: number, control: numb
7806
7806
  declare function N_0x4f8a26a890fd62fb(padIndex: number, control: number): number;
7807
7807
 
7808
7808
  /**
7809
- * Returns model name of vehicle in all caps. Needs to be displayed through localizing text natives to get proper display name.
7810
- * -----------------------------------------------------------------------------------------------------------------------------------------
7811
- * While often the case, this does not simply return the model name of the vehicle (which could be hashed to return the model hash). Variations of the same vehicle may also use the same display name.
7812
- * -----------------------------------------------------------------------------------------------------------------------------------------
7813
- * Returns "CARNOTFOUND" if the hash doesn't match a vehicle hash.
7814
- * Using HUD::_GET_LABEL_TEXT, you can get the localized name.
7809
+ * Returns the display name/text label (`gameName` in `vehicles.meta`) for the specified vehicle model.
7810
+ * @param modelHash A vehicle model to check.
7811
+ * @return The display name for the vehicle, or `'CARNOTFOUND'` if invalid.
7815
7812
  */
7816
7813
  declare function GetDisplayNameFromVehicleModel(modelHash: string | number): string;
7817
7814
 
@@ -8188,9 +8185,9 @@ declare function GetEntityMatrix(entity: number): [number[], number[], number[],
8188
8185
  declare function GetEntityMaxHealth(entity: number): number;
8189
8186
 
8190
8187
  /**
8191
- * Returns the model hash from the entity
8188
+ * Returns the model hash from an entity.
8192
8189
  * @param entity The entity to get the model for.
8193
- * @return The model hash from the entity.
8190
+ * @return The model hash of the entity.
8194
8191
  */
8195
8192
  declare function GetEntityModel(entity: number): number;
8196
8193
 
@@ -14174,7 +14171,10 @@ declare function HasForceCleanupOccurred(cleanupFlags: number): boolean;
14174
14171
  declare function HasMinimapOverlayLoaded(id: number): boolean;
14175
14172
 
14176
14173
  /**
14177
- * Checks if the specified model has loaded into memory.
14174
+ * Returns whether the specified model (archetype) is currently loaded.
14175
+ * Note that this will return 'true' even if the model has been requested and loaded by something other than the current script, if you're intending to actually use the model in a later frame, you should call REQUEST_MODEL anyway.
14176
+ * @param model The model hash to check for.
14177
+ * @return A boolean indicating whether the archetype is loaded (true) or not (false).
14178
14178
  */
14179
14179
  declare function HasModelLoaded(model: string | number): boolean;
14180
14180
 
@@ -26000,13 +26000,14 @@ declare function PlayerAttachVirtualBound(p0: number, p1: number, p2: number, p3
26000
26000
  declare function PlayerDetachVirtualBound(): void;
26001
26001
 
26002
26002
  /**
26003
- * This returns YOUR 'identity' as a Player type.
26004
- * Always returns 0 in story mode.
26003
+ * Returns the player index for the local player.
26004
+ * @return The local player's player index.
26005
26005
  */
26006
26006
  declare function PlayerId(): number;
26007
26007
 
26008
26008
  /**
26009
- * Returns current player ped
26009
+ * Returns the entity handle for the local player ped. Note that this entity handle will change after using commands such as SET_PLAYER_MODEL.
26010
+ * @return The local player ped's entity handle.
26010
26011
  */
26011
26012
  declare function PlayerPedId(): number;
26012
26013
 
@@ -27479,7 +27480,8 @@ declare function N_0xa0261aef7acfc51e(model: string | number): void;
27479
27480
  declare function RequestMissionAudioBank(p0: string, p1: boolean): boolean;
27480
27481
 
27481
27482
  /**
27482
- * Request a model to be loaded into memory.
27483
+ * Request a model (archetype) to be loaded for use by the current script. Use SET_MODEL_AS_NO_LONGER_NEEDED when done using the model in script.
27484
+ * @param model The model to request.
27483
27485
  */
27484
27486
  declare function RequestModel(model: string | number): void;
27485
27487
 
@@ -30159,11 +30161,9 @@ declare function SetEntityAnimCurrentTime(entity: number, animDictionary: string
30159
30161
  declare function SetEntityAnimSpeed(entity: number, animDictionary: string, animName: string, speedMultiplier: number): void;
30160
30162
 
30161
30163
  /**
30162
- * Makes the specified entity (ped, vehicle or object) persistent. Persistent entities will not automatically be removed by the engine.
30163
- * p1 has no effect when either its on or off
30164
- * maybe a quick disassembly will tell us what it does
30165
- * p2 has no effect when either its on or off
30166
- * maybe a quick disassembly will tell us what it does
30164
+ * Assigns an existing entity to be owned by the current script. If the entity was not owned by a script yet, this also means the entity will remain persistent until released.
30165
+ * Note that this is not needed right after creating an entity as a script-created entity will automatically be assigned.
30166
+ * @param entity An entity handle.
30167
30167
  */
30168
30168
  declare function SetEntityAsMissionEntity(entity: number, p1: boolean, p2: boolean): void;
30169
30169
 
@@ -31433,7 +31433,8 @@ declare function N_0x375a706a5c2fd084(toggle: boolean): void;
31433
31433
  declare function SetMobileRadioEnabledDuringGameplay(toggle: boolean): void;
31434
31434
 
31435
31435
  /**
31436
- * Unloads model from memory
31436
+ * Releases the script ownership assigned by REQUEST_MODEL. This command should be used when done using a specific model hash in script.
31437
+ * @param model The model to release ownership of.
31437
31438
  */
31438
31439
  declare function SetModelAsNoLongerNeeded(model: string | number): void;
31439
31440
 
@@ -34186,10 +34187,10 @@ declare function SetPlayerMeleeWeaponDamageModifier(player: number, modifier: nu
34186
34187
  declare function SetPlayerMeleeWeaponDefenseModifier(player: number, modifier: number): void;
34187
34188
 
34188
34189
  /**
34189
- * Set the model for a specific Player. Be aware that this will destroy the current Ped for the Player and create a new one, any reference to the old ped should be reset
34190
- * Make sure to request the model first and wait until it has loaded.
34190
+ * Set the model for a specific Player. Note that this will destroy the current Ped for the Player and create a new one, any reference to the old ped will be invalid after calling this.
34191
+ * As per usual, make sure to request the model first and wait until it has loaded.
34191
34192
  * @param player The player to set the model for
34192
- * @param model The hash of the model to use
34193
+ * @param model The model to use
34193
34194
  */
34194
34195
  declare function SetPlayerModel(player: number, model: string | number): void;
34195
34196
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@citizenfx/client",
3
- "version": "2.0.6243-1",
3
+ "version": "2.0.6246-1",
4
4
  "description": "Typings for the CitizenFX client JS API.",
5
5
  "main": "index.js",
6
6
  "scripts": {