View Single Post
  #7  
Old 11-07-2006, 09:24 PM
KuJi KuJi is offline
Banned
Join Date: Apr 2004
Location: Staten Island, New York
Posts: 2,202
KuJi will become famous soon enough
Send a message via ICQ to KuJi Send a message via AIM to KuJi Send a message via MSN to KuJi Send a message via Yahoo to KuJi
PHP Code:
function onActionServerSide(action)
{
  switch (
action)
  {
    case 
"chat":
    {
      
savelog2("chat.txt"format("%s: %s"player.accountparams[1]));

      break;
    }
  }
}

//#CLIENTSIDE
function ChatBar.onAction()
{
  
triggerserver("gui"this.name"chat"ChatBar.text);

Reply With Quote