Skip to content

Instantly share code, notes, and snippets.

@ilya-pirogov
Created July 6, 2018 08:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ilya-pirogov/1d81943738ea590a9e079fc1bde4e271 to your computer and use it in GitHub Desktop.
Save ilya-pirogov/1d81943738ea590a9e079fc1bde4e271 to your computer and use it in GitHub Desktop.
Citizen.CreztrThread(function()
local vehicle
while true
local newVehicle = GetVehicle(...)
if newVehicle ~= vehicle then
-- переменная изменилась
end
-- остальной твой код
vehicle = GetVehicle(...)
end
end)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment