Everyone who has never used our Bots before, can test each one for 2 days without any limitation.
The trial is given automatically when you login on the Bot, but in some cases it wouldn't work (security reasons).
If this happens, send me a private message and i will be checking the failed trials manually and adding it for those who didn't get it.
We are looking for resellers who may accept payment methods different from ours, including classictibia's cash, realesta's cash, mastercores' cash, etc. Interested? Click here at anytime.



Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Char wait for monks
#1
Hi

Is there any script or options about wait for summons?
Cave bot somethimes run and lost summons.
Reply

#2
Probably the admin will have a better script for you, but meanwhile try this script:

if maround(7, false, 'Monk') >= 1 then
    setsettings('Cavebot/Enabled', true)
else
    setsettings('Cavebot/Enabled', false)
    stop()
end


I did not test it because I'm waiting for the Nostalther bot update.
Let me know if this works
You can also try this:

local monkCount = maround(7, false, 'Monk')

if monkCount >= 1 then
    if not getsettings('Cavebot/Enabled') then
        setsettings('Cavebot/Enabled', true)
    end
else
    if getsettings('Cavebot/Enabled') then
        setsettings('Cavebot/Enabled', false)
        stop()
    end
end
Reply

#3
Hello.

You can also try following:
|Only Registered members can see download links. | Click here to buy subscription or here to register.
Reply

#4
ok thanks i use it but somethimes i lost monk, is there extra option to make next monk?
For exampel
IF two monks no on screen by 1 minuts there use utevo res "monk
Reply

#5
I think this is gonna work.
local CREATURE_NAME = 'Monk'
local MIN_COUNT = 2

local count = maround(CREATURE_NAME)
if count < MIN_COUNT then
    if LAST_TIME == nil then
        LAST_TIME = runningtime()
    elseif (runningtime() - LAST_TIME) >= 60 then
        cast('utevo res "Monk')
    end
elseif LAST_TIME ~= nil then
    LAST_TIME = nil
end
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016