View Single Post
  #1  
Old 02-14-2007, 10:17 PM
projectigi projectigi is offline
Registered User
Join Date: Jan 2004
Posts: 403
projectigi is an unknown quantity at this point
Function parameters Problem Oo

Hi

now this doesn't work:
PHP Code:
//#CLIENTSIDE
function onPlayerChats()
  {
  
getMailContent);
  }
function 
getMailContent()
  {
  
player.chat "Ll: "@params[0];
  } 

but this does:
PHP Code:
//#CLIENTSIDE
function onPlayerChats()
  {
  
getMailContent);
  }
function 
getMailContent(rawr)
  {
  
player.chat "Ll: "@rawr;
  } 
why?
Reply With Quote