How to create a dropbox in Second Life
Did you know that you can create a dropbox for collecting assignments in Second Life? Here's how!
Script to copy:
default{
state_entry()
{
llAllowInventoryDrop(TRUE);
llSay(0, "Please drop your notecard here by dragging it into the box from your inventory.");
}
changed(integer mask)
{
if(mask & (CHANGED_ALLOWED_DROP | CHANGED_INVENTORY))
llWhisper(0, "Thank you for submitting your notecard!!!");
}
}
Click here to view the tutorial:
http://cter.ed.uiuc.edu/tutorials/SecondLife/dropbox.mov


