Привет. Помогите, а как сделать, чтобы все эти коды работали в одном файле? Типо, не 3 файла чтобы было, а чтоб 1?
1 код:function main() while true do wait(0) if isKeyDown(0x12) and isKeyJustPressed(0x31) and not sampIsCursorActive() then -- alt + 1 local car, ped = storeClosestEntities(playerPed) local result, id = sampGetPlayerIdByCharHandle(ped) if result then sampSendChat('/trade '..id) end end end end
2 код:
unction main()
while true do wait(0)
if isKeyDown(0x12) and isKeyJustPressed(0x32) and not sampIsCursorActive() then -- alt + 2
local car, ped = storeClosestEntities(playerPed)
local result, id = sampGetPlayerIdByCharHandle(ped)
if result then
sampSendChat('/faminvite '..id)
end
end
end
end
3 код:
require "lib.moonloader"
local keys = require "vkeys"
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do wait(0)
if not sampIsChatInputActive() and not sampIsDialogActive() and not sampIsScoreboardOpen() and not isSampfuncsConsoleActive() then
if isKeyJustPressed(VK_K) then
sampSendChat("/key")
end
if isKeyJustPressed(VK_L) then
sampSendChat("/lock")
end
if isKeyJustPressed(VK_P) then
sampSendChat("/phone")
end
end
end