G General

Global Avatar Status Checker – LSL Educational Script ( Full Permission , Source)

Global Avatar Status Checker – LSL Educational Script ( Full Permission , Source)
Details
Features
Contents
Reviews

Check if avatars are ONLINE anywhere in Second Life – not just your region!
This is more than a tool — it's a complete educational LSL script to teach how avatar online detection works in SL.
What It Does:
Stores a list of avatars (by name + UUID)

On touch, checks if each avatar is online — globally

Displays status as ✅ ONLINE or ❌ OFFLINE

Does NOT depend on region!

Educational Bonus:
This script is written with full English comments, explaining:

llRequestAgentData()

dataserver asynchronous response

How to track multiple avatars in sequence

How to manage list-based data

Perfect for:

Scripters learning avatar detection

Teams & staff monitors

SL educators & mentors

Anyone wanting to learn practical LSL logic

How To Use:
Rez an object or wear it as a HUD

Drop this script inside

Open the script and replace names + keys

Click to check the current global online status

list savedNames = ["Alice", "Bob"];
list savedKeys = ["UUID-of-Alice", "UUID-of-Bob"];
Permissions:
Modify ✅
Copy ✅
Transfer✅

  • ✔ Touch to activate
  • ✔ Detects online status across the entire grid
  • ✔ Editable avatar list
  • ✔ Safe for HUD or object use
  • ✔ Includes readable code + teaching comments