05.02.2012, 15:01
Use strcmp to compare if two strings are the same.
pawn Код:
if( !strcmp( STRING_1, STRING_2 ) )
{
// It's the same!
}
else
{
// It's not the same.
}