View Full Version : Boss Checker
The_Miguelito
01-12-2016, 06:15 PM
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.
ososzayat
01-13-2016, 07:23 AM
yes we do. search in this forum and you'll find all you need :D
The_Miguelito
01-13-2016, 06:26 PM
yes we do. search in this forum and you'll find all you need :D
I could not find anything related to it... :(
philippbonke
01-22-2016, 03:57 PM
i am also interested
Cound't find aswell, and would like to get aswell :D
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:
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)
Debond
06-08-2016, 12:11 PM
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:
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!
The script you're talking about is from WindBot, Im not sure if here in Xeno some1 has made something similar.
BekayPK
08-08-2017, 02:38 AM
@ xux
That LUA did not work unforunately, do you perhaps have any other? B)
Trykon
08-08-2017, 11:13 AM
http://forums.xenobot.net/showthread.php?43195-gt-gt-King-Scripts-lt-lt-Boss-Checker!
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.