View Single Post
  #38  
Old 07-18-2008, 03:25 AM
Faulkon Faulkon is offline
Game Designer
Faulkon's Avatar
Join Date: Jul 2008
Location: The entire USA
Posts: 11
Faulkon is on a distinguished road
Talking

Quote:
Originally Posted by cbk1994 View Post
This is extremely annoying; when chat is set via player.chat, it disappears after several seconds.

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.
__________________
-FAULKON

Reply With Quote