Autosta ampuminen firstpersonissa By "KappE"

angellfall

Maestro itse
Ylläpitäjä
10 Huhtikuu 2019
1,275
2
1,442
113
Lua:
Citizen.CreateThread(function()

    while true do

        Citizen.Wait(1)

        local ped = PlayerPedId()

        if IsPedDoingDriveby(ped) then

            SetFollowVehicleCamViewMode(4)

        else

            SetFollowVehicleCamViewMode(1)

        end

    end
    
end)