- 222
- 55
- Версия MoonLoader
- .026-beta
Суть скрипта: когда у меня остается менее 30хп во время файта к примеру, чтобы он писал /kiss на чела который последний нанес мне дамаг, после шоб я юзал нарко, и сбивалось чатом
После ввода /razeb скрипт просто крашится
помогите говнокодеру
После ввода /razeb скрипт просто крашится
xyeta:
local sampev = require 'lib.samp.events'
local shot = nil
local act = false
require 'lib.moonloader'
lua_thread.create_suspended(thread_function)
function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand("razeb")
sampAddChatMessage('[razeb]: Active', -1)
while true do
wait(0)
end
end
function sampev.onSendTakeDamage(playerId, damage, weapon, bodypart)
shot = playerId
end
function razeb()
act = not act
sampAddChatMessage("[razeb]: Active", 0xFFFFFF)
hp = getCharHealth(PLAYER_PED)
if hp < 30 then
thr:run()
end
end
function thread_function()
sampSendChat('kiss'.. shot)
wait(100)
sampSendChat('/usedrugs 3')
wait(100)
sampSendChat('1')
end