Preload Manager

● ARCHIVED · READ-ONLY
Started by Galenmereth 289 posts Page 12 of 15 View original ↗
  1. Archeia said:
    Can you give me a sample project?

    I'm afraid not. Sorry.
  2. Can anyone confirm that this plugin doesn't work when you encrypt your pictures/audio during deployment? I have an endless loading screen when I use encryption. It works flawlessly when I disable encryption though.
  3. Can anyone smarter than me tell me how I can have the plugin preload files from a non-standard folder at startup? I'm using a plugin which requires images to be placed in a folder called 'layers', so they're not being preloaded. Thanks!

    I should point out that I'm using the modified version Archeia posted on the last page as the default plugin apparently doesn't work with the latest version of MV. Archeia's post:
    https://forums.rpgmakerweb.com/index.php?threads/preload-manager.46515/page-11#post-758534
  4. Is 1.1.1 still the latest version? Because man, I ran into show-stopping bugs within minutes, and had to dig into the code to fix them.

    First off: The exception handler at line 242 crashes when triggered because "use strict" is on and "e" is undefined. (To fix, change line to "var e = ..."

    Secondly, you cannot preload stuff from SvActor or SvEnemy because line 240 naively converts all characters in the string to lower case, turning loadSvEnemy into loadSvenemy, which crashes the plugin when you try to pull that function from ImageManager. (To fix, remove the ".toLowerCase()" at the end of line 40 and assume the user is smart enough to handle their own capitalization, which to be fair is a safer bet than assuming the user is smart enough to delve into the code to figure out why "SvEnemy" isn't a valid key when the help file claims it is.)

    I mean, it took half an hour to diagnose and fix these bugs, but still, it makes me really nervous. Is there a more up-to-date version of this plugin anywhere?
  5. Here's a version of TDDP Preloader that's compatible with 1.6.0
  6. Archeia said:
    Here's a version of TDDP Preloader that's compatible with 1.6.0

    Does "compatible" mean it will also work with 1.5.0? I cannot patch it because 1.6.0 is not compatible with several of my plugins.
  7. hyuugacln said:
    Does "compatible" mean it will also work with 1.5.0? I cannot patch it because 1.6.0 is not compatible with several of my plugins.

    It works for 1.5.1 too
  8. Archeia said:
    Here's a version of TDDP Preloader that's compatible with 1.6.0
    Thank you so much!
    I think you accidentally left code to preload certain files on boot, which causes an error for those who don't have the file. If anyone has this issue, just go into the js and find "xx_strange_radio_broadcast" then replace it with something else or comment it out by typing // to the left of it. Same for "[SE]swish"
  9. thank you so much @Archeia :3
  10. Oh oops, sorry about that everyone!
  11. The problem with 'e' not being defined is still an issue in the version @Archeia linked, but it's on line 262 now instead of 242. The toLowercase thing might still be an issue too, but I didn't pre-load any svactors or enemies, so I'm not sure.

    That being said, it works, and that's better than what I had earlier. Thanks.
  12. After 1.52 it doesn't work.
  13. Tuomo L said:
    After 1.52 it doesn't work.

    How exactly does it not work? This doesn't tell anything.
  14. Archeia said:
    Here's a version of TDDP Preloader that's compatible with 1.6.0
    wow, great work!
  15. Archeia said:
    How exactly does it not work? This doesn't tell anything.

    Stuff in status don't preload properly. They are invisible the first time that I go to the menu. That's the reason I need preloader in the first place.

    It doesn't preload pictures even when I put them into the advanced stuffs and specifically tell it to preload said pictures.
  16. Tuomo L said:
    Stuff in status don't preload properly. They are invisible the first time that I go to the menu. That's the reason I need preloader in the first place.

    It doesn't preload pictures even when I put them into the advanced stuffs and specifically tell it to preload said pictures.

    Actually some menus don't display some stuffs immediately depending on their update code. I have this problem with status effects in my Battle UI but the preloader works as intended when testing on other parts of my UI like the item menu on map.

    If you also have the Community_Basic Plugin, Increase the cache limit to 99999999 or something.
  17. Archeia said:
    Actually some menus don't display some stuffs immediately depending on their update code. I have this problem with status effects in my Battle UI but the preloader works as intended when testing on other parts of my UI like the item menu on map.

    If you also have the Community_Basic Plugin, Increase the cache limit to 99999999 or something.

    The thing is, one of the characters preloads and displays correctly while others don't which looks really weird. This issue didn't happen when using SRD's preloader, as oppossed to this.
  18. I had the new version for 1.6 working fine, but now suddenly I get a crash any time I try to start a new game or load a save file, it says it cannot find the asset files, here is a screenshot of the error log. I have already commented out the two extra lines under preloaded audio.
  19. Maybe you accidentally deleted a file?
  20. Archeia said:
    Maybe you accidentally deleted a file?
    Nothing like that it is doing it on every map with whichever file that particular map happens to try to load first. When I turn off the plugin the game runs fine. I've tried moving it up on the list but no luck there either.