addColPolygonPoint | Multi Theft Auto: Wiki Skip to content

addColPolygonPoint

Client-side
Server-side
Shared

Pair: removeColPolygonPoint

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function is used to add a new point to an existing colshape polygon.

Syntax

addColPolygonPoint ( )

Code Examples

server

This examples adds a point to an existing polygon shape by a command.

local shape = createColPolygon(2, 2, 5, 5, 6, 6, 8, 8) -- Somewhere in the map
function addPointToPolygon(plr, cmd, fX, fY, index)
if (not fX or not fY) then
outputChatBox("Correct syntax: /addpoint <fX fY>", plr, 255, 25, 25)
return false
end
if (not index or index == 0) then
addColPolygonPoint(shape, fX, fY)
else
addColPolygonPoint(shape, fX, fY, index)
end
outputChatBox("Point added", plr, 0, 255, 0)
end
addCommandHandler("addpoint", addPointToPolygon)