diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-05 11:34:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-03-11 21:55:00 +0300 |
commit | 2f6d4516113059d9edbe71b085540c9cda92fa03 (patch) | |
tree | 4b9a4d9d3ddbff7d478f3f7363f395fd44036ecc /doc/sample/checkoption.txt | |
parent | d8215077643025d10527cbab22d6949a59d3258c (diff) | |
download | hercules-2f6d4516113059d9edbe71b085540c9cda92fa03.tar.gz hercules-2f6d4516113059d9edbe71b085540c9cda92fa03.tar.bz2 hercules-2f6d4516113059d9edbe71b085540c9cda92fa03.tar.xz hercules-2f6d4516113059d9edbe71b085540c9cda92fa03.zip |
Remove conf dir.
Diffstat (limited to 'doc/sample/checkoption.txt')
-rw-r--r-- | doc/sample/checkoption.txt | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/doc/sample/checkoption.txt b/doc/sample/checkoption.txt deleted file mode 100644 index 77c0a3105..000000000 --- a/doc/sample/checkoption.txt +++ /dev/null @@ -1,19 +0,0 @@ -//===== Hercules Script ======================================= -//= Sample: Checkoption -//===== By: ================================================== -//= Hercules Dev Team -//===== Current Version: ===================================== -//= 20131225 -//===== Description: ========================================= -//= Demonstrates the 'checkoption' command. -//============================================================ - -prontera,156,89,6 script test_checkoption 4_F_KAFRA1,{ - mes "Please enter a value of type!"; - input .@value; - if(checkoption(.@value) == 1) - mes "True!"; - else if(checkoption(.@value) == 0) - mes "False!"; - close; -} |