SetElementInterior

From Multi Theft Auto: Wiki
Revision as of 11:08, 19 September 2006 by MrJax (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function allows you to set the interior of any element. An interior is the current loaded place, 0 being outside.

Syntax

bool setElementInterior ( element theElement, int interior )

Required Arguments

  • theElement: The element in which you'd like to set the interior of.
  • interior: The interior you want to set the element to.

Returns

Returns 'true' if 'theElement' and 'interior' are valid arguments, 'false' otherwise.

Example

addCommandHandler ( "interior", "interior" )
function interior ( source, key, interior )
  if ( interior == "1" ) then
    setElementInterior ( source, interior, 2233.91, 1714.73, 1011.38 )
  else
    setElementInterior ( source, interior )
  end
end

See Also