// Some Test Example
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 "Comparision eqOKF" + (@str$=="StRiNg1");
	mes "Comparision eqNGF" + (@str$=="sTrInG2");
	mes "Comparision neOKF" + (@str$!="00000");
	mes "Comparision neNGF" + (@str$!="StRiNg1");
	mes "Comparision gtOKF" + ("aab">"aaa");
	mes "Comparision ltNGF" + ("aab"<"aaa");
	next;
	input @str2$;
	mes "You've entered '" + @str2$ + "' string.";
	close;
}