Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
В общем надо сделать скрипт чтобы по нажатию двух кнопок активировал ась команда /fixmycar (ид кара в котором я сижу). Команду то я сделал а вот как узнать ид кара ай донт ноу
local key = require 'vkeys'
function main()
while not isSampAvailable() do wait(0) end wait(1)
while true do
wait(0)
local car = storeCarCharIsInNoSave(playerPed)
if isKeyDown(key.VK_MENU) and isKeyJustPressed(key.VK_W) then
sampProcessChatInput('/fixmycar ' .. select(2, sampGetVehicleIdByCarHandle(car)))
end
end
end
local key = require 'vkeys'
function main()
while not isSampAvailable() do wait(0) end wait(1)
while true do
wait(0)
local car = storeCarCharIsInNoSave(playerPed)
if isKeyDown(key.VK_MENU) and isKeyJustPressed(key.VK_W) then
sampAddChatMessage('/fixmycar' ..car)
end
end
end
local key = require 'vkeys'
function main()
while not isSampAvailable() do wait(0) end wait(1)
while true do
wait(0)
local car = storeCarCharIsInNoSave(playerPed)
if isKeyDown(key.VK_MENU) and isKeyJustPressed(key.VK_W) then
sampProcessChatInput('/fixmycar ' .. select(2, sampGetVehicleIdByCarHandle(car)))
end
end
end