TRY MAKE LOOT SORT SINCE THE ONE THAT MR @DarkstaR CREATED ISNT WORKING ATM![]()
TRY MAKE LOOT SORT SINCE THE ONE THAT MR @DarkstaR CREATED ISNT WORKING ATM![]()
set.antraxbomb1
Heycurrently I have moved to paid scripts and this thread is dead
I am sorry, but currently I have a lot of requests, both paid and unpaid, and putting that at the end will take some time to finally do it.
http://forums.xenobot.net/showthread...-your-requests
Last edited by Trykon; 06-27-2016 at 08:39 PM.
All my full afk scripts are accessible at:
My thread
My store
My project
Looking for RL Tibia testers - RP and EK scripts for FREE. Link to info.
can you change the number of creatures to stop follow?
local target = "Heal Up" -- put your leader name there
local ValidMonsters = {"Demon", "Grim Reaper", "Metal Gargoyle", "Manticore", "Young Goanna", "Adult Goanna", "Feral Sphinx", "Lamassu", "Sphinx", "Crazed Winter Vanguard", "Crazed Winter Rearguard", "Thanatursus", "Animated Feather", "Squid Warden", "Icecold Book", "Flying Book"}
local MonsterCheck = {}
local MonsterAmount = 0
function setMonsters()
for _, mname in pairs(ValidMonsters) do
MonsterCheck[mname] = true
end
end
do
setMonsters()
Module.New("follow", function(module)
MonsterAmount = 0
for name, c in Creature.iMonsters() do
if(MonsterCheck[name]==true) then
Targeting.Start()
MonsterAmount = 1
break
end
end
if(MonsterAmount == 0) then
Targeting.Stop()
local player = Creature(target)
if player:isOnScreen(true) then
Creature.Follow(target)
end
end
moduleelay(1000)
end)
end