Skip to content

Commit

Permalink
Update billionaire_services.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
xesdoog committed Apr 27, 2024
1 parent b288a02 commit ddb870c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions billionaire_services.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ local airport_index = 0
local pJet = 0
local pilot = 0
local copilot = 0
local jetSeat = 1
local jetSeat = 2
local setHeading = 0
local bodyguard_index = 0
local guard_1 = 0
Expand All @@ -17,7 +17,7 @@ local escortCar = 0
local carBlip = 0
local limo = 0
local limoDriver = 0
local limoSeat = 1
local limoSeat = 2
local donutDirection = 7
local dbgclc = 0
local jetTpBtn = false
Expand Down Expand Up @@ -424,6 +424,7 @@ billionaire_services:add_imgui(function()
if VEHICLE.IS_VEHICLE_SEAT_FREE(pJet, jetSeat, true) then
PED.SET_PED_INTO_VEHICLE(self.get_ped(), pJet, jetSeat)
else
gui.show_message("Private Jet", "Seat currently occupied.")
jetSeat = jetSeat + 1
return
end
Expand Down Expand Up @@ -1402,6 +1403,7 @@ billionaire_services:add_imgui(function()
if VEHICLE.IS_VEHICLE_SEAT_FREE(limo, limoSeat, true) then
PED.SET_PED_INTO_VEHICLE(self.get_ped(), limo, limoSeat)
else
gui.show_message("Private Limo", "Seat currently occupied.")
limoSeat = limoSeat + 1
return
end
Expand Down

0 comments on commit ddb870c

Please sign in to comment.