ID:139590
 
Code:for(var/Pos = 1, Pos <= String_len-Search_len+1, Pos++)
var/Char = copytext(String, Pos, Pos+1) //determine if this is a break between words
if(isalphabetic(Char) || Ignores.Find(Char) || findText(Search, Char)
[if(Last_Char)]


Problem description:i cant find my mistake to fix the error, it keeps saying i need to add a right parenthesis or comma i put the error in a bracket so u wont get confused.

You didn't close the parentheses for the if() statement
if(isalphabetic(Char) || Ignores.Find(Char) || findText(Search, Char))

And for future reference, please put your code between the dm tags.