This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
default | |
{ | |
touch_start(integer total_number) | |
{ | |
list l = llGetAgentList( AGENT_LIST_REGION, [] ); | |
integer iMax = llGetListLength( l ); | |
integer i; | |
for ( i = 0; i < iMax; i++ ) | |
{ | |
llOwnerSay( llList2String( l, i ) + ", " + llKey2Name( llList2Key( l, i ) ) ); | |
} | |
} | |
} |
Works a treat too, so far. Now to have a think of some uses for this -- other than the obvious ones, of course. ;-)
No comments:
Post a Comment