XenoBot Forums - Powered by vBulletin

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 10 of 14

Thread: Soft Boots?

  1. #1

    Join Date
    May 2014
    Posts
    282
    Mentioned
    9 Post(s)
    Tagged
    0 Thread(s)

    Soft Boots?

    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

  2. #2
    Senior Member
    Join Date
    Jul 2014
    Posts
    788
    Mentioned
    62 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Trolled1337xx View Post
    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.

  3. #3

    Join Date
    May 2014
    Posts
    282
    Mentioned
    9 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by HjugO View Post
    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")
    moduleelay(1000)
    elseif (Self.ManaPercent() >= ManaToEquip) or (Self.Feet().id == 6530) and (Self.Feet().id ~= NormalBoots) then
    Self.Equip(NormalBoots, "feet")
    moduleelay(1000)
    end
    end)

  4. #4
    Senior Member
    Join Date
    Jul 2014
    Posts
    788
    Mentioned
    62 Post(s)
    Tagged
    0 Thread(s)
    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.

  5. #5

    Join Date
    May 2014
    Posts
    282
    Mentioned
    9 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by HjugO View Post
    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..

  6. #6
    Senior Member
    Join Date
    Jul 2014
    Posts
    788
    Mentioned
    62 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Trolled1337xx View Post
    But why would it drop them to a corpse? It doesn't loot boh..
    Everything is possible.

  7. #7
    Moderator shadowart's Avatar
    Join Date
    Dec 2014
    Location
    Sweden
    Posts
    1,985
    Mentioned
    225 Post(s)
    Tagged
    3 Thread(s)
    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?
    Last edited by shadowart; 03-15-2015 at 12:10 PM.

  8. #8

    Join Date
    Dec 2014
    Posts
    115
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    some time ago I also lost soft boots I think it is the vial dropper script.
    look here: http://forums.xenobot.net/showthread...oft-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
    modelay(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.

  9. #9
    Moderator shadowart's Avatar
    Join Date
    Dec 2014
    Location
    Sweden
    Posts
    1,985
    Mentioned
    225 Post(s)
    Tagged
    3 Thread(s)
    Or you could just keep your potions and runes in a separate bp from the very start...
    Last edited by shadowart; 03-15-2015 at 03:57 PM.

  10. #10

    Join Date
    Dec 2014
    Posts
    115
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    "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

    "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...

Posting Permissions

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