summaryrefslogtreecommitdiff
path: root/doc/sample/npc_test_str.txt
diff options
context:
space:
mode:
authorthatakkarin <thatakkarin@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-11-29 16:20:40 +0000
committerthatakkarin <thatakkarin@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-11-29 16:20:40 +0000
commit5855956aa1e10b8c3213e479c975493b2e96aeeb (patch)
tree8fe716fa546d8f3488e28bb2df3b1f5d16b15312 /doc/sample/npc_test_str.txt
parent9b02e0156ddee963d690b21fb98549cea0a0ccda (diff)
downloadhercules-5855956aa1e10b8c3213e479c975493b2e96aeeb.tar.gz
hercules-5855956aa1e10b8c3213e479c975493b2e96aeeb.tar.bz2
hercules-5855956aa1e10b8c3213e479c975493b2e96aeeb.tar.xz
hercules-5855956aa1e10b8c3213e479c975493b2e96aeeb.zip
* Removed Non-English sample files from doc/sample/ (bugreport:6750)
- sample/npc_test_ev.txt was originally used to demonstrate nifty event related commands. - sample/npc_test_arena.txt is rather defunct as there are fully working scripts within npc/ that demonstrate the same functionality. - sample/npc_test_str.txt explains how StRing != striNG. This is documented in doc/script_commands.txt * Slight update to CMakeLists.txt for README.txt git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16982 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'doc/sample/npc_test_str.txt')
-rw-r--r--doc/sample/npc_test_str.txt26
1 files changed, 0 insertions, 26 deletions
diff --git a/doc/sample/npc_test_str.txt b/doc/sample/npc_test_str.txt
deleted file mode 100644
index ad3532c4a..000000000
--- a/doc/sample/npc_test_str.txt
+++ /dev/null
@@ -1,26 +0,0 @@
-//===== rAthena Script =======================================
-//= Sample: String Test
-//===== By: ==================================================
-//= rAthena Dev Team
-//===== Current Version: =====================================
-//= 20070315
-//===== Description: =========================================
-//= An example of string comparisons.
-//============================================================
-
-prontera,164,188,1 script sTrInG2compare 112,{
- set @str$, "StRiNg1";
- mes "sTrInG2 isn't equal to " + @str$ ;
- mes "Our Var is equal to " + @str$ + " ...OK?";
- next;
- mes "Comparison eqOK:" + (@str$=="StRiNg1");
- mes "Comparison eqNG:" + (@str$=="sTrInG2");
- mes "Comparison neOK:" + (@str$!="00000");
- mes "Comparison neNG:" + (@str$!="StRiNg1");
- mes "Comparison gtOK:" + ("aab">"aaa");
- mes "Comparison ltNG:" + ("aab"<"aaa");
- next;
- input @str2$;
- mes "You've entered '" + @str2$ + "' string.";
- close;
-} \ No newline at end of file