[rakbot] рандом клик

Botovod1488

Участник
Автор темы
35
8
Версия MoonLoader
Другое
Набросал вот такой вот код, всё время кликает по 5 раз, как сделать так что-бы кликало от 0 до 5 раз рандомно?

Lua:
function onTextDrawShow(textDrawId, positionX, positionY, textDrawString)
    if textDrawId == 506 then
    count = math.random(5)
    defCall = defCallAdd(2000, true, function()
    runCommand('!tdclick 506')
    printLog('slide skin!!')
    count = count - 1
    if count == 0 then defCallDelete(defCall) end
    end)
    end
end
 
Решение
Lua:
function onTextDrawShow(textDrawId, positionX, positionY, textDrawString)
    if textDrawId == 506 then
    math.randomseed(os.clock())
    count = math.random(5)
    defCall = defCallAdd(2000, true, function()
    runCommand('!tdclick 506')
    printLog('slide skin!!')
    count = count - 1
    if count == 0 then defCallDelete(defCall) end
    end)
    end
end

Sidney31

Известный
1,117
383
Lua:
function onTextDrawShow(textDrawId, positionX, positionY, textDrawString)
    if textDrawId == 506 then
    math.randomseed(os.clock())
    count = math.random(5)
    defCall = defCallAdd(2000, true, function()
    runCommand('!tdclick 506')
    printLog('slide skin!!')
    count = count - 1
    if count == 0 then defCallDelete(defCall) end
    end)
    end
end
 
  • Нравится
Реакции: Botovod1488