removed useless _ folders

This commit is contained in:
Fred Beckhusen
2015-08-09 16:54:31 -05:00
parent fde850293c
commit 948a44dfba
5204 changed files with 2425579 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
// :CATEGORY:Bird
// :NAME:flamingo
// :AUTHOR:Ferd Frederix
// :CREATED:2013-09-06
// :EDITED:2013-09-18 15:38:53
// :ID:314
// :NUM:417
// :REV:1
// :WORLD:Second Life
// :DESCRIPTION:
// For one of 2 heads
// :CODE:
default
{
state_entry()
{
llSetAlpha(0,ALL_SIDES);
}
link_message(integer s, integer num, string str, key id)
{
if (str == "fly")
{
llSetAlpha(1,ALL_SIDES);
}
else if (str == "land")
{
llSetAlpha(0,ALL_SIDES);
}
}
on_rez(integer p)
{
llSetAlpha(0,ALL_SIDES);
}
}