It's normally solved by forcing the user to put the argument inside quotes. Like for example namechange
You can't write
name this is my name
because then it will end up being just "this".
But if you write:
name "this is my name"
you will get the full name.
But again, you could use strbreak() to part args at the first space, which will be between arg1 and arg2.