Signup Now
Results 1 to 3 of 3
  1. #1
    Free User
    Join Date
    Jul 2016
    Posts
    22
    Reputation
    10
    Rep Power
    0

    Action error on deposit

    15:44:07 error in Action script OpenBackpacksBank:
    ["while (windowcount(SuppBP..."]:Action: OpenBackpacksBank:1 attempt to index global 'SuppBP' (a nil value)


    My script doesn't deposit items,

    --Backpacks to depositing..

    setsetting('Looting/OpenNextBP', 'no')
    wait(200,300)

    reachgrounditem("depot")
    wait(1000,1200)

    closewindows()
    wait(500,800)
    openitem(0, "back") wait(500,800)
    resizewindows()
    openitem(LootBP, 0, true) wait(500,800)
    resizewindows()
    waitping()




    -- Crazy Depositer works?

    depotaction('maindpBp', 'lootbp', {'a','stackbp','b','rarebp'})
    closewindows()
    waitping()


    Script is souleater by blakw - not blakw- is Eli
    Last edited by marshallfx; 10-21-2016 at 08:32 PM.

  2. #2
    Free User Borges's Avatar
    Join Date
    Feb 2014
    Location
    Brazil
    Posts
    1,469
    Reputation
    205
    Rep Power
    25
    Quote Originally Posted by marshallfx View Post
    15:44:07 error in Action script OpenBackpacksBank:
    ["while (windowcount(SuppBP..."]:Action: OpenBackpacksBank:1 attempt to index global 'SuppBP' (a nil value)


    My script doesn't deposit items,

    --Backpacks to depositing..

    setsetting('Looting/OpenNextBP', 'no')
    wait(200,300)

    reachgrounditem("depot")
    wait(1000,1200)

    closewindows()
    wait(500,800)
    openitem(0, "back") wait(500,800)
    resizewindows()
    openitem(LootBP, 0, true) wait(500,800)
    resizewindows()
    waitping()




    -- Crazy Depositer works?

    depotaction('maindpBp', 'lootbp', {'a','stackbp','b','rarebp'})
    closewindows()
    waitping()


    Script is souleater by blakw
    Check SuppBP variable.
    @blakw
    Helped you? REP+

  3. #3
    Free User
    Join Date
    Jul 2016
    Posts
    22
    Reputation
    10
    Rep Power
    0
    please, nevermind this is a Eli script

    The script that I was using is with bugs, now I am using one that is working perfectly

    problem solved



    Correct script~

    --Backpacks to depositing..

    setsetting('Looting/OpenNextBP', 'no')
    wait(200,300)

    reachgrounditem("depot")
    wait(1000,1200)

    closewindows()
    wait(1000)

    while (windowcount(LootBP["name"]) == 0) do
    closewindows()
    waitping()
    openitem(MainBP["name"], 'back')
    waitping()
    openitem(LootBP["name"], MainBP["name"], false)
    waitping()
    end

    while itemcount(LootBP["name"], LootBP["name"]) > 0 do
    openitem(LootBP["name"], LootBP["name"], false)
    waitping()
    end


    THANKS FOR YOUR TIME
    Last edited by marshallfx; 10-21-2016 at 08:34 PM.

 

 

Posting Permissions

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