Revision 1, 0.5 kB
(checked in by jinshiro, 17 years ago)
|
|
Rev | Line | |
---|
[1] | 1 | // Some Test Example |
---|
| 2 | prontera,164,188,1 script sTrInG2compare 112,{ |
---|
| 3 | set @str$, "StRiNg1"; |
---|
| 4 | mes "sTrInG2 isn't equal to " + @str$ ; |
---|
| 5 | mes "Our Var is equal to " + @str$ + " ...OK?"; |
---|
| 6 | next; |
---|
| 7 | mes "Comparision eqOKF" + (@str$=="StRiNg1"); |
---|
| 8 | mes "Comparision eqNGF" + (@str$=="sTrInG2"); |
---|
| 9 | mes "Comparision neOKF" + (@str$!="00000"); |
---|
| 10 | mes "Comparision neNGF" + (@str$!="StRiNg1"); |
---|
| 11 | mes "Comparision gtOKF" + ("aab">"aaa"); |
---|
| 12 | mes "Comparision ltNGF" + ("aab"<"aaa"); |
---|
| 13 | next; |
---|
| 14 | input @str2$; |
---|
| 15 | mes "You've entered '" + @str2$ + "' string."; |
---|
| 16 | close; |
---|
| 17 | } |
---|