Code:
/* Checks if source contains string with case ignoring. On success function
* returns position in source, on failure returns -1. */
native containi(const source[],const string[]);
u should also have it like this (note && instead of ||):
Code:
if(containi(arg,Sarray[0]) < 0 && containi(arg,Sarray[1]) < 0 && containi(arg,Sarray[2]) < 0) {
__________________