• 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

Fast lockpicking, all the way to 253

zenthes

New member
Joined
Nov 11, 2006
RedCents
21¢
This is for any one who wants to work there LOCK PICKING and is lvl 46+

Head to the Plane of Tranquility, and right where you zone in from PoK look West over the book.

Pick up your lock picking tools and click away as fast as possible.
OR you can use a click macro

Code:
sub main

  :loop
		/click left
		/delay 1
/goto :loop

Your lock picking skill will be max in no time.

heres an img of the "sweet spot" to do this at

pic.php
 
Last edited:
zenthes said:
This is for any one who wants to work there LOCK PICKING and is lvl 46+

Head to the Plane of Tranquility, and right where you zone in from PoK look West over the book.

Pick up your lock picking tools and click away as fast as possible.


OK Key note pointed out here you have to have the lock pick tools with you and use them.... had been a while and could not quite figure it out (Ya finally did)
 
Yeah sorry, i should have taken the picture with the tools but i was on my bard and he doesn't have any on him.
 
Code:

sub main

:loop
/click left
/delay 1
/goto :loop


-----------------

I am just trying to learn how to modify the code so plz no flame.

Question: can " /delay 1 " be change to " /delay random 1 5 " ? I just want to know if it can randomly change the delay # randomly bwtween 1 to 5 sec...

Thankyou
 
Warmonger said:
Code:

sub main

:loop
/click left
/delay 1
/goto :loop


-----------------

I am just trying to learn how to modify the code so plz no flame.

Question: can " /delay 1 " be change to " /delay random 1 5 " ? I just want to know if it can randomly change the delay # randomly bwtween 1 to 5 sec...

Thankyou
Rich (BB code):
sub main

:loop
/click left
/delay ${Math.Calc[1+${Math.Rand[10]}]}
/goto :loop

That will randomly generate a number between 1 & 10. That should work. Let me know what you find as I didn't really test it. Calc will return a float value instead of an int value, but I don't think it matters as long as you deal in whole numbers.
 
here is the original that was posted a while back, should take you all of 10 seconds to max.
Rich (BB code):
|
| - Picklock.mac -
|
| you need a set of Lockpicks of your choice, point at the item you want to pick and run the macro.
|Should only takea few seconds to max skill to 200 or whatever max is for your item.
#turbo 30

Sub Main

:pick
  /keypress U
  /goto :pick
/return

Your delay is not needed it only slows you down. Also works for any door. Just make sure your in first person mode and whatever your trying to use is in middle of the screen. Saw the screen shot never tried it from down there I did it standing on the table looking at the book
 
So wait, theres no server logs showing some one using an action or checking an action server side?

I mean like 500 checks with in 1 second... ?
 
of course there is

Doubt they will go through billions of lines of logs to look and see if someone clicked a door 5000 times in a period of 120 seconds in a 86400 second day or a 604800 second week. Times that buy the thousands of log entries produced each second.

But paranoia is always healty.
 
Being the paranoid jasper that I am, I figured I'd try this manually. I cycled my trusty little Thumper to 16 hits a second, about a manual high speed tap and it took just about 1 1/2 minutes to max it out at 250. So, to test this, I tried it on a trash account and it maxed so fast that I did not see the counter change, just all of a sudden it was maxed. Less than 2 seconds.
 
how could i modify this code to click a hotkey instead of '/click left'?

wanting to set up a couple different macros.. currently using keytext but i have to have the eq window up front for it to work
 
What exactly would you like it to do Sollix? If I had more info I might be able to help out.
 
right now i am working on rogue epic for one of my alts and the pickpocketing is driving me nuts.. standing there for hours getting nothing

i know pp is on a 10 sec delay.. been watching tv while hammering the hotkey or setting up a keytext macro for it.. but i'd like to minimize and use my other account while i'm picking him if it's possible

*edit*
i was asking if it could be a certain # hotkey because of other possible applications while i sleep.. like begging an npc or raising skill in intimidation
 
Make your hotkey 1 as Beg and try this. If it doesn't work, make sure you have Beg as one of your ability hotkeys and try #2.

Rich (BB code):
|Beg.mac
|You can try changing the pause. I put it at 11s since the re-use is 10 to be safe.

Sub Main

:loop
  /keypress 1
  /delay 11s 
  /goto :loop

Or:
Rich (BB code):
|Beg.mac
|You can try changing the pause. I put it at 11s since the re-use is 10 to be safe.

Sub Main

:loop
  /DoAbility Beg
  /delay 11s 
  /goto :loop

See if one of those work
 
Last edited:
using the fist one.. it technically works, but i'm getting _extreme_ spam in the mq2 window saying "couldn't parse /pause 11s"

so it's working.. but it's clicking the key like every nanosecond rather than every 11 secs
 
Thanks for that mini mac, I've been using the hell out of it since now I don't need to use the autofire program to do things where I just need a turbo button.
 
Fast lockpicking, all the way to 253

Users who are viewing this thread

Back
Top
Cart