XenoBot Forums - Powered by vBulletin

User Tag List

Results 1 to 7 of 7

Thread: [Request] Slime trainer that works

  1. #1

    Join Date
    Nov 2013
    Posts
    187
    Mentioned
    22 Post(s)
    Tagged
    0 Thread(s)

    [Request] Slime trainer that works

    Ive searched for too long to find a slime trainer that works

    All the ones here are buggd or sh!t

    There used to be a good one that you could follow the mother, execute script and it wouldn't attack it.

    Can anyone post a slime script that works?
    Not works 3 years ago works now

  2. #2
    Lifetime Subscriber Washand's Avatar
    Join Date
    Aug 2014
    Posts
    87
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)

    Thumbs up

    Quote Originally Posted by Exilded View Post
    Ive searched for too long to find a slime trainer that works

    All the ones here are buggd or sh!t

    There used to be a good one that you could follow the mother, execute script and it wouldn't attack it.

    Can anyone post a slime script that works?
    Not works 3 years ago works now
    Code:
    -- ╔═╗┬  ┬┌┬┐┌─┐  ╔╦╗┬─┐┌─┐┬┌┐┌┌─┐┬─┐
    -- ╚═╗│  ││││├┤    ║ ├┬┘├─┤││││├┤ ├┬┘
    -- ╚═╝┴─┘┴┴ ┴└─┘   ╩ ┴└─┴ ┴┴┘└┘└─┘┴└─
    -- ╔╗ ┬ ┬  ╔═╗┌─┐┬ ┬┬  ┬ ┬┌─┐┬─┐┌─┐  
    -- ╠╩╗└┬┘  ╠╣ │ ││ ││  │││├┤ ├┬┘├─┘  
    -- ╚═╝ ┴   ╚  └─┘└─┘┴─┘└┴┘└─┘┴└─┴  
      
    -- Attacks Mother Slime till under a certain HP, then continues to attack summoned ones
    -- Set MotherHP to the health percent you want to stop attacking the Mother Slime
      
    MotherHP = 50
      
    Module.New("Slime Trainer", function(Module)
        if Self.TargetID() == 0 then
            local Slimes = Self.GetTargets(1)
            for i = 1, #Slimes do
                if Slimes[i]:Name() == 'Slime' then
                    if (Slimes[i]:isMother() and Slimes[i]:HealthPercent() > MotherHP) or not Slimes[i]:isMother() then
                        Slimes[i]:Attack()
                        break
                    end
                end
            end
        end
        local Slime = Creature.New(Self.TargetID())
        if Slime:isMother() and Slime:HealthPercent() <= MotherHP then
            Self.StopAttack()
        end
        Module:Delay(2000)
    end)
    Try this, i use this yesterday and work 100% for me

  3. #3

    Join Date
    Nov 2013
    Posts
    187
    Mentioned
    22 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Washand View Post
    Code:
    -- ╔═╗┬  ┬┌┬┐┌─┐  ╔╦╗┬─┐┌─┐┬┌┐┌┌─┐┬─┐
    -- ╚═╗│  ││││├┤    ║ ├┬┘├─┤││││├┤ ├┬┘
    -- ╚═╝┴─┘┴┴ ┴└─┘   ╩ ┴└─┴ ┴┴┘└┘└─┘┴└─
    -- ╔╗ ┬ ┬  ╔═╗┌─┐┬ ┬┬  ┬ ┬┌─┐┬─┐┌─┐  
    -- ╠╩╗└┬┘  ╠╣ │ ││ ││  │││├┤ ├┬┘├─┘  
    -- ╚═╝ ┴   ╚  └─┘└─┘┴─┘└┴┘└─┘┴└─┴  
      
    -- Attacks Mother Slime till under a certain HP, then continues to attack summoned ones
    -- Set MotherHP to the health percent you want to stop attacking the Mother Slime
      
    MotherHP = 50
      
    Module.New("Slime Trainer", function(Module)
        if Self.TargetID() == 0 then
            local Slimes = Self.GetTargets(1)
            for i = 1, #Slimes do
                if Slimes[i]:Name() == 'Slime' then
                    if (Slimes[i]:isMother() and Slimes[i]:HealthPercent() > MotherHP) or not Slimes[i]:isMother() then
                        Slimes[i]:Attack()
                        break
                    end
                end
            end
        end
        local Slime = Creature.New(Self.TargetID())
        if Slime:isMother() and Slime:HealthPercent() <= MotherHP then
            Self.StopAttack()
        end
        Module:Delay(2000)
    end)
    Try this, i use this yesterday and work 100% for me


    yeah i tried this one but it eventually killed the mother slime for some reason

  4. #4
    Lifetime Subscriber Washand's Avatar
    Join Date
    Aug 2014
    Posts
    87
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Exilded View Post
    yeah i tried this one but it eventually killed the mother slime for some reason
    Tip:
    1.- Lure slime, wait to slime summon another slime
    2.- Execute script.
    3.- Enjoy :3

  5. #5

    Join Date
    Nov 2015
    Posts
    61
    Mentioned
    5 Post(s)
    Tagged
    0 Thread(s)
    How do I create this script so I can use it? How do I do? Thanks, im a newbie.

  6. #6
    Senior Member
    Join Date
    Sep 2012
    Posts
    1,070
    Mentioned
    18 Post(s)
    Tagged
    0 Thread(s)
    You must copy/paste the code inside a .lua file and place the file in documents/xenobot/scripts folder. Then you go to "Scripter" inside the game and execute the chosen script.
    @Guran99

  7. #7

    Join Date
    Nov 2015
    Posts
    61
    Mentioned
    5 Post(s)
    Tagged
    0 Thread(s)
    Thank you!

Posting Permissions

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