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