- Версия MoonLoader
- Другое
Парни проблемка, я в этом совсем недавно, помогите исправить ошибки.
Код:
------------------------Библиотеки------------------------
require "lib.moonloader"
------------------------Локальные базы------------------------
local keys = require "vkeys"
local tag = "{FFFFFF}[AZ tools]:{5A90CE} "
local mc = 0x5A90CE
local mct = "[5a90ce]"
local wc = "(FFFFFF)"
local sampevcheck, sampev = pcall(require, "lib.samp.events")
local inicfg = require "inicfg"
------------------------Функции------------------------
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampAddChatMessage(string.format("%s v%s загружен.", thisScript().name, thisScript().version),mc )
sampAddChatMessage ("Скрипт by Vitaliy Zhdanov загружен ",0x5A90CE )
thread = lua_thread.create_suspended(thread_function)
sampRegisterChatCommand("rp", cmd_rp)
sampRegisterChatCommand("fl", cmd_fl)
while true do
wait(0)
if sampevcheck == false then
print("¬нимание, отсутствует библиотека SAMP.lua, скрипт завершил работу.", -1)
print("—качать еЄ можно в гугле, нужно закинуть в папку moonloader/lib", -1)
thisScript():unload()
end
if isKeyJustPressed(VK_L) and not sampIsChatInputActive() and not sampIsDialogActive() then
sampSendChat("/lock")
end
if isKeyJustPressed(VK_K) and not sampIsChatInputActive() and not sampIsDialogActive() then
sampSendChat("/key")
end
if isKeyDown(VK_A) and isKeyDown(VK_R) and isKeyJustPressed(VK_M) and not sampIsChatInputActive() and not sampIsDialogActive() then
sampSendChat("/armour")
end
if isKeyDown(VK_M) and isKeyDown(VK_S) and isKeyJustPressed(VK_K) and not sampIsChatInputActive() and not sampIsDialogActive() then
sampSendChat("/mask")
end
if isKeyJustPressed(VK_P) and not sampIsChatInputActive() and not sampIsDialogActive() then
sampSendChat("/phone")
end
end
end