EngineGetModelVisibleTime

From Multi Theft Auto: Wiki
Revision as of 12:18, 23 September 2021 by Lvrent (talk | contribs)
Jump to navigation Jump to search

20704

Syntax

int, int engineGetModelVisibleTime ( int modelId )

Required Arguments

  • modelId: The ID of the model.

Returns

Returns 2 integers, indicating timeOn and timeOff.

Example

Make Los Santos Tower visible only between 10 and 12 AM.

function init ()
	engineSetModelVisibleTime (4550, 10, 12)
        local timeOn, timeOff = engineGetModelVisibleTime (4550)
        outputChatBox ("Los Santos Tower visible time is now between " .. timeOn .. " and " .. timeOff)
end

addEventHandler ("onClientResourceStart", resourceRoot, init)

Requirements

This template will be deleted.

See Also