XenoBot Forums - Powered by vBulletin

User Tag List

Results 1 to 10 of 10

Thread: Boss Checker

  1. #1

    Join Date
    Apr 2015
    Posts
    29
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)

    Boss Checker

    So, this happened the other day. I was going to hunt and found Midnight Panther, pretty cool. A Guy was walking by and Tamed it, after that he proceed to check if the Hydra boss was avaliable in PH, also probably checked for a few others, do we have a script capable of doing this? I could not find any.

  2. #2
    ososzayat's Avatar
    Join Date
    Oct 2014
    Posts
    69
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    yes we do. search in this forum and you'll find all you need

  3. #3

    Join Date
    Apr 2015
    Posts
    29
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by ososzayat View Post
    yes we do. search in this forum and you'll find all you need
    I could not find anything related to it...

  4. #4

    Join Date
    Jan 2014
    Posts
    20
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    i am also interested

  5. #5
    l4z's Avatar
    Join Date
    Oct 2015
    Posts
    133
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Cound't find aswell, and would like to get aswell

  6. #6
    Senior Member xux's Avatar
    Join Date
    Apr 2013
    Posts
    713
    Mentioned
    33 Post(s)
    Tagged
    0 Thread(s)
    Just do this manual, that would be your best bet.
    You could add towards a script a checker for certain creatures so it will ring an alarm for you.

    I found a lua somewhere who checked for x amount of creatures, i kinda made some adjustments and it should give a ring when x monster is on screen.
    Try this out:
    lua code:

    local specialMonsters = {"vampire","Zevelon Duskbringer"}


    -----------------------------------------------
    -----------------------------------------------
    -----------------------------------------------



    Module("Boss Alarm", function(self)
    local c = Creature(Self.TargetID())
    local useSpecial = c and table.find(specialMonsters, c:Name())
    if useSpecial then
    alert()
    self:Delay(3000)
    elseif not useSpecial then
    self:Delay(3000)
    end
    end)

    Need a private build script? PM me.

  7. #7
    Debond's Avatar
    Join Date
    Jul 2012
    Posts
    166
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by xux View Post
    Just do this manual, that would be your best bet.
    You could add towards a script a checker for certain creatures so it will ring an alarm for you.

    I found a lua somewhere who checked for x amount of creatures, i kinda made some adjustments and it should give a ring when x monster is on screen.
    Try this out:
    lua code:

    local specialMonsters = {"vampire","Zevelon Duskbringer"}


    -----------------------------------------------
    -----------------------------------------------
    -----------------------------------------------



    Module("Boss Alarm", function(self)
    local c = Creature(Self.TargetID())
    local useSpecial = c and table.find(specialMonsters, c:Name())
    if useSpecial then
    alert()
    self:Delay(3000)
    elseif not useSpecial then
    self:Delay(3000)
    end
    end)
    Thank you!
    Last edited by Debond; 06-08-2016 at 12:22 PM.

  8. #8
    Senior Member Apoc's Avatar
    Join Date
    Dec 2012
    Location
    Bolivia
    Posts
    461
    Mentioned
    11 Post(s)
    Tagged
    0 Thread(s)
    The script you're talking about is from WindBot, Im not sure if here in Xeno some1 has made something similar.

  9. #9
    BekayPK's Avatar
    Join Date
    Jul 2017
    Posts
    2
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @ xux
    That LUA did not work unforunately, do you perhaps have any other? B)

  10. #10
    Senior Member Trykon's Avatar
    Join Date
    Nov 2014
    Location
    UK
    Posts
    952
    Mentioned
    11 Post(s)
    Tagged
    0 Thread(s)
    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.

Posting Permissions

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