(by the way, this is a joke...but I do think these are good suggs)
bbc
CODE
list suglist = ["a llPreloadTexture function.", "tunnels!", "the ability to write data to Notecards.", "customizable avatar gestures.", "deformable meshes (cloth, springs).", "another level of hierarchy in linking, (so I can make joints between children, and thus - limbs!)", "objects able to (scripted) rotate while attatched", "a llDetectedGiver, so we can find out who is depositing a inventory object (or add a key changer to the changed event)"];
integer i;
default
{
state_entry()
{
llSetObjectName("The Ghost of BuhBuhCuh Fairchild");
llSensorRepeat("", "", AGENT, 30.0, 2*PI, 60.0);
}
sensor(integer detected)
{
if(detected > 10)
{
llShout(0, "I think we should have "+ llList2String(suglist, i));
i++;
}
if(i > llGetListLength(suglist))
{
llDie();
}
}
}