Jump to content

mrwonko

JKHub Staff
  • Posts

    1,585
  • Joined

  • Last visited

Everything posted by mrwonko

  1. npc_player only exists in Jedi Academy SP mode. If you're creating a JK2 map, use npc_kyle instead.
  2. So it turns out that's not quite true. If the file is not listed in the torrent, I didn't download it as part of my jk3files scraping. However, there are still some mods I downloaded separately, just to play them. Looks like Expedition 1.05 is one of those, I found an 11-year-old file on my hard drive. I've uploaded it to my website, the download link on the page you posted should no longer be dead. --edit-- On closer inspection, while the readme of that file does contain "File Version: 1.05", its filename is "expedition1.06_readme.txt". Chances are this is a WIP release I received at some point? The full 1.06 release correctly says "File Version: 1.06"
  3. No, this was never available on my mirror, when I remove files (on request), I remove the file page as well. The IDs of removed files can be viewed in the config: jk3files-mirror/config.py at master · mrwonko/jk3files-mirror (github.com) When I scraped jk3files, crawling the file page for metadata and downloading the file itself were two separate steps, which could fail independently. It was a random dice roll whether a request for a recent file would hit an up-to-date server instance, so my script would retry a couple of times, then give up. Maybe this was one of the newer files I failed to download, or it had already been removed from jk3files for some reason? You could check the torrent, that's the most complete version of my archive: http://mrwonko.de/jk3files.torrent If the file's not listed there, I never had it.
  4. This Reva? I've downloaded it and tried it in OpenJK SP and she threw her saber at me without my game crashing. Am I doing something differently than you?
  5. I've never looked into it in detail, but the Dynamic Music System uses the ext_data/dms.dat file, which seems to define the timestamps at which switching between tracks sounds seamless, so you'll probably want to look into that.
  6. I know that a single broken shader can break all following shaders as well. Maybe that's also the case for NPCs? One broken NPC in turn breaks others? Try removing mods to find out which one is causing it, then share that one here and we can have a look at why it's broken.
  7. Sounds like Jedi Academy Enhanced might have added support for progressive jpeg textures, which are originally unsupported and lead to that error message. You then installed a mod that uses them (maybe Jedi Academy Enhanced ships with progressive jpegs? That would be a little mad...) and this makes it incompatible with the original game. Try removing mods until you find the offender.
  8. I don't understand the difference between spawning and showing up. Can you elaborate? Also, what's an example of a mod that exhibits this behaviour?
  9. You can compare the glm saber models for Jedi Academy and Jedi Outcast sabers using the ModView tool. At first glance, I can see that Jedi Outcast appears to use a tag called "*flash" to define where the blade starts, while Jedi Academy uses "*blade1", presumably due to the added support for multi-bladed sabers. So you'll have to edit the model to rename the tag, which can be done using the Blender Plugin or a hex-editor (making sure to replace instead of insert so the overall file length stays the same). The other issue is that Jedi Outcast does not have customisable sabers. That either needs to be programmed in (which needs to be done inside the VR port), or you can replace the default saber by giving the new one the same name. If you go the latter route, you should provide one PK3 file per saber, and then the player has to choose only one of them.
  10. Which steps are you referring to? What guide are you following?
  11. It's an animation used exclusively for that purpose, right? Then you could change the animation, e.g. by replacing it with a different existing one by editing models/players/_humanoid/animation.cfg, or by modifying the animation from the _humanoid.gla itself e.g. in Blender. The relevant animations should be BOTH_STAND1TO2 and BOTH_STAND2TO1.
  12. That would best be done using a sun light, which can be done using a custom sky shader, as described at http://q3map2.robotrenegade.com/docs/shader_manual/light-emitting-shaders.html, or using a directional light entity with a special key I can't quite remember, possibly "_sky" set to "1".
  13. These light rays have been created using brushes with a special texture, possibly common/dark_dust, on its visible sides, and system/nodraw on invisible sides.
  14. It would be nice if you could share your .map and .bsp, so we can see if we can reproduce the issue. I haven't watched your video yet, but it sounds like you're hitting some bugs that could be fixed in the engine.
  15. You could probably use vertex alpha for the fade, which you can control using alpha volumes. The principle is similar to (one method for) blending textures on terrain. I was going to point you towards SimonOC, but the website seems to be down. Somebody else can probably provide more details.
  16. It doesn't need to be called "base", you just need the correct folder structure inside of it,
  17. what Ramikad said, and make sure to read the included pdf manual for more details.
  18. Can you share the broken version of the map? This looks like a bug in the code that should be fixed, but we'll need a way to reproduce it first.
  19. Nice. I did a brief search for Blender Merge Normals Across Objects and found this alternate approach, but use whatever works for you.
  20. If you're using the Blender add-on, make sure to use the latest release, the version on JKHub does not handle normals properly. If the normals already look like that in your modelling tool, you need to fix them there, first.
  21. I experimented a little, and the name of the .shader file appears to be irrelevant. What helped was renaming the pk3 to come alphabetically before assets, e.g. aaa_animated_sky.pk3. I think for shaders, pk3 load order is reversed from what it usually is.
  22. Share your modified pk3 and I can take a look later.
  23. The order in which shaders are loaded (and thus override each other) is somewhat unusual, I don't really understand it, but if your pk3 currently comes after assets1 (alphabetically), try changing its name so it comes before, or vice-versa.
  24. That map uses the shader textures/mp/s_bespin (defined in mp2.shader), you need to change the first line of your shader to that (but keep the "skyParms" as they are).
×
×
  • Create New...