EngineSetModelVisibleTime: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Client function}}
{{Client function}}
{{Added feature/item|3.0159|1.5.9|1.5.8|20704|This function changes model visibility time, this is used for example for building lights being shown after 23:00.}}
{{Added feature/item|1.5.9|1.5.8|20704|This function changes model visibility time, this is used for example for building lights being shown after 23:00.}}


==Syntax==  
==Syntax==  
Line 11: Line 11:


===Returns===
===Returns===
Returns '''true''' if the change was successful, '''false''' otherwise.
Returns ''true'' if the change was successful, ''false'' otherwise.


==Example==  
==Example==  

Latest revision as of 20:36, 23 September 2021

This function changes model visibility time, this is used for example for building lights being shown after 23:00.

Syntax

bool engineSetModelVisibleTime ( int modelID, int timeOn, int timeOff )

Required Arguments

  • modelID: The ID of the model.
  • timeOn: Value between 0 and 24 that states when the model should appear.
  • timeOff: Value between 0 and 24 that states when the model should disappear.

Returns

Returns true if the change was successful, false otherwise.

Example

Make Los Santos Tower visible only between 10 and 12 AM. Please keep in mind that this function does not affect collision - the building is still there, it's just invisible:

function init ()
    engineSetModelVisibleTime (4550, 10, 12)
end

addEventHandler ("onClientResourceStart", resourceRoot, init)

Requirements

Minimum server version n/a
Minimum client version 1.5.8-9.20704

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version client="1.5.8-9.20704" />

See Also