removed useless _ folders
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
<Solution name="NN_Free_Keyboard_Script_by_nonnux_W">
|
||||
<Project name="NN_Free_Keyboard_Script_by_nonnux_W" path="NN_Free_Keyboard_Script_by_nonnux_W\NN_Free_Keyboard_Script_by_nonnux_W.prj" active="true"/>
|
||||
</Solution>
|
||||
@@ -0,0 +1,6 @@
|
||||
<Project name="NN_Free_Keyboard_Script_by_nonnux_W" guid="D762AA4C-6C00-1014-B904-200204C60A89">
|
||||
<Object name="Object" guid="D762AB37-6C00-1014-B904-200204C60A89">
|
||||
<Script name="NN_Free_Keyboard_Script_by_nonnux_W_1.lsl" guid="D762C280-6C00-1014-B904-200204C60A89">
|
||||
</Script>
|
||||
</Object>
|
||||
</Project>
|
||||
@@ -0,0 +1,38 @@
|
||||
// :CATEGORY:Keyboards
|
||||
// :NAME:NN_Free_Keyboard_Script
|
||||
// :AUTHOR:nonnux White
|
||||
// :CREATED:2010-01-10 05:20:56.000
|
||||
// :EDITED:2013-09-18 15:38:58
|
||||
// :ID:555
|
||||
// :NUM:759
|
||||
// :REV:1.0
|
||||
// :WORLD:Second Life
|
||||
// :DESCRIPTION:
|
||||
// NN Free Keyboard Script by nonnux White.lsl
|
||||
// :CODE:
|
||||
|
||||
// the first free keyboard script
|
||||
// by nonnux White
|
||||
// free to mod, sell, erase, explode, burn :)
|
||||
list anims = [];
|
||||
default
|
||||
{
|
||||
state_entry()
|
||||
{
|
||||
llSetTimerEvent(.2);
|
||||
}
|
||||
timer()
|
||||
{
|
||||
anims = llGetAnimationList(llGetOwner());
|
||||
if(llListFindList(anims,[(key)("c541c47f-e0c0-058b-ad1a-d6ae3a4584d9")]) != -1)
|
||||
{
|
||||
llSetText("",<1,0,0>,1);
|
||||
llSetLinkAlpha(LINK_SET,1.0,ALL_SIDES);
|
||||
}
|
||||
if(llListFindList(anims,[(key)("c541c47f-e0c0-058b-ad1a-d6ae3a4584d9")]) == -1)
|
||||
{
|
||||
llSetText("",<1,1,0>,1);
|
||||
llSetLinkAlpha(LINK_SET,0.0,ALL_SIDES);
|
||||
}
|
||||
}
|
||||
}// END //
|
||||
Reference in New Issue
Block a user