Hi
now this doesn't work:
PHP Code:
//#CLIENTSIDE
function onPlayerChats()
{
getMailContent( 1 );
}
function getMailContent()
{
player.chat = "Ll: "@params[0];
}
but this does:
PHP Code:
//#CLIENTSIDE
function onPlayerChats()
{
getMailContent( 1 );
}
function getMailContent(rawr)
{
player.chat = "Ll: "@rawr;
}
why?