Easy Ladder

This commit is contained in:
Fred Beckhusen
2015-12-20 16:39:35 -06:00
parent 1ec08494b4
commit 4270692dcd
5 changed files with 456 additions and 35 deletions

View File

@@ -1,22 +0,0 @@
default
{
state_entry()
{
llListen(9898,"","","scream");
llSetAlpha(0.0, ALL_SIDES);
}
listen(integer channel, string name, key id, string message)
{
llSetAlpha(1.0, ALL_SIDES);
llSleep(3);
llSetAlpha(0.0, ALL_SIDES);
}
on_rez(integer wtf)
{
llResetScript();
}
}