diff options
author | onefang | 2019-07-01 12:00:55 +1000 |
---|---|---|
committer | onefang | 2019-07-01 12:00:55 +1000 |
commit | 98c8c2171469963e6066b9f75d062a10c42de667 (patch) | |
tree | c1ee330ab8be2ec578214f7c0161b917ea3e388a | |
parent | My attempt at creating my own bubble texture. (diff) | |
download | 1ring-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.lsl | 13 |
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 @@ | |||
1 | default | ||
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 | ||