View Full Version : [Update] XenoBot v2.8.5 [9.71]
DarkstaR
11-08-2012, 08:46 PM
This update fixes some crashes and implements support for the 9.71 client.
If you were having problems with your scripts, please re-download this version.
Changelog:
v2.8.5
Added 9.71 compatibility.
Tweaked the Looter a bit.
Fixed the crash with LoadSettings().
Fixed many obscure crashes with the Scripter (ones which usually happened when switching characters or logging in).
Fixed a bug in the Scripter which caused Creature:isPlayer() to sometimes be inaccurate.
Fixed a bug which sometimes caused Scripts to stop working.
Fixed the priority on the Looter. Items higher on the list will be looted first again.
For download and operation instructions, refer back to this thread:
http://forums.xenobot.net/showthread.php?19
PunktG2pc
11-08-2012, 08:47 PM
:) testing
Infernal Bolt
11-08-2012, 08:48 PM
Good Job :D
Aquilla
11-08-2012, 08:48 PM
Finally running it now!
kakso1991
11-08-2012, 08:51 PM
nice !
Y2Quake
11-08-2012, 08:52 PM
gj mate ima test
Hendy
11-08-2012, 08:52 PM
Thank you DarkstaR.
Botdeluxe
11-08-2012, 08:56 PM
is it up for download??
doesnt work for me?? :S
Thank you DarkstaR.
Spectrus
11-08-2012, 08:57 PM
Yep, works. Thanks.
Botdeluxe
11-08-2012, 08:59 PM
WORKING TX :)
PunktG
11-08-2012, 09:01 PM
bot for me ignore all lua file
Lolaye
11-08-2012, 09:01 PM
Thanks DarkstaR testning now
dani619
11-08-2012, 09:04 PM
Great Job! but i got a small question, should i uninstal the last ver or just instal the new one on it?
Neant
11-08-2012, 09:05 PM
Thank you!
Kelevra712
11-08-2012, 09:05 PM
Thank you
MrElle
11-08-2012, 09:05 PM
thx for fast update :)
manitol
11-08-2012, 09:06 PM
testing but thansk is working=)
mlody10666
11-08-2012, 09:07 PM
nice;p
inccubus
11-08-2012, 09:10 PM
lua files aren't working, any of them.
PunktG
11-08-2012, 09:11 PM
lua files aren't working, any of them.
yes got same
inccubus
11-08-2012, 09:13 PM
DarkstaR
yes got same
Spectrus
11-08-2012, 09:15 PM
Working for me.
DarkstaR
11-08-2012, 09:16 PM
I need examples of your scripts to see what they are doing.
PunktG
11-08-2012, 09:16 PM
Working for me.
i test now othere script and work
will check more
forgee exori dont work for me to
Avani
11-08-2012, 09:18 PM
Great Job! but i got a small question, should i uninstal the last ver or just instal the new one on it?
The installer should just overwrite the old versions. So after installing this version you will still have only 1 version on your PC
inccubus
11-08-2012, 09:19 PM
i test now othere script and work
will check more
forgee exori dont work for me to
for me too, something with the forgee library is wrong
inccubus
11-08-2012, 09:22 PM
I need examples of your scripts to see what they are doing.
local config = {
delay = 100, -- delay time in between checks [default = 500ms]
attacks = {
['exori'] = {
min = 3,
spellRadius = 1,
checkRadius = 2,
countPlayers = false,
attackMode = 'none'
},
}
}
print([[
Name: Auto Area Attack
Description: Executes area spells on certain conditions
Author: Cavitt Glover (Syntax)
Version: 3.1.00 (updated 06.12.2012)]])
wait(5000)
function getTargetCount(pos, atkRadius, chkRadius, incPlayers, atkMode)
local n = 0
for i = CREATURES_LOW, CREATURES_HIGH do
local creature = Creature.GetFromIndex(i)
if(creature:isValid() and creature:ID() ~= Self.ID())then
if(creature:isOnScreen() and creature:isVisible() and creature:isAlive())then
local name = creature:Name()
if(getDistanceBetween(creature:Position(), pos) <= chkRadius)then
if(atkMode == 'none' and (creature:isPlayer()))then
return false
elseif(atkMode == 'enemies' and (creature:isFriendly() or creature:isInnocent()))then
return false
elseif(atkMode == 'strangers' and creature:isFriendly())then
return false
elseif(atkMode == 'friends' and creature:isInnocent())then
return false
end
if(getDistanceBetween(creature:Position(), pos) <= atkRadius)then
if(not creature:isPlayer() or incPlayers)then
n = n + 1
end
end
end
end
end
end
return n
end
function think()
for spell, dat in pairs(config.attacks)do
local amnt = getTargetCount(Self.Position(), dat.spellRadius, dat.checkRadius, dat.countPlayers, dat.attackMode)
if(amnt)then
local _max = (dat.max==nil) and amnt or dat.max
if(amnt >= dat.min) and (amnt <= _max)then
if(type(spell) == 'number')then
Self.UseItemWithMe(spell)
wait(900, 1200)
elseif(Self.CanCastSpell(spell))then
if(dat.needTarget)then
local target = Creature.GetByID(Self.TargetID())
if(target:isOnScreen() and target:isVisible() and target:isAlive())then
if(target:DistanceFromSelf() <= dat.spellRadius)then
Self.Say(spell)
wait(600, 1000)
end
end
end
Self.Say(spell)
wait(600, 1000)
end
end
end
end
end
while(true)do
think()
wait(config.delay)
end
not working too...
PunktG
11-08-2012, 09:31 PM
all mine lua stop work when i use forgee exori
but when i kill scripts all start work back :)
Y2Quake
11-08-2012, 09:47 PM
same as punktg
edit: same happens with forgee bp reseter
PunktG
11-08-2012, 09:49 PM
Syntax exori to got some problems
Bomasz
11-08-2012, 09:51 PM
When I use Xongi .luas bot just ignores them. Also when I load some of them, Tibia stops working. Sending you code via private msg.
Hendy
11-08-2012, 09:56 PM
It seems to me that mine are skipping some labels, like if I have optional hunting parts on the script it sometimes skips it and goes in xD.
DarkstaR
11-08-2012, 10:28 PM
So the problem with the Scripter was a bug that's been around since the beginning of the Scripter (it could be noticed when you would continuously kill/rexecute the same script - all scripts would eventually stop working). When I fixed the relog crashes by adding more thread safety checks, it ended up making this bug much more common (your script is working on the first execute, but breaks with subsequent executes, am I right?).
I've found and fixed the problem, re-download the bot.
Y2Quake
11-08-2012, 10:34 PM
it says there's already installed another version
to lazy to delete all and reinstall :( have all tibias opened
Neant
11-08-2012, 10:37 PM
it says there's already installed another version
to lazy to delete all and reinstall :( have all tibias opened
Do you have a choice? ^^
PunktG
11-08-2012, 10:39 PM
Do you have a choice? ^^
haha ye :)
Neant
11-08-2012, 10:42 PM
haha ye :)
Thought scripts weren't working with the initial v2.8.5? What's the option? :confused:
afftoncs7
11-08-2012, 10:44 PM
my scripts arnt working
DarkstaR
11-08-2012, 10:46 PM
my scripts arnt working
Neither is your reading ability.
Y2Quake
11-08-2012, 10:47 PM
okey i closed both 5 clients, deleted xeno, downloaded and installing.
results:
19:40 Rossebaudz [92]: exori
thanks mate =)
PunktG
11-08-2012, 10:58 PM
yes all work now great :)
now i can start all 20 clients
robin
11-08-2012, 11:37 PM
the exori script still doesn't work for me.
clean-installed the bot twice.
it casts exori rarely when 5 monsters are around, despite 4 being set in the script :/
any idea why this happens?
EDIT: Generally something's wrong with the Scripter. DropItems doesn't work either. And SpellCast function (which I will PM you) as well.
DarkstaR
11-08-2012, 11:42 PM
the exori script still doesn't work for me.
clean-installed the bot twice.
it casts exori rarely when 5 monsters are around, despite 4 being set in the script :/
any idea why this happens?
1. It could be on cooldown. Check your sleeps.
2. A player may be in range, causing it to stop.
3. You may not have a target but have needTarget set.
4. You may have a tagret that is outside of the spell radius and it's waiting for the target to get inside.
Miguelism
11-08-2012, 11:49 PM
My tibia crash after 1 hr botting..
Avani
11-08-2012, 11:52 PM
Been botting on 2 accounts for about 3h hour, everything works fine.
Thank you DarkstaR
robin
11-09-2012, 12:12 AM
1. It could be on cooldown. Check your sleeps.
2. A player may be in range, causing it to stop.
3. You may not have a target but have needTarget set.
4. You may have a tagret that is outside of the spell radius and it's waiting for the target to get inside.
Neither of the above. Everything is the same as before today's patch: the scripts and the conditions under which my char is botting. But sadly some features aren't working.
I will PM you with a few examples ;]
Mannow
11-09-2012, 12:44 AM
My tibia crash after 1 hr botting..
If you are using a proxy please make sure that your paid service has not expired.
Else your proxy will crash in turn kicking you from tibia EVERY hour.
vengansa_la_cabra
11-09-2012, 01:26 AM
you're the best
My Tibia client crashes every hour or so also. I'm a 130 EK botting Lich Hell. It comes up with the Windows "This program has encountered an error and must be stopped" error every hour or so. The client and everything completely freezes without warning. I pretty much can't bot anymore xD
Miguelism
11-09-2012, 01:51 AM
If you are using a proxy please make sure that your paid service has not expired.
Else your proxy will crash in turn kicking you from tibia EVERY hour.
Actually i have like 24 days of bot i dont know why maybe its because the new update :S
Angel101
11-09-2012, 03:50 AM
Just had a crash hunting bog raiders / death
ohagan
11-09-2012, 04:04 AM
i have been going steady in yala dragons for about 3 hours thank you darkstar for the great update :D
DarkstaR
11-09-2012, 04:15 AM
I'll need scripts provided for the locations that are crashing. As far as my tests have shown, it is stable.
Angel101
11-09-2012, 04:16 AM
An now just had Mistrock Cycs crash on my other bot as well :/ I was running 2 seperate Scripts 1 The Free Mistrock Cycs Script uploaded on the sticky .XBST Free Scripts/Depositors and the other was Free Yalahar Bog Raiders script in the same location.
Also running the below .lua for Safe Exori
And a flask dropper
local config = {
delay = 500, -- delay time in between checks [default = 500ms]
attacks = {
['exori gran'] = {
min = 4, -- minimum targets in to use this spell
spellRadius = 1, -- range to count targets to attack
checkRadius = 5, -- safe range to check for players (should always be larger or at least equal to spellRadius)
countPlayers = false, -- include players in the target count (incase you are intending on attacking players)
attackMode = 'none' -- none, enemies, strangers, friends, everyone
},
['exori'] = {
min = 3,
spellRadius = 1,
checkRadius = 5,
countPlayers = false,
attackMode = 'none'
},
}
}
print([[
Name: Auto Area Attack
Description: Executes area spells on certain conditions
Author: Cavitt Glover (Syntax)
Version: 3.1.00 (updated 06.12.2012)]])
wait(5000)
function getTargetCount(pos, atkRadius, chkRadius, incPlayers, atkMode)
local n = 0
for i = CREATURES_LOW, CREATURES_HIGH do
local creature = Creature.GetFromIndex(i)
if(creature:isValid() and creature:ID() ~= Self.ID())then
if(creature:isOnScreen() and creature:isVisible() and creature:isAlive())then
local name = creature:Name()
if(getDistanceBetween(creature:Position(), pos) <= chkRadius)then
if(atkMode == 'none' and (creature:isPlayer()))then
return false
elseif(atkMode == 'enemies' and (creature:isFriendly() or creature:isInnocent()))then
return false
elseif(atkMode == 'strangers' and creature:isFriendly())then
return false
elseif(atkMode == 'friends' and creature:isInnocent())then
return false
end
if(getDistanceBetween(creature:Position(), pos) <= atkRadius)then
if(not creature:isPlayer() or incPlayers)then
n = n + 1
end
end
end
end
end
end
return n
end
function think()
for spell, dat in pairs(config.attacks)do
local amnt = getTargetCount(Self.Position(), dat.spellRadius, dat.checkRadius, dat.countPlayers, dat.attackMode)
if(amnt)then
local _max = (dat.max==nil) and amnt or dat.max
if(amnt >= dat.min) and (amnt <= _max)then
if(type(spell) == 'number')then
Self.UseItemWithMe(spell)
wait(900, 1200)
elseif(Self.CanCastSpell(spell))then
if(dat.needTarget)then
local target = Creature.GetByID(Self.TargetID())
if(target:isOnScreen() and target:isVisible() and target:isAlive())then
if(target:DistanceFromSelf() <= dat.spellRadius)then
Self.Say(spell)
wait(600, 1000)
end
end
end
Self.Say(spell)
wait(600, 1000)
end
end
end
end
end
while(true)do
think()
wait(config.delay)
end
DarkstaR
11-09-2012, 04:34 AM
Is there anything special happening when it crashes? About to deposit etc.
popit
11-09-2012, 05:10 AM
awesome :D
Angel101
11-09-2012, 05:59 AM
Mistrock cycs had just levitated down off a cliff.
Bog raiders was above ground fighting 2 big raiders
Spooky22
11-09-2012, 06:02 AM
Got a video surface graphics bug or something while botting my low level in femor hills
fxtrok
11-09-2012, 06:33 AM
So the problem with the Scripter was a bug that's been around since the beginning of the Scripter (it could be noticed when you would continuously kill/rexecute the same script - all scripts would eventually stop working). When I fixed the relog crashes by adding more thread safety checks, it ended up making this bug much more common (your script is working on the first execute, but breaks with subsequent executes, am I right?).
I've found and fixed the problem, re-download the bot.
I was having the same issue as you described. I'd work perfectly the first time and then I'd bug at some point in the lua. I will uninstall it and re install and come back with more feedback.
Gordo
11-09-2012, 07:08 AM
So i guess this update didnt go so smoothly? :S
PunktG
11-09-2012, 07:46 AM
So i guess this update didnt go so smoothly? :S
but now for me working great
20 accounts from 9h full afk
0 problems :)
Gordo
11-09-2012, 07:50 AM
but now for me working great
20 accounts from 9h full afk
0 problems :)
Nice Punkt, ill give it a go then see if anything happens :p
Y2Quake
11-09-2012, 09:59 AM
been botting 5 chars without any problem :/
Nostrax
11-09-2012, 11:38 AM
This new Injector can't find my client hmmz, quote to help me please :)
robin
11-09-2012, 11:42 AM
for me the bot doesn't crash, but something's wrong with the Scripter. Some scripts (that used to work before) stopped working as intended. E.g. Exori Script that is supposed to work every time 4 monsters surround me. However in reality it cast 'exori' only once being surrounded by 4 monsters for about 2 minutes.
Niyar
11-09-2012, 12:32 PM
This new Injector can't find my client hmmz, quote to help me please :)
Delete the bot, and then install it again. It will work then ;).
Angel101
11-09-2012, 12:48 PM
Just crashed again, knight from bog raiders was going to refill (which was earlier then he should have for some reason) got to gate guard and bot crashed. I had maybe 3 crashes in the 6 or so months i had played before. Now i've had 3 in a day. :/
hikoj
11-09-2012, 01:57 PM
sometimes the bot just stop reading the labels (or does not read it) lua file and just skip them ( i already downloaded the last version )
for example, im using a xongi's script (war golems) so when the character go to the depot the it does not open the depot and just ignore the labels
DarkstaR
11-09-2012, 02:20 PM
for me the bot doesn't crash, but something's wrong with the Scripter. Some scripts (that used to work before) stopped working as intended. E.g. Exori Script that is supposed to work every time 4 monsters surround me. However in reality it cast 'exori' only once being surrounded by 4 monsters for about 2 minutes.
I'll need this script provided.
Just crashed again, knight from bog raiders was going to refill (which was earlier then he should have for some reason) got to gate guard and bot crashed. I had maybe 3 crashes in the 6 or so months i had played before. Now i've had 3 in a day. :/
sometimes the bot just stop reading the labels (or does not read it) lua file and just skip them ( i already downloaded the last version )
for example, im using a xongi's script (war golems) so when the character go to the depot the it does not open the depot and just ignore the labels
I'm doing everything I can to try to fix these issues but I've not been able to recreate them. Providing full scripts would help greatly (preferably something I can use on my 135ek. All other chars about to enter warmode).
James_1992
11-09-2012, 02:34 PM
CAN ANYONE HELP ME :( I HAVE PROBLEMS WITH SAVING MY WAYPOINTS, HMM CLICK ON MYSELF SETTINGS < THAN > Click on colon save all and okej :O But it's not saved :O I dont have it in settings :/ Also if anyone can help me about traveling , hmm how to script that :(
Angel101
11-09-2012, 05:09 PM
And then died on my other ek botting mistrock. There is no possible way to die on this guy without a complete bot fuck up. Level 80, fully equipped 100/94 Cyc's should never kill him
Tuben
11-09-2012, 05:22 PM
Nvm fixed that.
PunktG
11-09-2012, 08:47 PM
k almoust 24h testing on many clients
all working great 0 problems
Neant
11-09-2012, 09:23 PM
I've been botting for about 20h on a lot of clients. No problems whatsoever. GJ.
robin
11-09-2012, 10:40 PM
I'll need this script provided.
I have already provided you with the script by PM yesterday. Did they help in figuring out what's wrong?
EDIT: Solved the problem. Changed my script file a bit. Sorry for the hassle. Was my fault entirely. Thanks for your willingness to help and for the update :D
Angel101
11-10-2012, 12:14 PM
sucker for punishment so i'm trying this again.
It also seems that the scripts i'm running just stop working for whatever reason. At first my safe exori script works fine, but 10 minutes in it just stops. Same with Vial Dropper.
Angel101
11-10-2012, 12:23 PM
Running Holman's Exori Thread from the second page. http://forums.xenobot.net/showthread.php?7700-Supaaaah-Safe-Exori-Script!/page2&highlight=safe+exori
This .lua and .xbst http://forums.xenobot.net/showthread.php?7188-Hypn0tic-Ki11er-s-AFK-Scripts&p=79382#post79392
This for vial dropping local emptyVialId = 285 -- Empty vial ID.
local amountToDrop = 5 -- Minimum amount to drop.
function dropItem(id, cnt)
local cont = Container.GetFirst()
while (cont:isOpen()) do
for spot = 0, cont:ItemCount() do
local item = cont:GetItemData(spot)
if (item.id == id and item.count >= math.random(cnt, cnt+5)) then
cont:MoveItemToGround(spot, Self.Position().x, Self.Position().y, Self.Position().z)
return true
end
end
cont = cont:GetNext()
end
return false
end
while (true) do
if (dropItem(emptyVialId, amountToDrop)) then
wait(30000, 45000)
else
wait(2000)
end
end
It just randomly stopped dropping vials mid hunt, now up to 88, randomly stopped exoring/exori graning.
DarkstaR
11-10-2012, 02:58 PM
sucker for punishment so i'm trying this again.
It also seems that the scripts i'm running just stop working for whatever reason. At first my safe exori script works fine, but 10 minutes in it just stops. Same with Vial Dropper.
Did you re-install the bot like the main post said?
Angel101
11-10-2012, 03:02 PM
Did you re-install the bot like the main post said?
Attempted to, got the notice that a version of the bot already exists though so figured it was still the exact same download
DarkstaR
11-10-2012, 03:04 PM
Attempted to, got the notice that a version of the bot already exists though so figured it was still the exact same download
Well there's your problem. Uninstall and re-install from a fresh download. You are missing critical Scripter fixes.
jayenomics
11-10-2012, 03:13 PM
thankfully, all the scripts I use work perfectly still
Angel101
11-10-2012, 03:50 PM
Wonderful re downloaded and runner much better now. Appreciate the fixes
Wariat19q
11-10-2012, 11:17 PM
Isn't work -.- There are problems with scripts.
DarkstaR
11-11-2012, 01:29 AM
Isn't work -.- There are problems with scripts.
Please read the thread and make sure you've installed a proper version before complaining. This problem, to the best of my knowledge, is fixed.
Wariat19q
11-11-2012, 07:17 AM
OK, I will try by ur solution, but i want to say that scripts aren't work good, before uptade were good
dondiablo
11-11-2012, 09:12 AM
DarkstaR when the teleport problem will be fixed? The bot gets stuck when you enter a teleport.
Infernal Bolt
11-11-2012, 12:27 PM
DarkstaR when the teleport problem will be fixed? The bot gets stuck when you enter a teleport.
use Self.Step(dir)
has anyone else felt that lukefishers Anti KS works a bit worse with this update? like its not avoiding hitting others monsters.
dondiablo
11-11-2012, 03:16 PM
use Self.Step(dir)
So in a script it will be use "Self.Step(North)" ?
Alastorsz
11-11-2012, 03:22 PM
DarkstaR scripts are not working properly, for example, im using Xongiver's hive script, it is working, but not properly, before the update as soon as the char gets surrounded by 3 or more monsters instantly cast exori, now it takes like 5 seconds or more, causing much more waste and lower exp rate, I tried also with forge's exori script and is happening the same, after casting the first exori , it cast the next area spell well, but is the first one that takes too much time
EDIT: ofc I deinstalle and reinstalled the bot and it dont fix the problem, i alrey have the latest version :S
Alastorsz
11-12-2012, 03:13 PM
DarkstaR nick please fix the script issue, sorry to repost the problem but is rlly annoying to wait 3-5 seconds to shot exori or exori gran while being totally surrounded by monsters :S
DarkstaR
11-12-2012, 05:54 PM
I can't fix an issue I don't have. It works perfectly fine for me so I'm not sure what everyone else's problem is. The scripts provided, and my own scripts, all work fine. I need more information.
Alastorsz
11-12-2012, 11:11 PM
DarkstaR as I told you the scripts ARE WORKING , but they are not working properly, maybe you didnt noticed that, for example, the exori script is working slowly, it shoot the spell, but not when it must shoot it, for example, when i am attacking 2 monsters and the 3rd comes, it used to shoot the spell instantly, as soon as the monster is close to me, but now, i am getting sorrounded by 3 or more monsters and takes 3 or 5 seconds more after the spell requeriments are met to cast the spell, and the next spell (exori and later exori gran in this case) takes another 3 or 5 seconds, wich causes much more waste of uhp
if u want I can private cast for u on tibiacast, is very easy to see the issue, u gonna see it instantly and constantly casue in that place im getting surrounded all the time
DarkstaR
11-12-2012, 11:54 PM
@DarkstaR (http://forums.xenobot.net/member.php?u=2) as I told you the scripts ARE WORKING , but they are not working properly, maybe you didnt noticed that, for example, the exori script is working slowly, it shoot the spell, but not when it must shoot it, for example, when i am attacking 2 monsters and the 3rd comes, it used to shoot the spell instantly, as soon as the monster is close to me, but now, i am getting sorrounded by 3 or more monsters and takes 3 or 5 seconds more after the spell requeriments are met to cast the spell, and the next spell (exori and later exori gran in this case) takes another 3 or 5 seconds, wich causes much more waste of uhp
if u want I can private cast for u on tibiacast, is very easy to see the issue, u gonna see it instantly and constantly casue in that place im getting surrounded all the time
For the 50th fucking time, I DO NOT HAVE THIS ISSUE. I have tried ALL OF THE PROVIDED EXORI SCRIPTS. It works PERFECTLY FINE which, in case you have trouble understanding, means WITHOUT ISSUE. Now, I either need better information or for you to stop asking me to fix it. Because, without recreating something, I cannot fix it.
Alastorsz
11-13-2012, 12:25 AM
Ok, I understand that, but , im not able to recreate it on your computer, but seeing it from mine (while casting) could help?
DarkstaR
11-13-2012, 12:43 AM
Ok, I understand that, but , im not able to recreate it on your computer, but seeing it from mine (while casting) could help?
Might as well try it. Pastebin the script again and give me your cast name.
Alastorsz
11-13-2012, 12:50 AM
Might as well try it. Pastebin the script again and give me your cast name.
Ok i just sent u a pvt msg whit the info u need, see u on the cast
Flummer
11-13-2012, 10:01 AM
Have Same issue with my bot i think, all working scripts doesn't work. To be more exactly they work then after a while its like the bot stops reading labels and just go after walker.
Ungoliant
11-13-2012, 01:24 PM
DarkstaR
I've had some time now to sit down and actually watch the bot and makes some "notes". I have found their to be a few issues with the last update.
-Missing loot. I brought this to your attention before; however, it seems it is missing bodies more frequently now. It ust to be rare, now it probably misses 1 out of 20 or so. (I bot the hive on grey island. )
-Delay in spellcasting. As others had reported I too am seeing a noticeable delay when casting exori / gran / mas. This was almost instant in the prior update. (Note: I do not see a delay in the healing, nor in the automatic spell casting such as exori ico.)
//Just to exaggerate on the above, It delays when initially surrounded by the monsters as well as when cycling through spells to cast.
EDIT: "Fixed a bug in the Scripter which caused Creature:isPlayer() to sometimes be inaccurate." --Looking at the change log, this function is used in the script quite a bit... Could this be causing the delay?
Good stuff. ^.^
-Looting is noticeably faster, especially when looting multiple items from the same body.
-I have had no script errors or any kind of disconnects / freezes etc that I have seen others report. (This was probably fixed).
And of course, if their is anything I can do to help, please ask. I was testing on a level 300~ ek.
DarkstaR
11-13-2012, 02:07 PM
@DarkstaR (http://forums.xenobot.net/member.php?u=2)
I've had some time now to sit down and actually watch the bot and makes some "notes". I have found their to be a few issues with the last update.
-Missing loot. I brought this to your attention before; however, it seems it is missing bodies more frequently now. It ust to be rare, now it probably misses 1 out of 20 or so. (I bot the hive on grey island. )
-Delay in spellcasting. As others had reported I too am seeing a noticeable delay when casting exori / gran / mas. This was almost instant in the prior update. (Note: I do not see a delay in the healing, nor in the automatic spell casting such as exori ico.)
//Just to exaggerate on the above, It delays when initially surrounded by the monsters as well as when cycling through spells to cast.
EDIT: "Fixed a bug in the Scripter which caused Creature:isPlayer() to sometimes be inaccurate." --Looking at the change log, this function is used in the script quite a bit... Could this be causing the delay?
Good stuff. ^.^
-Looting is noticeably faster, especially when looting multiple items from the same body.
-I have had no script errors or any kind of disconnects / freezes etc that I have seen others report. (This was probably fixed).
And of course, if their is anything I can do to help, please ask. I was testing on a level 300~ ek.
1. Nothing really changed with the looter. I need to fix it, though, the missing loot has been happening for me, even before this update. It seems to mostly happen if the character diagonal steps to the body.
2. The delay is pseudo and I've covered it with others. Some small changes in the Scripter messed with the timing. This is now allowing the Targeting to shoot spells before the scripts will, putting attacks on a cooldown. I've also noticed that the script many people use, made by Syntax, is bugged in a sense where it can delay itself for a total of 2 seconds, if it runs into exhaust, before it tries again. By moving exori hur, exori ico, etc into the script and fixing the delay problems, this issue will be completely fixed.
3. Haven't made it faster, that's weird.
4. Good to hear.
acrysto
11-13-2012, 02:25 PM
My scripts stop working after 1-2 rounds. Is this happening for other people too?
Ungoliant
11-13-2012, 02:38 PM
Thanks for the reply. Glad to hear your on top of things like usual. ;)
acrysto
I have been botting now for 16~ hours straight on my main account, i've probably made 8-10 "laps" back to the dp. No issues.
acrysto
11-13-2012, 02:44 PM
Have Same issue with my bot i think, all working scripts doesn't work. To be more exactly they work then after a while its like the bot stops reading labels and just go after walker.
Same.
Thanks for the reply. Glad to hear your on top of things like usual. ;)
acrysto
I have been botting now for 16~ hours straight on my main account, i've probably made 8-10 "laps" back to the dp. No issues.
Apparantly I am not the only one with this problem mate. I'm not saying everybody has it, but quite some people.
DarkstaR
11-13-2012, 06:51 PM
I've said it 5 million fucking times and this is the last time I'm saying it: if you want your problem fixed, give me the scripts which aren't working and tell me how to set them up / recreate the issue. Nobody is exempt to this. You think you are? You're not. No.Fucking.Exceptions. Provide your scripts and the information requested or get the fuck out.
acrysto
11-13-2012, 08:51 PM
All the scripts, they stop working after a while. Especially the labelling, the bot will start to ignore them after a while. So far I've found no script that is exempt from this. Exori scripts, just regular setting scripts for talking to npc's etc, soft boots wearer etc etc.
Messed Around
11-13-2012, 09:00 PM
acrysto, I'll just requote this to save DarkstaR the hassle.
Provide your scripts and the information requested or get the fuck out.
DarkstaR
11-13-2012, 10:28 PM
All the scripts, they stop working after a while. Especially the labelling, the bot will start to ignore them after a while. So far I've found no script that is exempt from this. Exori scripts, just regular setting scripts for talking to npc's etc, soft boots wearer etc etc.
Learn to read, motherfucker. (http://forums.xenobot.net/showthread.php?8537-Provide-Scripts!)
Y2Quake
11-13-2012, 11:26 PM
why is everything working perfect for me? I tried all my scripts and no bugs so far since the last update
so weird.
Ungoliant
11-14-2012, 12:32 AM
Y2Quake
I haven't encountered any "bugs" either, it just seems some scripts are working slower / differently then before. ^.^
--Honestly, it could be something do with user caches or something silly..
ohagan
11-14-2012, 12:58 AM
hey my back pack resets have been funny since the new update :/
donwicho
11-14-2012, 03:19 AM
im having trouble with the fuckin healer man when i put it to heal with exura 90% health and to heal when 75% with exura gran it just keeps on using exura even if it is at 50% health
Messed Around
11-14-2012, 04:18 AM
im having trouble with the fuckin healer man when i put it to heal with exura 90% health and to heal when 75% with exura gran it just keeps on using exura even if it is at 50% health
Obviously you've set it up wrong and haven't read around the forums how to set it up..
Exura Gran should be on the top of the list, Exura should be at the bottom.
acrysto
11-14-2012, 11:11 AM
K so i'll upload a rar with 250 scripts. gimme a second darkstar.
There, the scripts that don't work 'motherfucker' good luck with it.
Forgee
11-14-2012, 01:00 PM
There, the scripts that don't work 'motherfucker' good luck with it.Hilarious. Why go through that trouble instead of just supplying a script?
DarkstaR
11-14-2012, 01:17 PM
There, the scripts that don't work 'motherfucker' good luck with it.
You only have to provide one that doesn't work.
Also, the fuck? It's an Exe.
kreoo
11-14-2012, 08:17 PM
acrysto if you need something fixed, bring the problem! Would you write on a piece of paper a problem that ur having with your car and take it to mechanic? No. Same here at Xeno forums.
Its a human condition, we can not address a problem unless we see it somehow.
As for Darkstar.. dont lose your temper haha, we are all your clients here... and I would not like to be called a motherfucker just because I dont know how to read! I'd be ok with something lighter ;p
If you dont like the hassle release it for free and live a fine life without customer support ;)
lol, gotta love the forums :D
acrysto
11-14-2012, 09:06 PM
See, who's not reading now? THey _ALL_ stop working after a few rounds. I know but it's a .rar file. Dunno why it put it .exe
acrysto if you need something fixed, bring the problem! Would you write on a piece of paper a problem that ur having with your car and take it to mechanic? No. Same here at Xeno forums. Its a human condition, we can not address a problem unless we see it somehow. As for Darkstar.. dont lose your temper haha, we are all your clients here... and I would not like to be called a motherfucker just because I dont know how to read! I'd be ok with something lighter ;p If you dont like the hassle release it for free and live a fine life without customer support ;) lol, gotta love the forums :D I wrote it down and got called a motherfucker so I give him what he wants.
DarkstaR
11-14-2012, 09:08 PM
See, who's not reading now? THey _ALL_ stop working after a few rounds. I know but it's a .rar file. Dunno why it put it .exe
I'll say it again. Learn to read. (http://forums.xenobot.net/showthread.php?8537-Provide-Scripts!)
Provide 1 or 2 scripts and it will be fine.
hoodnasty
11-14-2012, 09:38 PM
Also, the fuck? It's an Exe.
LOLLLLLL. Takes balls to send darkstar a fail virus.
acrysto
11-15-2012, 12:22 AM
It's not a virus, i uploaded my rar file with speedyshare and apparantly it got put into an exe. I don't know why.
donwicho
11-15-2012, 12:37 AM
it would be nice if next update had autofishing- low cap alarm - low ammo alarm
Spectrus
11-15-2012, 12:38 AM
it would be nice if next update had autofishing- low cap alarm - low ammo alarm
None of these are needed. All are possible with scripts. Check the forums.
Avani
11-15-2012, 12:45 AM
None of these are needed. All are possible with scripts. Check the forums.
They are possible with scirpts (and not really important imo) but i think it's good to implement as much features in XenoBot as possible. Ofcourse this is not nessesery in the near future but it would be nice to have thinks like Soft Boots refiller ingame/inXeno. This will make life alot easier and will make Xeno look alot more advanced.
Spectrus
11-15-2012, 12:47 AM
will make Xeno look alot more bloated.
FTFY.
Avani
11-15-2012, 12:48 AM
FTFY.
I have no idea what FTFY means but ofcourse, you don't have to overload Xeno with functions. But as i stated above things like Soft Refiller / Rings Refiller / Necklace Refiller / Vial dropper would be cool to have inXeno
Spectrus
11-15-2012, 12:49 AM
Fixed that for you. :p
I just don't think those things are vital, and are sort of frivolous when it takes like 4 or 5 lines of scripting to do it for you.
Avani
11-15-2012, 12:52 AM
Fixed that for you. :p
I just don't think those things are vital, and are sort of frivolous when it takes like 4 or 5 lines of scripting to do it for you.
It's not something thats needed RIGHT NOW. But it will be alot easier to just turn something on in-game instead of executing a script from a 20+ script list. And i think people that use the trial will think Xeno is a lot more advanced because those people won't read the whole forum. Just my thoughts ;)
Y2Quake
11-15-2012, 01:37 AM
there are more important things to take rid of before.
for example set settings instead of loadsettings
fix special areas
chase functionality
and many many others darkstar surely knows about.
Angel101
11-16-2012, 11:04 AM
Hoodnasty why are you still posting here you worthless thief? Honestly who has to steal 200 bucks from someone off the internet to get by. So disgusting.
Ungoliant
11-16-2012, 01:31 PM
Seems like the wrong place for this Angel101, try the scammer section of the trade forums.
Please don't distract dark from getting the update out asap. ;)
Angel101
11-16-2012, 02:38 PM
I'm sorry if you think it's the wrong section, but anywhere I see him post I will most certainly be chiming in. No reason anyone else should be scammed by him, and no reason anyone should be offended by me pointing it out.
kubax36
11-19-2012, 02:10 AM
DarkstaR
I have not read posts before but i noticed that bot is missing bodies when step diagonal to them, it happens mostly under water (sunken, sea serpents). Also bot is still not moving across special areas while its set to walk on fire and walk on furnitures and we need to use mapclicks, so we cant still bot on demons becouse of this ugly fire elementals shooting fire fields(i know, it was reported many times :D)
Next thing is that if u have wpt next to hole or stairs and u are using mapclicks then bot is falling down/going up very often.
If Pos Z is 7 then i cant see what is under me when i use xray so its still possible to make someone red skull if he is using exori with xray checker. I heard that elfbot had same issue but idk why, can u explain me why? I am really curious :D
Now some proposals :D
1. Can u add something like setPlayerDetectedAlarmEnabled(true/false)? Its really anyoying when i hear everytime when my char is reffiling "player detected" alarm. Its ok if someone is botting 1acc but it makes u angry when u are botting 12 or more accs.
2. Can u add atleast one more spell to targetting? I know, its possible by lua file, but i caught my char 10-15 times (last time 2 days ago) running around the spawn using wand only, becouse lua get bugged, even reloading script was not helping, i had to restart files. 10-15 times in 3 months(cuz i started to use lua targetting 3 months ago) is veeeeeery rare, but still adding more spells to targetting should make this safe bot even more safe than it is now :)
donwicho
11-20-2012, 01:35 AM
None of these are needed. All are possible with scripts. Check the forums.
who are you to say what things arent need it, i need i am a college student who need to do work and sleep i am not in my computer all day i would be nice just to be asleep and hear low cap so i can go deposit and go back to sleep you self centered mother fucker
soul4soul
11-20-2012, 01:41 AM
DarkstaR
Also bot is still not moving across special areas while its set to walk on fire and walk on furnitures and we need to use mapclicks, so we cant still bot on demons becouse of this ugly fire elementals shooting fire fields(i know, it was reported many times :D)
ahh nice piece of information I didnt know disabling walk on fire/furnitures made special areas work.
DarkstaR
If Pos Z is 7 then i cant see what is under me when i use xray so its still possible to make someone red skull if he is using exori with xray checker. I heard that elfbot had same issue but idk why, can u explain me why? I am really curious :D
The server doesnt send information about underground floors if your on ground 7 and higher(above ground). Since you dont get the information you can use xray.
DarkstaR
Now some proposals :D
1. Can u add something like setPlayerDetectedAlarmEnabled(true/false)? Its really anyoying when i hear everytime when my char is reffiling "player detected" alarm. Its ok if someone is botting 1acc but it makes u angry when u are botting 12 or more accs.
being able to set ALL options like this would be great. In the mean time you can use the crappy loadSettings() which requires you to have 2 xbst files.
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.