EngineSetModelVisibleTime

From Multi Theft Auto: Wiki
Revision as of 01:16, 18 January 2021 by Dante383 (talk | contribs) (Created page with "__NOTOC__ {{Client function}} {{New feature/item|3.0160|1.5.8|20416|This function changes model visibility time, this is used for example for building lights being shown afte...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

Syntax

bool engineSetModelVisibleTime( modelID, timeOn, timeOff )

Required Arguments

  • modelID: ID of the model
  • timeOn: value between 23 and 0 that states when the model should appear
  • timeOff: value between 23 and 0 that states when the model should disappear

Returns

Returns true if the change was successful, false otherwise.

Example

Click to collapse [-]
Client

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.20416

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.20416" />

See Also