OsAvatarType

From OpenSimulator

Revision as of 08:04, 21 April 2021 by Ubit (Talk | contribs)

Jump to: navigation, search
integer osAvatarType(key avatarKey)
Returns a avatar type:
  • < 0 in case of error
  • 0 if avatar not found
  • 1 if it is a normal avatar
  • 2 if it is a NPC
Threat Level This function does not do a threat level check
Permissions Use of this function is always allowed by default
Extra Delay 0 seconds
Example(s)
// This script listens for a key on channel 1 which will then
// tell you the avatar type
 
default
{
    state_entry()
    {
        llListen(1, "", llGetOwner(), "");    
    }
 
    listen(integer channel , string name, key id, string message)
    {
        if(channel == 1)
        {
            llOwnerSay(osAvatarType((key)message));
        }   
    }
}
Notes
This function was added in 0.9.2.0


Personal tools
General
About This Wiki