What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

[Plugin]Lock Picker, opens locked boxes for rogues.

Bengan12

Well-Known Member
Joined
Feb 24, 2011
Messages
1,967
Reaction score
31
Lockpicker is a plugin that simply just checks the bags for locked boxes and unlocks them and loots the inside.

First i want to thank some pople for this.
A big thanks to LiquidAtoR for the majotiry of this code comes from his plugin TidyBags3.

Also a big thanks to.
Kickazz006, Kaz, and Katzerle.
For the inspiration i got from their plugin OpenThatStuff.



Version 1.0.1.5
Added LiquidAtoR?s list of boxes.
Fixed some minor bugs, errors i made.


Version 1.0.0.0
This version opens Flame-Scarred Junkboxes only
It is a first release just to se if it is a wanted plugin,
worth doing any more work on.

 
Last edited:
Compiled a quicklist with skilllevel behind it if you ever plan to expand on this and add all the lockboxes (and even put a interact part to it for the locked boxes in the game).

Code:
// The following items are locked and in your inventory (looted).
// These items can be opened by a rogue/bs with the proper skill/keys.
 
// The boxes you can loot from anything
 
4632, //Ornate Bronze Lockbox (Skill 1)
4633, //Heavy Bronze Lockbox (Skill 25)
4634, //Iron Lockbox (Skill 70)
4636, //Strong Iron Lockbox (Skill 125)
4637, //Steel Lockbox (Skill 175)
4638, //Reinforced Steel Lockbox (Skill 225)
5758, //Mithril Lockbox (Skill 225)
5759, //Thorium Lockbox (Skill 225)
5760, //Eternium Lockbox (Skill 225)
31952, //Khorium Lockbox (Skill 325)
43622, //Froststeel Lockbox (Skill 375)
43624, //Titanium Lockbox (Skill 400)
45986, //Tiny Titanium Lockbox (Skill 400)
68729, //Elementium Lockbox (Skill 425)
 
// The boxes you can pickpocket from mobs
 
16882, //Battered Junkbox (Skill 1)
16883, //Worn Junkbox (Skill 70)
16884, //Sturdy Junkbox (Skill 175)
16885, //Heavy Junkbox (Skill 250)
29569, //Strong Junkbox (Skill 300)
43575, //Reinforced Junkbox (Skill 350)
63349 //Flame-Scarred Junkbox (Skill 400)

And if you ever want to make it interact with gameobjects (you will have to write additional code if this is not handled by HB, I think it's not for locked items).
Code:
// The following items are locked but are NO inventory items.
// These items are game objects and need interaction with to open.
// So different code part if you are rogue/bs and have the skill/keys.
 
3714, //Alliance Strongbox (Skill 1)
103815, //Ambermill Strongbox (Skill 1)
123330, //Buccaneer's Strongbox (Skill 1)
181665, //Burial Chest (Skill 1)
// 178244, //Practice Lockbox (Skill 1) <-- For reference only since this is not consumed
105176, Venture Co. Strongbox (Skill 1)
184793, //Primitive Chest (Skill 20)
74447, //Large Iron Bound Chest (Skill 25)
121264, //Lucius's Lockbox (Skill 25)
105570, //Alliance Strongbox (Skill 70)
179486, //Battered Footlocker (Skill 70)
123214, //Duskwood Chest (Skill 70)
129127, //Gallywix's Lockbox (Skill 70)
179487, //Waterlogged Footlocker (Skill 70)
3239, //Benedict's Chest (Skill 100)
179488, //Battered Footlocker (Skill 110)
179490, //Battered Footlocker (Skill 150)
179491, //Waterlogged Footlocker (Skill 150)
20691, //Cozzle's Footlocker (Skill 160)
179492, //Dented Footlocker (Skill 175)
131978, //Large Mithril Bound Chest (Skill 175)
179493, //Mossy Footlocker (Skill 175)
179494, //Dented Footlocker (Skill 200)
179496, //Dented Footlocker (Skill 225)
179497, //Mossy Footlocker (Skill 225)
153468, //Large Mithril Bound Chest (Skill 250)
179498, //Scarlet Fotlocker (Skill 250)
184931, //Bound Fel Iron Chest (Skill 300)
184740, //Wicker Chest (Skill 300)
184936, //Bound Adamantite Chest (Skill 325)
184741, //Dented Footlocker (Skill 325)
184940, //Bound Adamantite Chest (Skill 350)
191543 //Scarlet Onslaught Trunk (Skill 385)
 
Back
Top