Skip to content

Commit

Permalink
added mission safehouse open/close notifications
Browse files Browse the repository at this point in the history
added mission safehouse open/close notifications.
  • Loading branch information
ddraigcymraeg committed Feb 5, 2023
1 parent 4460060 commit a1de34e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mrp-missions-v3/client.lua
Expand Up @@ -16413,13 +16413,15 @@ Citizen.CreateThread(function()
--SetBlipSprite (SafeHouseBlip, 417)
SetBlipColour(SafeHouseBlip, 2)
TriggerEvent('chatMessage', "^1[MISSIONS]: ^2the mission safe house is open.")

Notify("~h~~b~Mission Safehouse is now open")
end
else
if SafeHouseBlipOn then
SafeHouseBlipOn = (not SafeHouseBlipOn)
SetBlipColour(SafeHouseBlip, 40)
TriggerEvent('chatMessage', "^1[MISSIONS]: ^2the mission safe house is closed.")
Notify("~h~~r~Mission Safehouse is now closed")

end

end
Expand Down

0 comments on commit a1de34e

Please sign in to comment.