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
Another Monster Come on Screen Slime training
#1
Slime training in area with other mobs that (rarely) will walk on to screen. eg snake. If this snake takes slimes spot after it dies. How can I set bot to attack another mob? then go back to training?

I tried in "targeting" but once I "enable" targeting with monster names Snake/Crocodile. The trainer then begins "spam" clicking on slimes even if theres no other mobs on screen

thanks
Reply

#2
Hello.

You will need to develop a LUA script to use on Persistents that checks for what you said: If not slime monsters around you then disable trainer, attack until kill them and enable slime trainer.
local AllowedMonsters = { 'Slime' }


if connected() then
    local creatures = getcreatures('mfs')
    table.lower(AllowedMonsters)

    local unexpectedCreatureId = 0
    for _, creature in ipairs(creatures) do
        if creature.id > 0 table.find(AllowedMonsters, creature.name:lower()) == nil and creature.dist == 1 then
            unexpectedCreatureId = creature.id
            break
        end
    end

    if unexpectedCreatureId > 0 then
        setsettings('Tools/Slime Trainer/Enabled', false)
        if attacked().id ~= unexpectedCreatureId then
            attack(unexpectedCreatureId)
            wait(300, 500)
        end
    elseif getsettings('Tools/Slime Trainer/Enabled') == false then
        setsettings('Tools/Slime Trainer/Enabled', true)
    end
end
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016