[Help] How to do this?

RegisterNetEvent('ZONEADD')
AddEventHandler("ZONEADD", function(s)
    RemoveBlip(blip)
    RemoveBlip(radiusBlip)

    local src = s
    local coords = GetEntityCoords(GetPlayerPed(GetPlayerFromServerId(src)))
    blip = AddBlipForCoord(coords.x, coords.y, coords.z)
    radiusBlip = AddBlipForRadius(coords.x, coords.y, coords.z, blipRadius)
    SetBlipSprite(blip, 269)
    SetBlipAsShortRange(blip, true)
    SetBlipColour(blip, blipCol)
    SetBlipScale(blip, 1.0)
    BeginTextCommandSetBlipName('STRING')
    AddTextComponentString(blipName)
    EndTextCommandSetBlipName(blip)

    
    SetBlipAlpha(radiusBlip, 80)
    SetBlipColour(radiusBlip, blipCol)

    missionTextDisplay(misTxtDis, 8000)
end)

How can i convert this event to multiple locations? like to make this for one x,y,z , 2 x,y,z , not just for my location?

Just add the coords you want in the callback params instead to get player coords

Please ask for help in the original resource topic. There is no need for a separate topic for issues and/or questions about a certain resource.

This will keep the forums less cluttered and make searching for others easier. Your issue and/or question may have been solved already in the original topic? If not feel free to ask there, and the original creators will get notified of your issue or question.

:smiley: