[FREE] [STANDALONEM] Fivem-HelpWaypoints
Simple fivem script for creating helpful markers on the map in the game making gameplay easier and looking nice local coords = vec3(2281.5424804688, 4813.0190429688, 55.574935913086 - 1.0) while true do local playercoords = GetEntityCoords(PlayerPedId()) local dist =...
forum.cfx.re
GitHub - Szajnol/Fivem-HelpWaypoints: Simple fivem script for creating helpful markers on the map in the game making gameplay easier and looking nice
Simple fivem script for creating helpful markers on the map in the game making gameplay easier and looking nice - Szajnol/Fivem-HelpWaypoints
github.com
lua:
local coords = vec3(2281.5424804688, 4813.0190429688, 55.574935913086 - 1.0)
while true do
local playercoords = GetEntityCoords(PlayerPedId())
local dist = #(coords-pcoords)
local metry = math.ceil(dist * 1)
exports['shinyx-HelpWaypoints']:DrawDestination(coords, "Example", metry)
Wait(0)
end
代码: