#Anyone know how to replace the gta default map to a different one.

1 messages · Page 1 of 1 (latest)

green stag
#

Just stream the coloured map

steep charm
#

search for it on google

torpid pier
torpid pier
#

Ive got the map working but the minimap looks like this

#

anyone know how to fix?

steep charm
#

It needs this in a client side script:

Citizen.CreateThread(function()
    SetMapZoomDataLevel(0, 0.96, 0.9, 0.08, 0.0, 0.0) -- Level 0
    SetMapZoomDataLevel(1, 1.6, 0.9, 0.08, 0.0, 0.0) -- Level 1
    SetMapZoomDataLevel(2, 8.6, 0.9, 0.08, 0.0, 0.0) -- Level 2
    SetMapZoomDataLevel(3, 12.3, 0.9, 0.08, 0.0, 0.0) -- Level 3
    SetMapZoomDataLevel(4, 24.3, 0.9, 0.08, 0.0, 0.0) -- Level 4
    SetMapZoomDataLevel(5, 55.0, 0.0, 0.1, 2.0, 1.0) -- ZOOM_LEVEL_GOLF_COURSE
    SetMapZoomDataLevel(6, 450.0, 0.0, 0.1, 1.0, 1.0) -- ZOOM_LEVEL_INTERIOR
    SetMapZoomDataLevel(7, 4.5, 0.0, 0.0, 0.0, 0.0) -- ZOOM_LEVEL_GALLERY
    SetMapZoomDataLevel(8, 11.0, 0.0, 0.0, 2.0, 3.0) -- ZOOM_LEVEL_GALLERY_MAXIMIZE
end)

Citizen.CreateThread(function()
    while true do
        Citizen.Wait(1)
        if IsPedOnFoot(GetPlayerPed(-1)) then 
            SetRadarZoom(1100)
        elseif IsPedInAnyVehicle(GetPlayerPed(-1), true) then
            SetRadarZoom(1100)
        end
    end
end)

this resource has many fivem ready maps https://github.com/omgugly/dlk_maps_fivem

green stag
torpid pier
#

i fixed it

#

thanks for the help