mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-12-24 20:24:13 +08:00
Update lunajspatch.js
This commit is contained in:
parent
7be474802a
commit
5ea4fee22f
@ -34,14 +34,19 @@ function Electronhook() {
|
|||||||
}
|
}
|
||||||
function retryinject(times){
|
function retryinject(times){
|
||||||
if(times==0)return;
|
if(times==0)return;
|
||||||
if(window.tyrano && tyrano.plugin){
|
try{
|
||||||
Electronhook();
|
if(window.tyrano && tyrano.plugin){
|
||||||
|
Electronhook();
|
||||||
|
}
|
||||||
|
else if(window.Utils && Utils.RPGMAKER_NAME){
|
||||||
|
NWjshook();
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
setTimeout(retryinject,3000,times-1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if(window.Utils && Utils.RPGMAKER_NAME){
|
catch{
|
||||||
NWjshook();
|
//非主线程,甚至没有window对象,会弹窗报错
|
||||||
}
|
|
||||||
else{
|
|
||||||
setTimeout(retryinject,3000,times-1);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
setTimeout(retryinject,3000,3);
|
setTimeout(retryinject,3000,3);
|
Loading…
x
Reference in New Issue
Block a user