Added files

This commit is contained in:
Fred Beckhusen
2015-12-12 16:58:38 -06:00
parent 767e53f17d
commit 1ec08494b4
191 changed files with 25371 additions and 47 deletions

View File

@@ -0,0 +1,23 @@
//:AUTHOR: Ferd Frederix
//:DESCRIPTION:
// Button Script for console
//:CODE:
string E = "<1,0,0>";
string NE = "<1,1,>";
string N = "<0,1,0>";
string NW = "<-1,1,0>";
string W = "<-1,0,0>";
string SW = "<-1,-1,0>";
string S = "<0,-1,0>";
string WE = "<1,-1,0>";
// chose a direction for one of 8 buttons.
default
{
touch_start(integer total_number)
{
llMessageLinked(LINK_SET,0,N,"");
}
}