View Full Version : XenoBot Bug - Open [Windows 7 x86] bot keep dropping items from
quaqua
10-30-2014, 08:21 PM
Bug ReportOperating System:
Windows 7 x86 Short Description:
bot keep dropping items from Behaviors: Feature error
Loss of or impaired mouse control
Indepth Description:
Since 2 updates i encounter VERY serious problem with xenobot, it is dropping many diffrent items from main bp, with no reason and random.
I noticed that fact in four diffrent situationss here are examples of bug WHICH i saw on my own eye:
1) ek on HIVE keep dropping mana potions (like 200 at once) on the floor.
2) ek on djinns at yalahar dropped 20 platinum coins
3) ek on hardcore brimstone bugs dropped a few ghp
4)rook char (bear paw collecter) dropped food to floor.
what i am sure about it :
1) all this scripts in which i have noticed this bug are in use by myself for months, and I never had any problems of tihis nature.
2) it's not related to looter option 'ground'
3)it makes bot UNUSABLE for me, im afraid to run character with softboots etc..
EDIT : i spoke with my frend, he is using Windows 8 64x and he noticed THE SAME problem, also here i see a thread about THE SAME problem out there on forum : http://forums.xenobot.net/showthread.php?30979-Bot-keeps-dropping-my-manas
HjugO
10-30-2014, 08:30 PM
Bug ReportOperating System:
Windows 7 x86 Short Description:
bot keep dropping items from Behaviors: Feature error
Loss of or impaired mouse control
Indepth Description:
Since 2 updates i encounter VERY serious problem with xenobot, it is dropping many diffrent items from main bp, with no reason and random.
I noticed that fact in four diffrent situationss here are examples of bug WHICH i saw on my own eye:
1) ek on HIVE keep dropping mana potions (like 200 at once) on the floor.
2) ek on djinns at yalahar dropped 20 platinum coins
3) ek on hardcore brimstone bugs dropped a few ghp
4)rook char (bear paw collecter) dropped food to floor.
what i am sure about it :
1) all this scripts in which i have noticed this bug are in use by myself for months, and I never had any problems of tihis nature.
2) it's not related to looter option 'ground'
3)it makes bot UNUSABLE for me, im afraid to run character with softboots etc..
EDIT : i spoke with my frend, he is using Windows 8 64x and he noticed THE SAME problem, also here i see a thread about THE SAME problem out there on forum : http://forums.xenobot.net/showthread.php?30979-Bot-keeps-dropping-my-manas
Pleaz post ur LUA scripteroni.
quaqua
10-30-2014, 08:43 PM
man this bug exist in all scripts.. as i wrote EVEN in rookgaard bear collecter which dont have any lua, just 6 wpts, and loot bear paw.. using it from lvl 8 till 53 atm
Pinnicle
10-30-2014, 09:01 PM
Are you using a vial dropper lua file?
Are you using a legit version of Xenobot?
DarkstaR
10-30-2014, 09:32 PM
man this bug exist in all scripts.. as i wrote EVEN in rookgaard bear collecter which dont have any lua, just 6 wpts, and loot bear paw.. using it from lvl 8 till 53 atm
That's a load of shit. The only reason that can cause this is a Lua script. The only thing that changed when this bug started occurring was the Lua engine.
Your vial dropper is probably lagging out or fucking up, share the code so it can be fixed.
quaqua
10-30-2014, 09:33 PM
That's a load of shit. The only reason that can cause this is a Lua script. The only thing that changed when this bug started occurring was the Lua engine.
so changing Lua engine made this happening
my frend told me about food on rook, but the 3 first cases i saw at my own
quaqua
10-30-2014, 09:34 PM
and why corym scripts which i used to run for weeks, just started to drop away rope? lol
DarkstaR
10-30-2014, 09:35 PM
so changing Lua engine made this happening
I made an IMPROVEMENT to the Lua engine that caused BAD SCRIPTS to fuck up. This happens when a script tries to spam vial dropping, causing it to send the vial drop request multiple times, even after the vials have already been moved, effectively chucking whatever took their place onto the floor. This is why it is dropping manas; they are typically next to vials.
quaqua
10-30-2014, 09:37 PM
ok i will try to make an better version of vial dropper (the one i am using for months is copied from forum) and report if it's ok
this two scripts causes the drop effect:
1)
local flasks = {283, 284, 285}
Module.New('vial dropper', function()
local vialIndex = -1
for i = 0, #Container.GetAll() do
local c = Container.New(i)
for s = 0, c:ItemCount() do
local item = c:GetItemData(s)
if table.contains(flasks, item.id) then
vialIndex = c:Index()
break
end
end
if vialIndex > 0 then
break
end
end
local vialBp = Container.New(vialIndex)
if Self.Cap() < 150 or vialBp:EmptySlots() < 5 then
for s = 0, vialBp:ItemCount() do
local item = vialBp:GetItemData(s)
if table.contains(flasks, item.id) then
vialBp:MoveItemToGround(s, Self.Position().x, Self.Position().y, Self.Position().z, 100)
return
end
end
end
end)
2)
local flasks = {283, 284, 285}
Module('vial-dropper', function(module)
local vialIndex = -1
for i = 0, #Container.GetAll() do
local c = Container(i)
for s = 0, c:ItemCount() do
local item = c:GetItemData(s)
if table.contains(flasks, item.id) then
vialIndex = c:Index()
break
end
end
if vialIndex > 0 then
break
end
end
local vialBp = Container(vialIndex)
if Self.Cap() < 350 or vialBp:EmptySlots() < 3 then
for s = 0, vialBp:ItemCount() do
local item = vialBp:GetItemData(s)
if table.contains(flasks, item.id) then
vialBp:MoveItemToGround(s, Self.Position().x, Self.Position().y, Self.Position().z, 100)
return
end
end
end
module:Delay(40000)
end, true)
DarkstaR
10-30-2014, 09:39 PM
ok i will try to make an better version of vial dropper (the one i am using for months is copied from forum) and report if it's ok
I have a potential fix for this problem, but I can't fix every instance of it without ruining the improvements I've made. You can try this, it should work
while (true) do
Self.DropFlasks(Self.Position().x, Self.Position().y, Self.Position().z)
wait(15000, 200000)
end
If this seems to still be an issue, I'll re-write the internal vial dropped to work better.
quaqua
10-30-2014, 09:44 PM
that's a good idea
quaqua
10-30-2014, 09:49 PM
I have a potential fix for this problem, but I can't fix every instance of it without ruining the improvements I've made. You can try this, it should work
while (true) do
Self.DropFlasks(Self.Position().x, Self.Position().y, Self.Position().z)
wait(15000, 200000)
end
If this seems to still be an issue, I'll re-write the internal vial dropped to work better.
This way doesnt cause dropping items like rope manas etc etc, but it's not the best option especialy on low lvls with not much cap
DarkstaR
10-30-2014, 09:55 PM
This way doesnt cause dropping items like rope manas etc etc, but it's not the best option especialy on low lvls with not much cap
Change the 200000 to 60000, and it will happen much more often.
quaqua
10-30-2014, 10:03 PM
ye thats what i did, anyway much thanks Darkstar
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.