Add the script name at the top, with a one-line description

It should help ensuring that you have the right script contents when saving. It also provides a short description, to get a rough idea of what it's about.

The only code change is the product name in [AV]xcite! to add a TM symbol to Xcite!
This commit is contained in:
Sei Lisa 2017-11-13 14:08:37 +01:00 committed by Sei-Lisa
parent 91e10390fc
commit aa9cba13a5
27 changed files with 62 additions and 8 deletions

View file

@ -1,4 +1,6 @@
/*
* update-sender - Send contents to an item with update-receiver
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
@ -72,7 +74,7 @@ default
{
llSetTimerEvent(0);
llListenRemove(listenhandle);
state do_update;
state do_update;
}
touch_start(integer touched)
@ -124,11 +126,11 @@ state do_update
i = 0;
llSetTimerEvent(0.1);
}
timer(){
llRegionSayTo(av, 0, "Processing prim " + (string)(i+1) + "/" + (string)llGetListLength(objects_to_update));
key object = llList2Key(objects_to_update, i);
list items = llParseStringKeepNulls(llList2String(objects_files, i), ["|"], []);
if (1 == 1)
@ -196,10 +198,10 @@ state do_update
}
}
}
i++;
if(i==llGetListLength(objects_to_update)){
if(i==llGetListLength(objects_to_update)){
llRegionSayTo(av, 0, "Updates complete!");
llResetScript();
}