diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-09-07 01:01:41 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-09-07 01:01:41 -0300 |
commit | 5ce5bbdefe4518c56f87f9c3c1e1b8c98160dec9 (patch) | |
tree | 020b78a542c70cb260683c90d2b8b322956acdcc /npc/functions/lockpicks.txt | |
parent | ab10488144dfc3b002a580ccc4084c35ca83639f (diff) | |
download | serverdata-5ce5bbdefe4518c56f87f9c3c1e1b8c98160dec9.tar.gz serverdata-5ce5bbdefe4518c56f87f9c3c1e1b8c98160dec9.tar.bz2 serverdata-5ce5bbdefe4518c56f87f9c3c1e1b8c98160dec9.tar.xz serverdata-5ce5bbdefe4518c56f87f9c3c1e1b8c98160dec9.zip |
Mixed signs
Diffstat (limited to 'npc/functions/lockpicks.txt')
-rw-r--r-- | npc/functions/lockpicks.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/functions/lockpicks.txt b/npc/functions/lockpicks.txt index cf84e5bf4..efb28f741 100644 --- a/npc/functions/lockpicks.txt +++ b/npc/functions/lockpicks.txt @@ -62,11 +62,11 @@ function script LockPicking { for (.@i=0; .@i < (.@d+.@m+THIEF_RANK) ; .@i++) { mesc l("You are trying to open the @@th pin. What will to do?", @pos+1); menuint - rif(.@m <= 4, l("Apply no pressure")), 4, - rif(.@m <= 2, l("Apply soft pressure")), 2, - 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, + rif(.@m >= 4, l("Apply no pressure")), 4, + rif(.@m >= 2, l("Apply soft pressure")), 2, + 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; if (!@menuret) |