summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/sample/npc_test_str.txt24
1 files changed, 12 insertions, 12 deletions
diff --git a/npc/sample/npc_test_str.txt b/npc/sample/npc_test_str.txt
index 77591a210..1c04927dd 100644
--- a/npc/sample/npc_test_str.txt
+++ b/npc/sample/npc_test_str.txt
@@ -1,17 +1,17 @@
-// ������ϐ��̃e�X�g
-prontera.gat,164,188,1 script ������e�X�g 112,{
- set @str$, "������P";
- mes "������ϐ��F" + @str$ ;
- mes "�m�F�F" + @str$ + " ...OK?";
+// Some Test Example
+prontera.gat,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 "��r�`eqOK�F" + (@str$=="������P");
- mes "��r�`eqNG�F" + (@str$=="������");
- mes "��r�`neOK�F" + (@str$!="00000");
- mes "��r�`neNG�F" + (@str$!="������P");
- mes "��r�`gtOK�F" + ("aab">"aaa");
- mes "��r�`ltNG�F" + ("aab"<"aaa");
+ mes "Comparision eqOK�F" + (@str$=="StRiNg1");
+ mes "Comparision eqNG�F" + (@str$=="sTrInG2");
+ mes "Comparision neOK�F" + (@str$!="00000");
+ mes "Comparision neNG�F" + (@str$!="StRiNg1");
+ mes "Comparision gtOK�F" + ("aab">"aaa");
+ mes "Comparision ltNG�F" + ("aab"<"aaa");
next;
input @str2$;
- mes "���̓f�[�^�� " + @str2$ + " �ł��B";
+ mes "You've entered '" + @str2$ + "' string.";
close;
}