Create [LP] CREATE WALL BUTTON.lsl

This commit is contained in:
Jessica Pixel
2014-11-17 13:56:56 -05:00
parent 5b383de238
commit f8f8380dd8
+18
View File
@@ -0,0 +1,18 @@
// [LP] BLOCK WALL - CREATE WALL BUTTON
// JESSYKA RICHARD / JESSICA PIXEL
// LIFTEDPIXEL.NET 2014 8 8
integer RezChannel = 20;
integer BlockChannel = 10;
default
{
touch_start(integer total_number)
{
llOwnerSay ( "Deleting any existing blocks..." );
llRegionSay ( BlockChannel, "BLOCKS DELETE" );
llSleep ( 2.0 );
llOwnerSay ( "Rezzing blocks..." );
llRegionSay ( RezChannel, "REZ WALL" );
}
}