diff options
author | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-07-30 23:18:21 +0000 |
---|---|---|
committer | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-07-30 23:18:21 +0000 |
commit | c32c61173aa710994aa9cfdb72cac62f3c4b88e1 (patch) | |
tree | ad4a3fce9d3a9cb5b6a115dee7f1cfffec71b832 /npc/kafras | |
parent | 369157fd2e7e885eab19f5ab34fbee02d836e13e (diff) | |
download | hercules-c32c61173aa710994aa9cfdb72cac62f3c4b88e1.tar.gz hercules-c32c61173aa710994aa9cfdb72cac62f3c4b88e1.tar.bz2 hercules-c32c61173aa710994aa9cfdb72cac62f3c4b88e1.tar.xz hercules-c32c61173aa710994aa9cfdb72cac62f3c4b88e1.zip |
- Fixed some 'input' max value checks not working after r12192. (bugreport:3436)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13982 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/kafras')
-rw-r--r-- | npc/kafras/functions_kafras.txt | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/npc/kafras/functions_kafras.txt b/npc/kafras/functions_kafras.txt index 83994d87c..268b54f64 100644 --- a/npc/kafras/functions_kafras.txt +++ b/npc/kafras/functions_kafras.txt @@ -665,13 +665,12 @@ function script F_EntKafCode { set @kafcode_try,0; logmes "Hack: Tried to fit storage password."; } - input @code_; - if(@code_<1000) { - mes "You shouldn't use such short password."; + if(input(@code_) == 1) { + mes "You can't use such big password."; return 0; } - if(@code_>10000000) { - mes "You can't use such big password."; + if(@code_<1000) { + mes "You shouldn't use such short password."; return 0; } return @code_; |