GetBlipOrdering: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(Learn to indent and now have blatant grammatical errors in examples)
Line 15: Line 15:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function getMyBlip(theBlip)
function getMyBlip(theBlip)
local ordering = getBlipOrdering ( theBlip )
    local ordering = getBlipOrdering ( theBlip )
outputChatBox("The following blip has a oredering of".. ordering)
    if (ordering) then
        outputChatBox("The following blip has a ordering of "..ordering)
    end
end
end
</syntaxhighlight>
</syntaxhighlight>

Revision as of 09:01, 3 May 2011

This function gets the Z ordering value of a blip. The Z ordering determines if a blip appears on top of or below other blips. Blips with a higher Z ordering value appear on top of blips with a lower value. The default value for all blips is 0.

Syntax

int getBlipOrdering ( blip theBlip )

Required Arguments

  • theBlip: the blip to retrieve the Z ordering value of.

Returns

Returns the Z ordering value of the blip if successful, false otherwise.

Example

function getMyBlip(theBlip)
    local ordering = getBlipOrdering ( theBlip )
    if (ordering) then
        outputChatBox("The following blip has a ordering of "..ordering)
    end
end

See Also