Create come here 0.1.lsl

This commit is contained in:
Jessica Pixel
2014-11-17 14:28:52 -05:00
parent 624cde8186
commit 87cdc67f30
+12
View File
@@ -0,0 +1,12 @@
vector location;
default
{
touch_start(integer x)
{
location = llGetPos();
llRegionSay( 1, "come here" );
llRegionSay( 2, (string)location );
}
}