View Single Post
  #6  
Old 11-07-2006, 07:40 AM
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
Do you log what player nicks they log on w/ ?

PHP Code:
// Log on Login
function onActionPlayerOnline()
{
  
savelog2("nicknames.txt"format("%s has logged on with the nick of %s"player.accountplayer.nick);

PHP Code:
// Log on Change
function onActionServerSide(action)
{
  switch (
action)
  {
    case 
"lognick":
    {
      
savelog2("nicknames.txt"format("%s has changed his nick to %s"player.accountparams[1]);

      break;
    }
  }
}

//#CLIENTSIDE
function ChatBar.onAction()
{
  if (
ChatBar.text.starts("setnick"))
  {
    
triggerserver("gui"this.name"lognick"ChatBar.text.substring(8));
  }

Tada?
Reply With Quote