PDA

View Full Version : Lock Difficulty



fallenSaint
05-13-2005, 07:55 AM
Anyone have a list of lock difficulty and wording for that range? Thought Id ask before I went off and tried to make my own list.

AnticorRifling
05-13-2005, 08:01 AM
I know there is one somewhere but here is a link for LM which is kind of related.

http://www.tsoran.com/lm.html

When I get a chance I'll look for the list I saw with ranges of locks.

Glavenfyre
05-13-2005, 08:01 AM
http://www.tsoran.com/locks.html

If you are looking for this for using calipers here is a nifty script I found to automatically show you the range. I think it was written by Porcell. I use it with SF, it wil probably work with whatever though. All you have to do is type in its name and it will automatically pull out your calipers, detect the box in your hand, and check it.



Start:
put take my cali
Boxtype:
put glance
match chest chest in
match coffer coffer in
match strongbox strongbox in
match box box in
match trunk trunk in
match exit empty hand
matchwait

Chest:
save chest
goto pick

Coffer:
save coffer
goto pick

Strongbox:
save strongbox
goto pick

Box:
save box
goto pick

Trunk:
save trunk
goto pick

Pick:
put lm measure my %s%
match Primitive a Primitive lock
match Rudimentary a rudimentary lock
match ExtremelyEasy an Extremely Easy lock
match VeryEasy a Very Easy lock
match Easy an Easy lock
match VeryBasic a Very Basic lock
match FairlyEasy a fairly easy lock
match Simple a simple lock
match FairlySimple a fairly simple lock
match FairlyPlain a fairly plain lock
match ModeratelyWellCrafted a moderately well-crafted lock
match WellCrafted a well-crafted lock
match Tricky a tricky lock
match SomewhatDifficult a somewhat difficult lock
match ModeratelyDifficult a moderately difficult lock
match VeryWellCrafted a very well-crafted lock
match Difficult a difficult lock
match ExtremelyWellCrafted an extremely well-crafted lock
match VeryDifficult a very difficult lock
match FairlyComplicated a fairly complicated lock
match Intricate an intricate lock
match AmazinglyWellCrafted an amazingly well-crafted lock
match VeryComplex a very complex lock
match ImpressivelyComplicated an impressively complicated lock
match AmazinglyIntricate an amazingly intricate lock
match ExtremelyDifficult an extremely difficult lock
match ExtremelyComplex an extremely complex lock
match MasterfullyWellCrafted a masterfully well-crafted lock
match AmazinglyComplicated an amazingly complicated lock
match AstoundinglyComplex an astoundingly complex lock
match IncrediblyIntricate an incredibly intricate lock
match AbsurdlyWellCrafted an absurdly well-crafted lock
match ExceedinglyComplex an exceedingly complex lock
matchwait

Primitive:
echo 5-35 Primitive
goto exit

Rudimentary:
echo 40-75 Rudimentary
goto exit

ExtremelyEasy:
echo 80-115 Extremely Easy
goto exit

VeryEasy:
echo 120-155 Very Easy
goto exit

Easy:
echo 160-195 Easy
goto exit

VeryBasic:
echo 200-235 Very Basic
goto exit

FairlyEasy:
echo 240-275 Fairly Easy
goto exit

Simple:
echo 280-315 Simple
goto exit

FairlySimple:
echo 320-355 Fairly Simple
goto exit

FairlyPlain:
echo 360-395 Fairly Plain
goto exit

ModeratelyWellCrafted:
echo 400-435 Moderately Well-Crafted
goto exit

WellCrafted:
echo 440-475 Well-Crafted
goto exit

Tricky:
echo 480-515 Tricky
goto exit

SomewhatDifficult:
echo 520-555 Somewhat Difficult
goto exit

ModeratelyDifficult:
echo 560-595 Moderately Difficult
goto exit

VeryWellCrafted:
echo 600-635 Very Well-Crafted
goto exit

Difficult:
echo 640-675 Difficult
goto exit

ExtremelyWellCrafted:
echo 680-715 Extremely Well-Crafted
goto exit

VeryDifficult:
echo 720-755 Very Difficult
goto exit

FairlyComplicated:
echo 760-795 Fairly Complicated
goto exit

Intricate:
echo 800-835 Intricate
goto exit

AmazinglyWellCrafted:
echo 840-875 Amazingly Well-Crafted
goto exit

VeryComplex:
echo 880-915 Very Complex
goto exit

ImpressivelyComplicated:
echo 920-955 Impressively Complicated
goto exit

AmazinglyIntricate:
echo 960-995 Amazingly Intricate
goto exit

ExtremelyDifficult:
echo 1000-1035 Extremely Difficult
goto exit

ExtremelyComplex:
echo 1040-1075 Extremely Complex
goto exit

MasterfullyWellCrafted:
echo 1080-1115 Masterfully Well-Crafted
goto exit

AmazinglyComplicated:
echo 1120-1155 Amazingly Complicated
goto exit

AstoundinglyComplex:
echo 1160-1195 Astoundingly Complex
goto exit

IncrediblyIntricate:
echo 1200-1235 Incredibly Intricate
goto exit

AbsurdlyWellCrafted:
echo 1240-1275 Absurdly Well-Crafted
goto exit

ExceedinglyComplex:
echo 1280-1315 Exceedingly Complex
goto exit

Exit:
put put cali in my case
exit

fallenSaint
05-13-2005, 08:32 AM
Esh thats friggin perfect, thank god I didnt try to sit down and compile that myself heh. Appreciate the replies.

Gan
05-13-2005, 09:16 AM
I believe you'll just need to convert the variable %s% in order to convert from SF to FE.

I think it would just be %s but I'm not sure as I'm not the best at converting.

fallenSaint
05-13-2005, 09:24 AM
Yea tweaking it a bit to get it to snag the lockpick I want to use in match with each difficulty when it flags it. Great setup thou.