Someone convert this lua to cleo script ?
CSS:
require 'lib.moonloader'
local sampev = require 'lib.samp.events'
function main()
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(100) end
sampAddChatMessage("[{fd3737}Infamous Mods{FFFFFF}] са заредени.", -1)
sampAddChatMessage("[{fd3737}Auto-Fish & Putback{FFFFFF}] /afish", -1)
sampRegisterChatCommand("afish", active)
active = false
while true do
wait(0)
if active then
sampSendChat("/fish")
wait(12500)
sampSendChat("/putallback")
wait(100)
end
end
end
function active()
if active == true then
active = false
sampAddChatMessage("[Auto Fishing] - {fd3737}OFF{FF0000}", -1)
else
active = true
sampAddChatMessage("[Auto Fishing] - {20b61f}ENABLED{00FF00}", -1)
sampAddChatMessage("Ти започна да ловиш риба, за да спреш напиши /afish", -1)
end
end
function sampev.onServerMessage(clr, msg)
if msg:find("Не е изминало нужното време от последното използване на командата!") and active then
active = false
sampAddChatMessage("[{fd3737}Auto-Heal{FFFFFF}] Скрипта е изключен, защото не е изтекло времето. ‡а активациЯ отново /aheal.", -1)
end
end