local ev = require("samp.events")
local inAT99 = false
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do
wait(0)
if inAT99 and isCharInAnyHeli(PLAYER_PED) then
local handle = storeCarCharIsInNoSave(PLAYER_PED)
if getCarModel(handle) == 15964 then
sampSendChat("/style")
end
inAT99 = false
end
end
end
function ev.onSendEnterVehicle(carID, isPas)
if not isPas and not inAT99 then
inAT99 = true
end
end