View Single Post
  #5  
Old 10-04-2006, 09:39 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:
//#CLIENTSIDE
function onActionServerSide(action)
{
  switch (
action)
  {
    case 
"send":
    {
       
triggerclient("gui"this.name"return"150);
       break;
    }
  }
}

//#CLIENTSIDE
function onWeaponFired()
{
  
triggerserver("gui"this.name"send");
  
player.chat "SENT";
}

function 
onActionClientSide(action)
{
  switch (
action)
  {
    case 
"return":
    {
       
player.chat format("Recieved: %s"params[1]);
       break;
    }
  }

Like that?
Reply With Quote