aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/URL counter.lsl
blob: ae3a220cdc56859b993758b8aa15a4e3d488c5f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
default
{
    touch_start(integer num_detected)
    {
        integer numberOfFreeURLs = llGetFreeURLs();
 
        if(numberOfFreeURLs)
            llSay(0,  "There are " + (string)numberOfFreeURLs + " available HTTP-In URLs left for this sim.");
 
        else
            llSay(0, "WARNING: There are no HTTP-In URLs available anymore.");
    }
}