Signup Now
Results 1 to 5 of 5
  1. #1
    Free User
    Join Date
    Mar 2016
    Posts
    17
    Reputation
    10
    Rep Power
    0

    [Request] Open certain backpacks after logging in?

    Cant rly find a script for this

    I want it to open lootbp and main bp.

    Also i have supplies in shopping bag, want that to open too =)
    Last edited by vjeko; 05-17-2016 at 12:11 PM.

  2. #2
    Moderator Josh's Avatar
    Join Date
    Dec 2013
    Posts
    1,395
    Reputation
    183
    Rep Power
    24
    How are you logging in exactly? If you're just doing it by entering credentials it might be easiest to set a regular hotkey to open backpacks... In that case, it would just be:

    openitem(0, 'back') -- this will open whatever is on your back slot
    waitcontainer() -- wait for the container to appear before opening next...
    openitem("zaoan chess box", "backpack of holding", true) -- chess box is bp you're opening, holding is bp which contains chessbox... true is just to open it in new window
    waitcontainer()
    openitem("jewelled backpack", "backpack of holding", true) -- as previous, but this time we're opening a jewelled bp instead of chess box
    waitcontainer()
    resizewindows() -- this will shrink all windows to minimum size without collapsing them


    If you want to make this login, too, you can just add this to the start:

    connect('123456', '654321', 'Vjeko')

  3. #3
    Free User
    Join Date
    Mar 2016
    Posts
    17
    Reputation
    10
    Rep Power
    0
    so if i have red bp as "back" aka main
    then i have a shopping bag in that main red backpack i want to open

    and in arrow slot i have a brown backpack i want to open aswell, how would you configure the code for that? ty for answer

    I get kick pretty often so i have a script that will reconnect me, but wont open bp

  4. #4
    Moderator Josh's Avatar
    Join Date
    Dec 2013
    Posts
    1,395
    Reputation
    183
    Rep Power
    24
    openitem(0, 'back') -- open bp in back slot
    waitcontainer()
    openitem(0, 'ammo') -- open bp in ammo slot
    waitcontainer()
    openitem("shopping bag", "red backpack", true) -- open shopping bag in red backpack
    waitcontainer()
    resizewindows() -- shrink windows


    This should do it...

  5. #5
    Free User dmc's Avatar
    Join Date
    Apr 2016
    Location
    Brasil
    Posts
    6
    Reputation
    16
    Rep Power
    0
    ● Maybe I can help you.
    Go in " Looting > BPs Open at Login" mark this option


    ● If you can not try this persistent
    Code:
    local bpmain = "Blue Backpack"
    local bprare = "Purple Backpack"
    local bpsuply = "Red Backpack"
    local bpgold = "Brocade Backpack"
    
    auto(1000,2000)
    while windowcount() < 4 do
    	closewindows()
    	wait(500,800)
    	openitem(0, "back", true)
    	wait(500,800)
    	resizewindows()
    	wait(500,1200)
    	openitem(bprare,0,true)
    	wait(500,1200)
    	resizewindows()
    	wait(500,1200)
    	openitem(bpsuply,0,true)
    	wait(500,1200)
    	resizewindows()
    	wait(500,1200)
    	openitem(bpgold,0,true)
    	wait(500,1200)
    	resizewindows()
    end
    ● Simple and Complete ●

    Facebook: Click here

    Youtube: Click here

 

 

Posting Permissions

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