- 83
- 9
- Версия SA-MP
-
- 0.3.7 (R1)
Помогите отредактировать скрипт Fast invite, на кнопку i - /invite , а мне нужно добавить ещё на О анг /rang как это сделать? внизу код луа.
Fast invite:
local ev = require('lib.samp.events')
require "lib.moonloader"
local fastcmd = false
local id2 = 1111
function main()
repeat wait(100) until isSampAvailable()
sampAddChatMessage('{06eb27}[Script]Fastcmd Loaded', -1)
while true do
wait(0)
local res, ped = getCharPlayerIsTargeting(playerHandle)
if res then
local proverka = wasKeyPressed(73)
if proverka then
res, ped = getCharPlayerIsTargeting(playerHandle)
res, id = sampGetPlayerIdByCharHandle(ped)
if id2 ~= id then
id2 = id
sampSendChat("/invite "..id, -1)
end
end
end
end
end