XenoBot Forums - Powered by vBulletin

User Tag List

Results 1 to 5 of 5

Thread: Withdraw from... need script!

  1. #1

    Join Date
    Mar 2015
    Posts
    17
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)

    Withdraw from... need script!

    Hello everyone!

    TOday i need script to withdraw items from dp to backack to any item count for example: Withdraw 200 Ass Starts to Bacpack.

    Also

    I need script to withdraw some items from mail box to backpacks to full cap and if is message "You Have Enought Cap" Character close mailbox and go to other waypoint.

  2. #2

    Join Date
    Mar 2015
    Posts
    17
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Can someone help me?

  3. #3

    Join Date
    Mar 2015
    Posts
    17
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    I can pay for it. If someone help me: )

  4. #4
    grave18's Avatar
    Join Date
    Mar 2014
    Posts
    74
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    http://forums.xenobot.net/showthread...light=withdraw
    Next time please look a little on forum...
    lua code:

    local Ammo_AmmoID = 7368
    local Ammo_AmmoMax = 200
    local DpBp_Ammo = 0 -- 0-the first backpack in the depot, 1-second backpack in the depot, etc.

    elseif (labelName == "GetSupplies") then
    if (Self.ItemCount(Ammo_AmmoID) < Ammo_AmmoMax) then
    local AmmoNumber = (Ammo_AmmoMax - Self.ItemCount(Ammo_AmmoID))
    Self.WithdrawItems(DpBp_Ammo, {Ammo_AmmoID, 0, AmmoNumber})
    end
    Last edited by grave18; 12-29-2015 at 10:12 PM.

  5. #5

    Join Date
    Feb 2012
    Posts
    124
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by grave18 View Post
    http://forums.xenobot.net/showthread...light=withdraw
    Next time please look a little on forum...
    lua code:

    local Ammo_AmmoID = 7368
    local Ammo_AmmoMax = 200
    local DpBp_Ammo = 0 -- 0-the first backpack in the depot, 1-second backpack in the depot, etc.

    elseif (labelName == "GetSupplies") then
    if (Self.ItemCount(Ammo_AmmoID) < Ammo_AmmoMax) then
    local AmmoNumber = (Ammo_AmmoMax - Self.ItemCount(Ammo_AmmoID))
    Self.WithdrawItems(DpBp_Ammo, {Ammo_AmmoID, 0, AmmoNumber})
    end
    anyway to tell it to put it on a specific bp on your loot backpacks?

Posting Permissions

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