Quote:
Originally Posted by Skyld
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..