/title
Could I change eval("function hasPartInString(%part, %string) { for(%i = 0; %i < getWordCount(%string); %i++) { if(%line $= getWord(%string, %i)) return true; else return false; } }");
No, that function probably doesn't work anyways, I'm doing it as an example.
to
eval("function hasPartInString(%part, %string)
{
for(%i = 0; %i < getWordCount(%string); %i++)
{
if(%line $= getWord(%string, %i))
return true;
else
return false;
}
}");
?
I'm wondering this because it's easier to read functions across multiple lines.