GetObjectModel: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(20 intermediate revisions by 12 users not shown)
Line 1: Line 1:
[[Category:Incomplete]]
__NOTOC__
{{Server client function}}
{{Deprecated|getElementModel|}}


__NOTOC__
This function retrieves the model ID of a specified object.
This fake function retrieves the model ID of a specified object


==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
int getObjectModel ( element object )      
int getObjectModel ( object theObject )
</syntaxhighlight>  
</syntaxhighlight>  


===Required Arguments===  
===Required Arguments===  
*'''object:''' The object which you wish to retrieve the model ID of
*'''theObject:''' The object which you wish to retrieve the model ID of


===Returns===
===Returns===
Returns an integer of the object ID.  
Returns an ''int'' with the object model id, or ''false'' if it isn't a valid object.


==Example==  
==Example==
This example does...
This example destroys a haystack when a player targets it.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--This line does...
function onPlayerTargeted ( targetElem )
blabhalbalhb --abababa
    if ( getElementType ( targetElem ) == "object" ) and ( getObjectModel ( targetElem ) == 3374 ) then
--This line does this...
        destroyElement ( targetElem )
mooo
    end
end
addEventHandler ( "onPlayerTarget", root, onPlayerTargeted )
</syntaxhighlight>
</syntaxhighlight>
This example outputs the model id of objects the player is targeting.
<syntaxhighlight lang="lua">
function onPlayerTargeted ( targetElem )
    if ( getElementType ( targetElem ) == "object") then
        outputChatBox ( getObjectModel(targetElem) )
    end
end
addEventHandler ( "onPlayerTarget", root, onPlayerTargeted )
</syntaxhighlight>


==See Also==
==See Also==
{{Object Functions}}
{{Object functions}}

Latest revision as of 08:05, 4 November 2020

Emblem-important.png This function is deprecated. This means that its use is discouraged and that it might not exist in future versions.

Please use getElementModel instead.


This function retrieves the model ID of a specified object.

Syntax

int getObjectModel ( object theObject )

Required Arguments

  • theObject: The object which you wish to retrieve the model ID of

Returns

Returns an int with the object model id, or false if it isn't a valid object.

Example

This example destroys a haystack when a player targets it.

function onPlayerTargeted ( targetElem )
    if ( getElementType ( targetElem ) == "object" ) and ( getObjectModel ( targetElem ) == 3374 ) then
        destroyElement ( targetElem )
    end
end
addEventHandler ( "onPlayerTarget", root, onPlayerTargeted )


This example outputs the model id of objects the player is targeting.

function onPlayerTargeted ( targetElem )
    if ( getElementType ( targetElem ) == "object") then
        outputChatBox ( getObjectModel(targetElem) )
    end
end
addEventHandler ( "onPlayerTarget", root, onPlayerTargeted )

See Also

Shared