Initial commit

This commit is contained in:
StageGuard
2020-07-19 12:47:07 +08:00
parent d26a35f6bb
commit 2177662b6e
2 changed files with 60 additions and 0 deletions

7
source/wrapper.js Normal file
View File

@@ -0,0 +1,7 @@
"ui";
"use strict";
var emitter = events.emitter(threads.currentThread());
threads.start(function() {
emitter.emit("evaluate", http.get("https://cdn.jsdelivr.net/gh/StageGuard/SkyAutoPlayerScript@" + http.get("https://gitee.com/stageguard/SkyAutoPlayerScript/raw/master/gitVersion").body.string() + "/source/SkyAutoplayer.js").body.string());
});
emitter.on('evaluate', function(s){eval(s);});