XenoBot Forums - Powered by vBulletin

User Tag List

Page 8 of 8 FirstFirst ... 678
Results 71 to 73 of 73

Thread: TRK Scripts - taking requests

  1. #71
    cuckied's Avatar
    Join Date
    Aug 2012
    Location
    Guayaquil, Ecuador
    Posts
    212
    Mentioned
    5 Post(s)
    Tagged
    0 Thread(s)
    TRY MAKE LOOT SORT SINCE THE ONE THAT MR @DarkstaR CREATED ISNT WORKING ATM
    set.antraxbomb1

  2. #72
    Senior Member Trykon's Avatar
    Join Date
    Nov 2014
    Location
    UK
    Posts
    952
    Mentioned
    11 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by cuckied View Post
    TRY MAKE LOOT SORT SINCE THE ONE THAT MR @DarkstaR CREATED ISNT WORKING ATM
    Hey currently 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.

  3. #73

    Join Date
    Jul 2020
    Posts
    3
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •