diff options
author | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-19 15:51:06 +0000 |
---|---|---|
committer | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-19 15:51:06 +0000 |
commit | 9c5eb2d16a7344ac7709ca38b2c288bc864f5555 (patch) | |
tree | ec8479cdd93151db891a0b9af271299db7a423a1 /npc | |
parent | 3a129802e4015d81507345d986f50e383f04aa1f (diff) | |
download | hercules-9c5eb2d16a7344ac7709ca38b2c288bc864f5555.tar.gz hercules-9c5eb2d16a7344ac7709ca38b2c288bc864f5555.tar.bz2 hercules-9c5eb2d16a7344ac7709ca38b2c288bc864f5555.tar.xz hercules-9c5eb2d16a7344ac7709ca38b2c288bc864f5555.zip |
translated
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@640 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc')
-rw-r--r-- | npc/sample/npc_test_str.txt | 24 |
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; } |