View Single Post
  #9  
Old 09-26-2006, 04:34 PM
ApothiX ApothiX is offline
Okiesmokie
Join Date: May 2004
Posts: 1,447
ApothiX is on a distinguished road
Quote:
Originally Posted by KuJi View Post
PHP Code:
function onPlayerLogin(temp.plyr)
{

would work in any database npc.. and even in weapons/scripts. (clientsided aswell)
ex:

PHP Code:
function onPlayerLogin(temp.plyr)
{
  if (
temp.plyr != NULL)
  {
    
player.chat format("%s has logged on!"temp.plyr); // I think?
  
}

PHP Code:
function onPlayerLogin(pl) {
  if(
pl.account != NULL) {
    
player.chat format("%s has logged on!"pl.account);
  }

is the proper way to do it
__________________


[06:24:19] * Parts: Skyld (i=silent@unaffiliated/skyld) ("Perhaps Okiesmokie did not realise that I like the boys. ")
Reply With Quote