10.08.2010, 16:05
lool jus put under OnPlayerText
That will make the first char of the text / string to upper so if you do let say :
Ivex say: dsadasdad nnnddd
it will be
Ivex say: Dsadasdad nnnddd
etc ... else if you do for other chats than you put insteed of "text" you put string or result or what ever you got
Code:
text[0] = toupper(text[0]);
Ivex say: dsadasdad nnnddd
it will be
Ivex say: Dsadasdad nnnddd
etc ... else if you do for other chats than you put insteed of "text" you put string or result or what ever you got

