GetMarkerCount: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Needs example)
(note)
 
(One intermediate revision by one other user not shown)
Line 2: Line 2:
{{Server client function}}
{{Server client function}}
Returns the number of markers that currently exist in the world.
Returns the number of markers that currently exist in the world.
<!-- Sorry, but I think this should be deleted, it's useless, i can use #getElementsByType("marker") [iManGaaX :)] -->


==Syntax==
==Syntax==
Line 15: Line 17:


==Example==
==Example==
This example outputs the amount of markers to the player.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--TODO
function howManyMarkers(thePlayer,command)
local ammount = getMarkerCount()
outputChatBox("There are "..ammount.." markers.",thePlayer,255,255,0)
end
addCommandHandler("markers",howManyMarkers)
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{Marker functions}}
{{Marker functions}}
[[Category:Needs Example]]

Latest revision as of 13:40, 10 October 2023

Returns the number of markers that currently exist in the world.


Syntax

int getMarkerCount ( )

Required Arguments

None

Returns

Returns the number of markers that currently exist.

Example

This example outputs the amount of markers to the player.

function howManyMarkers(thePlayer,command)
	local ammount = getMarkerCount()
	outputChatBox("There are "..ammount.." markers.",thePlayer,255,255,0)
end
addCommandHandler("markers",howManyMarkers)

See Also

Shared