function strContains(%strA, %strB) return strStr(%strA, %strB) != -1;
strStr(%str, "asdf") would return the position inside %str "asdf" is located at and returns -1 if it doesn't exist. You could use that to make a strContains function.Code: [Select]function strContains(%strA, %strB) return strStr(%strA, %strB) != -1´;
function strContains(%strA, %strB) return strStr(%strA, %strB) != -1´;
What
"What""What".WHAT is the issue
ANOTHER QUESTION completely unrelated! Is there a limit to the number of args you can send to a client?
I am trying to use 8 and it seems slayer has a clientCmd that uses 8 so it must work. The problem is I keep trying but the 8th argument doesn't seem to be received (or sent?). Is there a data limit?
How do you calculate the amount of bytes something is?