// Some Test Example
prontera,164,188,1	script	sTrInG2compare	112,{
	set @str$, "StRiNg1";
	mes "sTrInG2  " + @str$ ;
	mes "ڭ̪ܼƵ " + @str$ + " ...O?";
	next;
	mes " eqOKF" + (@str$=="StRiNg1");
	mes " eqNGF" + (@str$=="sTrInG2");
	mes " neOKF" + (@str$!="00000");
	mes " neNGF" + (@str$!="StRiNg1");
	mes " gtOKF" + ("aab">"aaa");
	mes " ltNGF" + ("aab"<"aaa");
	next;
	input @str2$;
	mes "AwgJ '" + @str2$ + "' r.";
	close;
}
