Hey folk!
I have a little Problem with SumRndmDde's HUD Maker...
When I export the game and start the index.html in my browser (firefox) than the HUDs won't show up.
When I startet the normal game.exe everthing is fine.
Can someone help me with that prob?
Thanks!
SumRndmDde HUD Maker - Browser problem
● ARCHIVED · READ-ONLY
-
-
your not the only one, i just fround this post while looking for another having the sme issue.
I found a solution to this issue. I didnt look into enough to understand possible side effects or why its even happening. I'll be sure to point it out to him.
do you see an error in your browser console saying _testExceptions is not defined? -
First: Thanks for your help!
Second: Ähm.... Browser console? (Sorry... I'm not quite sure what you mean... Beginner...) -
In a lot of browsers, you can press F12 to open the Console. If you testplay from the RPG Maker program it's F8 to open the console.
Here are the full instructions for Firefox:
https://developer.mozilla.org/en-US/docs/Tools/Browser_Console -
I had the same issue...
Found a solution but it might not work for everyone due to my custom setup with the plugins that I use.
The plugins from SumRndmDde I am using are Game Upgrade, Super Tools & HUD Maker.
Solution:
In SRD_GameUpgrade.js change line 604 to this:
Code:All I did was comment out the right side and replaced it with false_.isNewNWjs = false; //process.versions['node-webkit'] >= "0.13.0" && Utils.RPGMAKER_VERSION >= "1.6.0";
In SRD_SuperToolsEngine.js change line 206 to this:
Code:All I did was comment out the right side and replaced it with true_.isNewNWjs = true; //process.versions['node-webkit'] >= "0.13.0";
Which solved this error:This is because GameUpgrade & SuperTools are now loaded, before they would crash.TypeError: DataManager._testExceptions is undefined
SRD_HUDMaker.js:443:1
Working now on Chrome, Firefox, & Android. Yay! :cutesmile:
Let me know how this goes. I'm still trying to figure out the best solution. :):thumbsup-right: -
just edit line 443 of HUD_MakerI had the same issue...
Found a solution but it might not work for everyone due to my custom setup with the plugins that I use.
The plugins from SumRndmDde I am using are Game Upgrade, Super Tools & HUD Maker.
Solution:
In SRD_GameUpgrade.js change line 604 to this:
Code:All I did was comment out the right side and replaced it with false_.isNewNWjs = false; //process.versions['node-webkit'] >= "0.13.0" && Utils.RPGMAKER_VERSION >= "1.6.0";
In SRD_SuperToolsEngine.js change line 206 to this:
Code:All I did was comment out the right side and replaced it with true_.isNewNWjs = true; //process.versions['node-webkit'] >= "0.13.0";
Which solved this error:
This is because GameUpgrade & SuperTools are now loaded, before they would crash.
Working now on Chrome, Firefox, & Android. Yay! :cutesmile:
Let me know how this goes. I'm still trying to figure out the best solution. :):thumbsup-right:
Code:this will retain funcionality on pc and allow the game to run on mobile, it's less distructive to the original code.if (Utils.isNwjs()) { DataManager._testExceptions.push(_.mapFile, _.battleFile); }
Some things could use a little fixing but im not very interested in posting revisions of srd's work. -
Thanks for the info. :) Makes sense.just edit line 443 of HUD_Maker
Code:this will retain funcionality on pc and allow the game to run on mobile, it's less distructive to the original code.if (Utils.isNwjs()) { DataManager._testExceptions.push(_.mapFile, _.battleFile); } -
-
Hello from the future, post!
I am also having trouble getting HUDMaker to work with HTML games (specifically, HUDMaker v1.43 on RPGMaker MV v1.6.2).
I tried the line 443 adjustment, but alas no joy.
I'm running it via Itch, in case that makes a difference.
Any idea if there's an updated plugin mod I could make to get the HUDs to work in this scenario? -
@akoniti this post is oer 3 years old, and some might be updated in the plugin.
the problem with SRD Plugins mostly, it doesn't play nice so you can try line 443
if the above doesn't work, you can rather create a new threat of your problem.