- 34
- 3
- Версия MoonLoader
- .026-beta
Объясните как сделать активацию скрипта по команде. Если скрипт выключен, то действие не выполнятся и наоборот.
Код:
local id = 0
local accept = false
local ev = require "lib.samp.events"
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do
wait(0)
end
function invite()
repeat wait(0) until isSampAvailable()
writeMemory(sampGetBase() + 0x9D9D0, 4, 0x5051FF15, true)
while true do
wait(0)
if wasKeyPressed(0x31) and not sampIsChatInputActive() and not sampIsDialogActive() then
local result, ped = getCharPlayerIsTargeting(PLAYER_HANDLE)
if result then
_, id = sampGetPlayerIdByCharHandle(ped)
sampSendChat('/me передал бандану')
wait(1000)
sampSendChat('/givecbook '..id..' 100')
wait(100)
sampSendChat('/invite '..id)
setVirtualKeyDown(13, true)
wait(100)
setVirtualKeyDown(13, false)
accept = true
if accept and t:find("(%S+)_(%S+) принял ваше предложение вступить к вам в организацию.") then
sampSendChat("/giverank "..id.." 6")
accept = false
end
end
end
end
end
end