PDA

View Full Version : Soft Boots?



Trolled1337xx
03-15-2015, 08:50 AM
Okay guys, I was botting water eles in PH by BT scrips, I was using soft boots. When I woke up I had died by monsters and my softs was gone, not my bp, not my boots. I had AOL, not bless, so I didn't forget any bless or smth.. How is this possible? If I'm correct, other ppl lost their softs aswell.

Thank you :)

HjugO
03-15-2015, 09:03 AM
Okay guys, I was botting water eles in PH by BT scrips, I was using soft boots. When I woke up I had died by monsters and my softs was gone, not my bp, not my boots. I had AOL, not bless, so I didn't forget any bless or smth.. How is this possible? If I'm correct, other ppl lost their softs aswell.

Thank you :)

Gimme your soft changer script.

Trolled1337xx
03-15-2015, 09:14 AM
Gimme your soft changer script.

local ManaToEquip = 85 -- Mana Percent to equip soft boots.
local NormalBoots = 3079 -- Item ID of your normal boots. 3079 = BOH/ 4033 = DRAKEN BOOTS
Self.ManaPercent = function ()
return math.abs(Self.Mana() / (Self.MaxMana() * 0.01))
end
Module.New('equip softs', function(module)
if (Self.ManaPercent() <= ManaToEquip) and (Self.Feet().id ~= 3549) and (Self.ItemCount(6529) > 0) then
Self.Equip(6529, "feet")
module:Delay(1000)
elseif (Self.ManaPercent() >= ManaToEquip) or (Self.Feet().id == 6530) and (Self.Feet().id ~= NormalBoots) then
Self.Equip(NormalBoots, "feet")
module:Delay(1000)
end
end)

HjugO
03-15-2015, 09:34 AM
I think you lost boots coz bot moved your softies to water or quara corpse, or other scenario: if you have vial dropper, you got high lag and bot droped boots.

Trolled1337xx
03-15-2015, 09:38 AM
I think you lost boots coz bot moved your softies to water or quara corpse, or other scenario: if you have vial dropper, you got high lag and bot droped boots.

But why would it drop them to a corpse? It doesn't loot boh..

HjugO
03-15-2015, 10:58 AM
But why would it drop them to a corpse? It doesn't loot boh..

Everything is possible.

shadowart
03-15-2015, 11:27 AM
The script might be faulty in that it doesn't check that you have a pair of normal boots on you before trying to equip them. Can someone check what happens when you try to equip something you don't have to an already occupied slot? I don't have access to my regular computer at the moment so I can't run any tests nor read the library code myself. If someone could paste the Self.Equip code that would be awesome.

And your Softs script doesn't check for Pz so its bad either way.

Two questions. Did you find your BoTs on your character or in your backpack? Does your script have a backpack re-opener?

holos
03-15-2015, 03:37 PM
some time ago I also lost soft boots I think it is the vial dropper script.
look here: http://forums.xenobot.net/showthread.php?32202-Soft-boots-gone

well my solution for it was very simple maybe not the best but u can choose.:

AmmoType = "Great Mana Potion"
SuppliesContainer = "Demon Backpack"
--[[ DO NOT EDIT ANYTHING BELOW THIS LINE ]]--
AmmoTypeID = Item.GetID(AmmoType)
Module('StackAmmo', function(mod)
if (#Container.GetAll() >= 1) then
if (Container(0):CountItemsOfID(AmmoTypeID) >=1) then
for spot = Container(0):ItemCount()-1, 0, -1 do
local item = Container(0):GetItemData(spot)
if (item.id == AmmoTypeID) then
Container(0):MoveItemToContainer(spot, Container.GetByName(SuppliesContainer):Index(), 0)
break
end
end
end
end
mod:Delay(1000)
end)


so I just use this script to push my potions in a bp where nothing valuable is in problem solved never lost softs again.

shadowart
03-15-2015, 03:55 PM
Or you could just keep your potions and runes in a separate bp from the very start...

holos
03-15-2015, 03:59 PM
"Or you could just keep your potions and runes in a separate bp from the very start... " yep thats a very good point but not all scripts include that and I am a rly poor scripter :D

"plus there's no guarantee that the script will move the empty potion to your new backpack before the dropper drops them."
I dont get that point because when u refill you wont have empty potions and wont use potions anyway the script dont move empty potions just full potions before hunt...

shadowart
03-15-2015, 04:05 PM
I removed the second part because it was wrong. Alas I was not fast enough.

holos
03-15-2015, 04:15 PM
yeey finally I contributed something hopefully usefull to this forum :D

Afromanz
03-16-2015, 01:01 AM
Same happened to me with another script. I think it's a XENO bug DarkstaR ?

shadowart
03-16-2015, 02:19 AM
Same happened to me with another script. I think it's a XENO bug DarkstaR ?
Read the previously linked discussion. The subject was through-roughly discussed and it was shown that its not the bot's fault but the script's when valuable items are thrown out.