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:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Follow character named xxx
#1
Any idea to create persistent that will fallow my other character like 5 sqm away from?
I want to exp ek + rp but want rp to keep distance
Reply

#2
Hello.

If cannot find listed monsters on screen then follow Player. If at least one of listed monsters found then it will do nothing.
local Player = 'Player name'
local Monsters = { 'Demon', 'Demon Skeleton', 'Ghoul' }

if maroundreachable(0, table.unpack(Monsters)) == 0 and target().id == 0 then
    local follow_creature = followed()
    if follow_creature.id == 0 or (follow_creature.id > 0 and follow_creature.name:lower() ~= Player:lower()) and paround(0, Player) > 0 then
        follow(Player)
        wait(1000)
    end
end

or this.. If cannot find listed monsters on screen then follow Player. If at least one of listed monsters found then use stop() function to stop following.
local Player = 'Player name'
local Monsters = { 'Demon', 'Demon Skeleton', 'Ghoul' }

local monsters_around = maroundreachable(0, table.unpack(Monsters))
if monsters_around == 0 and target().id == 0 then
    local follow_creature = followed()
    if follow_creature.id == 0 or (follow_creature.id > 0 and follow_creature.name:lower() ~= Player:lower()) and paround(0, Player) > 0 then
        follow(Player)
        wait(1000)
    end
elseif monsters_around > 0 and followed().id > 0 then
    stop()
end

Use of the scripts above to follow player when no monsters on screen and use Targeting to attack monster and keep distance, using stance "Keep Away". Once the monster appears, Targeting will attack (so stop following as well) and keep distance from monster.
Reply

#3
|Only Registered members can see download links. | Click here to buy subscription or here to register.
is possible the bot follow player in floor? when the other player down and up in stairs, rope, ladders....
Reply

#4
|Only Registered members can see download links. | Click here to buy subscription or here to register.
Arkilys is there a way to make character follow or use any stance to approach friendly player when the ground has firefild?
the action reachcreature() could be used for that?
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016