added llc command for logic reconnecting

This commit is contained in:
Redo 2019-04-16 22:06:14 -05:00
parent 500eff70a9
commit bde7781d04
2 changed files with 14 additions and 10 deletions

View File

@ -116,6 +116,10 @@ package LuaLogic
};
activatePackage("LuaLogic");
function llc(){
lualogic_connect(25000);
}
function llr(){
%path = $LuaLogic::Path;
deleteVariables("$LuaLogic*");
@ -123,5 +127,5 @@ function llr(){
//resetAllOpCallFunc();
exec("./lualogic.cs");
schedule(1000, 0, lualogic_connect, 25000);
schedule(1000, 0, llc);
}