• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Question - Macro to raise pick locks skill? (1 Viewer)

Joined
Oct 3, 2014
RedCents
974¢
Simple question...

is there a macro to raise rogues pick lock skill? Im on a TLP in case this is important.

thanks for your time to answer my question :-)
 
Krause,
Do your homework. In the search field at the top right of every page I put in "pick lock" and had multiple articles and found many great ideas that do apply.
Playbetter

OK, I flamed. Not angry. Did not want to burn Krause.
Give a guy a fish.... Teach a guy to fish... and all that Zen stuff is where I was going with it.
If that is flaming call me Torch, hm, I kinda like that. Or maybe Sparky. Igniterer... no... oh well I digress.

Just did a "pick lock" search and came up with a great answer, "fast lockpicking, all the way to 253". Seems to be what you need Krause.
Playbetter
 
Last edited:
so is there a macro to increase your search ability? lol
 
I don't see that he flamed you, he just asked you to put in a little effort. That being said, try this little mac I found by a quick search. It says for Plane of Tranquility but should work on any locked door. The reason it says level 46 required is when it was written 46 was required for PoT.

Rich (BB code):
|PickLock.mac by Jmo
|To use this macro, put your lockpicks on your cursor, then
|stand in front of the book in PoTranquility that floats in the middle of the
|table in the main room. (Wow, that was a long description).
|Require level 46+

Sub Main
   :loop
   /keypress u
/goto :loop
 
what playbetter was saying was not really flaming, he was telling you that it existed and that searching was better and faster then waiting for someone to answer your post. But if you ment my post then I have become better at Sarcasm (300) you cannot gain more levels in this skill!
 
All good :)

Thanks for the answers! Btw I did use search but for some reason I didnt find the macro Randyleo posted.

Thanks again!
 
got to PoTranq, put your mouse over the book on the table, and type /mac filename Where "filename" is whatever .mac you save the following as. (clicky.mac for example)

Rich (BB code):
sub main

:loop
/click left
/delay 2
/goto :loop

/return

Do not leave this running long, it is meant as a high speed lock-pick training option while you make a snack.
 
Befallen first door for first 50 or so points, then I believe City of Mist or Sebilis to go over 200, but I could be wrong on that.
 
This is what I put together for my bard on TLP to skillup lockpick, and other skills... then I also ran it on my monk so added FD...
Also added a check for trade windows, as that tends to happen with bunch of ppl at the few doors available (Paineel, Befallen, Najena, Vox lair..the 2rocks)
Need Lockpicks in inventory, if your using some other item you need to modify it in the mac

I did some changes but did not test them, so may not work.
Let me know if any issues


Rich (BB code):
| v151114 PLdoor.mac by m0nk
sub Main
	/declare doDoorPick int outer ${Param0}
	/echo ${Param0} = Param0 = ${doDoorPick}
	/if (${doDoorPick}) {
		/doortarget
		/face door
		}

:mainloop
	/if (${Window[TradeWnd]}) /notify TradeWnd TRDW_Cancel_Button LeftMouseUp
	/if (${doDoorPick}) /call doorPick
	/if (${Me.SkillCap["Tracking"]}>${Me.Skill["Tracking"]} && ${Me.AbilityReady["Tracking"]}) /doability "Tracking"
	/if (${doDoorPick}) /call doorPick
	/if (${Me.SkillCap["Sneak"]}>${Me.Skill["Sneak"]} && ${Me.AbilityReady["Sneak"]}) /multiline ; /doability "Sneak" ; /timed 10 /doability "Sneak"
	/if (${doDoorPick}) /call doorPick
	/if (${Me.SkillCap["Hide"]}>${Me.Skill["Hide"]} && ${Me.AbilityReady["Hide"]}) /multiline ; /doability "Hide" ; /timed 10 /doability "Hide"
	/if (${doDoorPick}) /call doorPick
	/if (${Me.SkillCap["Feign Death"]}>${Me.Skill["Feign Death"]} && ${Me.AbilityReady["Feign Death"]}) /multiline ; /doability "Feign Death" ; /timed 10 /stand
	/if (${doDoorPick}) /call doorPick
	/if (${Me.SkillCap["Mend"]}>${Me.Skill["Mend"]} && ${Me.AbilityReady["Mend"]}) /doability Mend

:checkmax
	/if (${doDoorPick}) /click left door
	/if (${Me.SkillCap["Tracking"]}>${Me.Skill["Tracking"]}) /goto :mainloop
	/if (${Me.SkillCap["Sneak"]}>${Me.Skill["Sneak"]}) /goto :mainloop
	/if (${Me.SkillCap["Hide"]}>${Me.Skill["Hide"]}) /goto :mainloop
	/if (${Me.SkillCap["Feign Death"]}>${Me.Skill["Feign Death"]}) /goto :mainloop
	/if (${Me.SkillCap["Mend"]}>${Me.Skill["Mend"]}) /goto :mainloop
	/if (${Me.SkillCap["Pick Lock"]}>${Me.Skill["Pick Lock"]}) /goto :mainloop
/goto :end

Sub doorPick
	/if (${Window[TradeWnd]}) /notify TradeWnd TRDW_Cancel_Button LeftMouseUp
	/if (!${Cursor.Name.Equal[Lockpicks]}) /itemnotify ${FindItem[Lockpicks].InvSlot} leftmouseup
	/if (${Cursor.Name.Equal[Lockpicks]}) /click left door
/return


:end
	/end
 
|PickLock.mac by Jmo |To use this macro, put your lockpicks on your cursor, then |stand in front of the book in PoTranquility that floats in the middle of the |table in the main room. (Wow, that was a long description). |Require level 46+ Sub Main :loop /keypress u /goto :loop
So i just ran this macro on the book in PoT. Instantly 0-400,... like legit one second...
 
Question - Macro to raise pick locks skill?

Users who are viewing this thread

Back
Top
Cart