Quote:
Originally Posted by Astram
Dude you can just do.
PHP Code:
//#CLIENTSIDE
function onPlayerChats()
{
temp.chat = player.chat;
player.chat = player.nick@": "@temp.chat;
}
Yes, its that simple
|
PHP Code:
//#CLIENTSIDE
function onPlayerChats() {
player.chat = player.nick @ ": " @ player.chat;
}