aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authoronefang2019-07-01 12:00:55 +1000
committeronefang2019-07-01 12:00:55 +1000
commit98c8c2171469963e6066b9f75d062a10c42de667 (patch)
treec1ee330ab8be2ec578214f7c0161b917ea3e388a
parentMy attempt at creating my own bubble texture. (diff)
download1ring-98c8c2171469963e6066b9f75d062a10c42de667.zip
1ring-98c8c2171469963e6066b9f75d062a10c42de667.tar.gz
1ring-98c8c2171469963e6066b9f75d062a10c42de667.tar.bz2
1ring-98c8c2171469963e6066b9f75d062a10c42de667.tar.xz
A script used for testing URL availability.
-rw-r--r--URL counter.lsl13
1 files changed, 13 insertions, 0 deletions
diff --git a/URL counter.lsl b/URL counter.lsl
new file mode 100644
index 0000000..ae3a220
--- /dev/null
+++ b/URL counter.lsl
@@ -0,0 +1,13 @@
1default
2{
3 touch_start(integer num_detected)
4 {
5 integer numberOfFreeURLs = llGetFreeURLs();
6
7 if(numberOfFreeURLs)
8 llSay(0, "There are " + (string)numberOfFreeURLs + " available HTTP-In URLs left for this sim.");
9
10 else
11 llSay(0, "WARNING: There are no HTTP-In URLs available anymore.");
12 }
13} \ No newline at end of file