- 9
- 2
- Версия MoonLoader
- .026-beta
Вот простой код
Бот просто не подключается, может у вас такое было, как исправить?
Lua:
local mb = require('MoonBot')
function main()
repeat wait(40) until isSampAvailable()
wait(5000)
sampAddChatMessage("Connecting the bot...", -1)
local mybot = mb.add("HUY12341488")
mybot:connect()
while not mybot.connected do
wait(400)
sampAddChatMessage("Connecting...", -1)
end
mybot:sendSpawn()
repeat wait(40) until false
end
function onScriptTerminate(script, quitGame)
if script == thisScript() then
mb.unload()
end
end