From 5b383de23874e31687246aa4043fd0c8ae1fa656 Mon Sep 17 00:00:00 2001 From: Jessica Pixel Date: Mon, 17 Nov 2014 13:56:37 -0500 Subject: [PATCH] Create [LP] BLOCKS DELETE BUTTON.lsl --- BLOCK-WALL/[LP] BLOCKS DELETE BUTTON.lsl | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 BLOCK-WALL/[LP] BLOCKS DELETE BUTTON.lsl diff --git a/BLOCK-WALL/[LP] BLOCKS DELETE BUTTON.lsl b/BLOCK-WALL/[LP] BLOCKS DELETE BUTTON.lsl new file mode 100644 index 0000000..2068f98 --- /dev/null +++ b/BLOCK-WALL/[LP] BLOCKS DELETE BUTTON.lsl @@ -0,0 +1,14 @@ +// [LP] BLOCK WALL - BLOCKS DELETE BUTTON +// JESSYKA RICHARD / JESSICA PIXEL +// LIFTEDPIXEL.NET 2014 8 8 + +integer BlockChannel = 10; + +default +{ + touch_start(integer total_number) + { + llOwnerSay ( "Deleting blocks..." ); + llRegionSay ( BlockChannel, "BLOCKS DELETE" ); + } +}