View Single Post
  #5  
Old 11-10-2006, 11:09 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
Quote:
Originally Posted by Skyld View Post
Which part?

player.isexternal is for checking if the player is logged onto the current server, or if the "player" is an IRC user or channel, etc. You don't write to it. You just read it.
PHP Code:
if (player.isExternal)
{
  echo(
"You are an IRC user or a global playerlist member");

The player's level.. I think.

I mean, normally if it was possible i could just do
PHP Code:
function onPlayerLogin(temp.plyr)
{
  if (
temp.plyr.level != "")
  {
    
// Not an IRC + Global Buddy + RC
  
}

But that doesn't work, or it didn't..
Reply With Quote