Quote:
Originally Posted by bscharff
I'm Going To Assume You Want To Automatically Remove The Spaces From The Player's Chat:
PHP Code:
function onPlayerChats(){
tokens = player.chat.tokenize();
player.chat = tokens[1] tokens[2] tokens[3] tokens[4] tokens[5] tokens[6] tokens[7] tokens[8] tokens[9] tokens[10];
}
Not Tested, But Should Work :P
|
I don't need to seperate the players chat. o.o And you didn't properly declare that variablep properly. Besides I was hoping there was a general function for removing the spaces from any line of text.