diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-09-06 22:16:00 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-09-06 22:16:00 -0300 |
commit | a3dcb5b0ddb5fd630e99852aac68073f6d4d2e7f (patch) | |
tree | 54d82f384fd12e63ebdd7ed9c198ed54333b81d1 /npc/functions | |
parent | 956c1b19be9a3f86568bc9320ee92fc2c264ee24 (diff) | |
download | serverdata-a3dcb5b0ddb5fd630e99852aac68073f6d4d2e7f.tar.gz serverdata-a3dcb5b0ddb5fd630e99852aac68073f6d4d2e7f.tar.bz2 serverdata-a3dcb5b0ddb5fd630e99852aac68073f6d4d2e7f.tar.xz serverdata-a3dcb5b0ddb5fd630e99852aac68073f6d4d2e7f.zip |
...That was a silly mistake of my part. Pardon, @Saulc .
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/lockpicks.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/functions/lockpicks.txt b/npc/functions/lockpicks.txt index 495828584..ec5daf50b 100644 --- a/npc/functions/lockpicks.txt +++ b/npc/functions/lockpicks.txt @@ -62,10 +62,10 @@ function script LockPicking { for (.@i=0; .@i < (.@d+.@m+THIEF_RANK) ; .@i++) { mesc l("You are trying to open the @@th pin. What to do?", @pos+1); menuint - rif(.@m <= 4, l("Apply no pressure")), 1, + rif(.@m <= 4, l("Apply no pressure")), 4, rif(.@m <= 2, l("Apply soft pressure")), 2, - rif(.@m <= 1, l("Apply normal pressure")), 3, - rif(.@m <= 3, l("Apply strong pressure")), 4, + rif(.@m <= 1, l("Apply normal pressure")), 1, + rif(.@m <= 3, l("Apply strong pressure")), 3, rif(.@m <= 5, l("Apply very strong pressure")), 5, l("Give up!"), 0; |