Start to fix and update boards
This commit is contained in:
parent
ee658115ee
commit
b6a59a6673
6 changed files with 14 additions and 2 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -7,3 +7,6 @@
|
|||
[submodule "LSL/external/CommonLSL"]
|
||||
path = LSL/external/CommonLSL
|
||||
url = ssh://git@git.zontreck.com:1212/AriasCreations/CommonLSL
|
||||
[submodule "LSL/external/AriasCreations"]
|
||||
path = LSL/external/AriasCreations
|
||||
url = git@github.com:AriasCreations/AriasCreations
|
||||
|
|
1
LSL/external/AriasCreations
vendored
Submodule
1
LSL/external/AriasCreations
vendored
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit b540eb7b9ef90977dba23e91065504cf790ccfb7
|
|
@ -67,7 +67,7 @@ Text(){
|
|||
|
||||
CleanInventory()
|
||||
{
|
||||
list lDefaults = ["Board [AC]", "Board Menu [AC]", "Dialog Module [AC]", "Text", "Stall Board Flash Drive [AC]", "Board Notifier [AC]"];
|
||||
list lDefaults = ["Board [AC]", "Board Menu [AC]", "Dialog Module [AC]", "Text", "Stall Board Flash Drive [AC]", "Board Notifier [AC]", "Service Daemon [AC]"];
|
||||
integer i=0;
|
||||
integer end = llGetInventoryNumber(INVENTORY_ALL);
|
||||
for(i=0;i<end;i++){
|
||||
|
|
|
@ -78,6 +78,10 @@ default
|
|||
#endif
|
||||
//llSetTimerEvent(1);
|
||||
}
|
||||
|
||||
if(n == 0x004f) {
|
||||
API_SERVER = DecipherService(m,"api");
|
||||
}
|
||||
}
|
||||
|
||||
timer()
|
||||
|
@ -486,6 +490,8 @@ state boot{
|
|||
|
||||
g_iNotification = iNotification;
|
||||
llSetTimerEvent(5);
|
||||
} else if(n == 0x004f) {
|
||||
API_SERVER = DecipherService(m,"api");
|
||||
} else if(n == 0x3E)
|
||||
{
|
||||
if(llJsonGetValue(m,["op"]) == "reset")
|
||||
|
|
|
@ -23,7 +23,8 @@ default
|
|||
|
||||
RestoreFromKVP();
|
||||
MainMenu(i);
|
||||
|
||||
}else if(n == 0x004f) {
|
||||
API_SERVER = DecipherService(m,"api");
|
||||
} else if(n == 0x1D)
|
||||
{
|
||||
g_lSupport = llJson2List(m);
|
||||
|
|
1
LSL/src/Service Daemon [AC].lsl
Normal file
1
LSL/src/Service Daemon [AC].lsl
Normal file
|
@ -0,0 +1 @@
|
|||
#include "../external/AriasCreations/ServiceDaemon.lsl"
|
Loading…
Reference in a new issue