You are currently not logged in! Enter your authentication credentials below to log in. You need to have cookies enabled to log in.
llAddToLandPassList(key id, float hours)
Add a person to the allowed residents list ("white list") of the parcel, either temporarily or permanently.
Sleeps the script for 0.1 seconds.
The key of the avatar to allow access to.
A float with the number of hours the access allowance will last, or zero to be added permanently to the allowed avatars list.
// Permanently add Doug Linden, whose key is a2e76fcd-9360-4f6d-a924-000000000001, // to the access allowance list llAddToLandPassList("a2e76fcd-9360-4f6d-a924-000000000001", 0); // Allow access to Philip Linden for 6 days (144 hours) llAddToLandPassList("a2e76fcd-9360-4f6d-a924-000000000003", 9999);
This script scans for avatars every hour, and allows half an hour of access to a random avatar that is within 60 metres of the object:
default { state_entry() { llSensorRepeat("", "", AGENT, 60, PI, 3600); } sensor(integer num) { llAddToLandPassList(llDetectedKey((integer)llFrand(num)), 0.5); } }
llRemoveFromLandPassList
to remove someone from the white list.llResetLandPassList
to clear the white list.llAddToLandBanList
to add someone to the ban list.llRemoveFromLandBanList
to remove someone from the ban list.llResetLandBanList
to clear the ban list.