diff options
Diffstat (limited to 'npc/sample/npc_test_str.txt')
-rw-r--r-- | npc/sample/npc_test_str.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/npc/sample/npc_test_str.txt b/npc/sample/npc_test_str.txt new file mode 100644 index 000000000..2f4950139 --- /dev/null +++ b/npc/sample/npc_test_str.txt @@ -0,0 +1,17 @@ +// ΆρΟΜeXg
+prontera.gat,164,188,1 script ΆρeXg 112,{
+ set @str$, "ΆρP";
+ mes "ΆρΟF" + @str$ ;
+ mes "mFF" + @str$ + " ...OK?";
+ next;
+ mes "δr`eqOKF" + (@str$=="ΆρP");
+ mes "δr`eqNGF" + (@str$=="Άρ");
+ mes "δr`neOKF" + (@str$!="00000");
+ mes "δr`neNGF" + (@str$!="ΆρP");
+ mes "δr`gtOKF" + ("aab">"aaa");
+ mes "δr`ltNGF" + ("aab"<"aaa");
+ next;
+ input @str2$;
+ mes "όΝf[^Ν " + @str2$ + " Ε·B";
+ close;
+}
|