diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-05 11:34:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-12-13 17:14:59 +0300 |
commit | 5a8d7b283867efc5d88164b1a70e8c1365e0f3fa (patch) | |
tree | 28aeac44b03eeb0e40947764626c835853ad4748 /doc/sample/getmonsterinfo.txt | |
parent | 6f95d1d3eac0edc31af2da039dc01acfc7545dfc (diff) | |
download | hercules-5a8d7b283867efc5d88164b1a70e8c1365e0f3fa.tar.gz hercules-5a8d7b283867efc5d88164b1a70e8c1365e0f3fa.tar.bz2 hercules-5a8d7b283867efc5d88164b1a70e8c1365e0f3fa.tar.xz hercules-5a8d7b283867efc5d88164b1a70e8c1365e0f3fa.zip |
Remove conf dir.
Diffstat (limited to 'doc/sample/getmonsterinfo.txt')
-rw-r--r-- | doc/sample/getmonsterinfo.txt | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/doc/sample/getmonsterinfo.txt b/doc/sample/getmonsterinfo.txt deleted file mode 100644 index 064f1fc71..000000000 --- a/doc/sample/getmonsterinfo.txt +++ /dev/null @@ -1,23 +0,0 @@ -//===== Hercules Script ======================================= -//= Sample: Getmonsterinfo -//===== By: ================================================== -//= Lupus -//===== Current Version: ===================================== -//= 20131225 -//===== Description: ========================================= -//= Demonstrates the 'getmonsterinfo' command. -//============================================================ - -prontera,156,179,6 script test_getmonsterinfo 4_F_KAFRA1,{ - mes "Please enter a monster ID."; - input .@value; - if(getmonsterinfo(.@value,MOB_LV)<0 || getmonsterinfo(.@value,MOB_NAME)=="Dummy") { - mes "Invalid monster ID."; - close; - } - mes "Monster ID: "+.@value+" '"+getmonsterinfo(.@value,MOB_NAME)+"'"; - mes "Current Monster info:"; - for (.@id = 0; .@id < 23; ++.@id) - mes " getmonsterinfo("+.@value+","+@id+") = "+getmonsterinfo(.@value,@id); - close; -} |