Quote:
Originally Posted by cbk1994
|
You want player chat to stay? Try this script.
PHP Code:
// Player Chat Repeater
// by Faulkon
//#CLIENTSIDE
function onPlayerchats() {
timeout = 1;
}
funciton onTimeout() {
temp.chat = player.chat;
player.chat = "";
player.chat = temp.chat;
}
It makes player chat stay by repeating it every second.