I want to ask do the string.sub has mathematical behavior ?
e.g :
1
2
3
2
3
if string.sub(1,8+2-5)=="!kick" then 	etc.....
Actually didn't knew that.
Scripts
Lua "Q" : the string.sub
Lua "Q" : the string.sub
1

if string.sub(1,8+2-5)=="!kick" then 	etc.....
DC said. You can easily do stuff like that:if string.sub(aString, 1, string.len(aString) - 1)=="!kick" then (...)
1
