<<
DIM GameTitle as String = "Plains of Sedia"
DIM ThreadTitle as String = "Planes of Sedia"
DIM FunLittleInt as ShortInt
DIM StringsAreSame as Boolean = True
For FunLittleInt = 1 to Len(ThreadTitle) step 1
If mid(GameTitle, FunLittleInt, 1) == mid(ThreadTitle, FunLittleInt, 1) then
//The strings are the same so far, continue as planned
else
//The strings aren't the same, oh noes!
StringsAreSame = False
Exit For
end if
Next
If StringsAreSame == False then
Output(1,1,"Sorry to inform you but the title of this thread is misspelled.")
else
Output(1,1,"I have the feeling this string will never see the light of day.")
End if
<<
Sorry.. just having some fun.