Jump to content

mrwonko

JKHub Staff
  • Posts

    1,571
  • Joined

  • Last visited

Everything posted by mrwonko

  1. So what exactly are you looking for? If you just want to create some NPCs to battle against, you can use the "npc spawn" cheat.
  2. Turns out this was already fixed in 2020, you must be on an older version of the plugin. The version on jkhub is used to be outdated, you can find the latest one here: Release nightly · mrwonko/Blender-Jedi-Academy-Tools (github.com)
  3. Make sure the name of your pk3 comes alphabetically after assets6.pk3. If it's something like "alternatekyle.pk3", it will be overwritten by the original assets instead of the other way around.
  4. In the Ghoul 2 properties, I don't think the name is supposed to end in _0. Compare that one to a working model to check. Usually the _0, _1 etc. suffixes are only there to disambiguate the objects, but all LODs have the same G2 name with no LOD suffix.
  5. The importer only supports one .skin file at a time, and it does not auto-hide surfaces marked as "*off". You'll have to manually combine the .skin files into a single one, and then manually hide/remove all undesired surfaces.
  6. Yeah, apparently time.clock was removed in Python 3.8 and Blender must have updated to that version (or newer) now. The add-on needs to be adjusted accordingly. I hate it when programming languages just randomly decide to break your program in a new version...
  7. I currently do not see the connection between the title of this thread and your message. Please describe in more detail what steps you have performed. How do you merge glas?
  8. No, you cannot change the lightmap using entity modding. The only way to get rid of it is to use a fullbright shader that ignores the lightmap, but a) that's going to look terrible and b) there probably aren't any existing fullbright shaders for the textures you want to use, and you cannot add new shaders through entity modding.
  9. I don't know of any, and if there were any, I wouldn't want to use them. I appreciate the Discord having different channels I can mute individually, to recreate that with telegram you'd need dozens of chats that people have to join individually. Just fix your Discord?
  10. Check the manual, you need to unpack models/players/_humanoid/_humanoid.gla and either have the files in GameData/Base or manually configure the base path on import.
  11. Does the underwater fog still work? I assume the blue character is related to that somehow, since it's also blue. bespin/water2 has fogparms configured to give it that blue fog, while caulk_water does not configure any fog, so I'm not sure which takes precedence when you mix both on a brush.
  12. Yes, it's a known bug in 1.4 that the native save dialog is broken since Vista or so, and the other one requires you to manually add the extension. But I fixed that in 1.6, which to my knowledge is no less stable than 1.4. However, nowadays many mappers swear by NetRadiant Custom (NRC).
  13. See https://jkhub.org/tutorials/general-modding/installing-editing-and-managing-pk3s-r73/, but remember to never edit the existing assets files, and instead put your modifications into a separate pk3 archive.
  14. "Extracted" makes it sound like you downloaded a zip. Please learn to use Git instead, so that you can keep track of your changes better, and undo them if necessary. Yes, I was talking about the name of jk2gamex86.dll. That sounds like the correct one, don't change it. x86 means 32 bit. To use a 32 bit/x86 jk2game dll, you need a matching version of OpenJO, I think the executable should be called something like openjosp.x86.exe (the x86 being the important bit), is that what you're using? "Release" is okay, "Release With Debug Symbols" is better if you get something wrong and need to debug. You probably should not use "Debug", as it enables a lot of extra error checks, which tend to fail and interrupt your game with error messages about unrelated things. Did you check the ingame logs with Developer 1 like I suggested?
  15. Having your own folder for your mod is not a bad idea, it helps you stay organized, and if you can select it in the menu, you're probably doing it right. As far as I remember, dlls don't necessarily need to be in a pk3 to work, but it definitely doesn't hurt. The most likely cause for a dll not being loaded is that it has the wrong name. Either because you renamed it yourself (then undo that), put it in the wrong folder, or because you're trying to use a 32 bit mod with a 64 bit engine or vice-versa, in which case you need to compile the correct version instead. Once the file has the right name, the ingame log should contain more information about whether it's being used, especially when you set developer 1.
  16. Ah, good old Rubber Duck Debugging. Looks like the datapad was still work in progress in JK2 and then they finished it for JKA. I wonder how many other unused and/or unfinished assets are included with the games...
  17. You must have some kind of (asset) mod that changes the datapad, it looks like it's using a different texture. I'd be surprised if this was in any way connect to OJK or JAE. Have you tried removing all PK3s and loose files except the original assets?
  18. As it says, try running the game using a command line interface. Right-click the folder containing the executable, "Open in Terminal" and enter the name of the executable. You should then be able to see a more detailed error message.
  19. For animations, you can also do a lot with shaders! By overlaying up to eight layers, you can mask out areas, have moving/pulsing images, and do all kinds of neat things. As far as I know, shaders should work the same in menus as they do in maps. I think 4096x4096 is the largest texture size I've heard of people using successfully, and there shouldn't be much need to go further. Good luck!
  20. The menus use a virtual 640x480 canvas that gets stretched to whatever resolution the user is actually using. So to always look correct, you need one version of the menu for each aspect ratio. But I think you can do the image squishing in the .menu file, you don't need to squish the texture itself? A menu editor is high on my priority list, but I don't know when I'll get around to it.
  21. Dark science. Cloning. Or, on a more technical level, an npc_spawner with count -1 can spawn an unlimited number of NPCs. We'd have to check the entities in the map to know for sure. As for the sand worms, the intended solution is to avoid/distract them, not to defeat all of them. I imagine the faster variant is there as way to keep you from running out of the level. Again, we'd have to check how the level is built and what the corresponding source code looks like to know for sure.
  22. In Jedi Outcast, the surface is disabled in the .glm file and then turned on using the npcs.cfg file. In Jedi Academy, the .glm typically has all surfaces enabled, and then selectively disables them using the .skin file. I suspect there is no way to turn them on using only the .skin file, you'll likely need to modify the .glm. So download the latest version of the Blender tools from Github, import the .glm (refer to the manual for the required folder structure so it can find the corresponding .gla), go into the object properties of each hidden surface, find the Ghoul 2 Properties and untick the "off" checkbox, then re-export the .glm.
  23. I don't see "TORSO_COLLAR_OFF" anywhere in the code you posted, I wonder how it ends up in the error message. Can you post the full NPC definition?
  24. Like I said, use surfOn. I don't see it in that npc you posted.
  25. The relevant surfaces are torso_galaktorso_off, torso_collar_off, torso_galakface_off, torso_eyes_mouth_off & torso_galakhead_off, as you can check via ModView from the SDK. In Jedi Academy, surfaces get disabled via the .skin file, but apparently Jedi Outcast uses ext_data/npcs.cfg instead. Here's an excerpt of the Stromtrooper Officer: STOfficer { playerModel stormtrooper surfOn torso_pauldron_off surfOff "torso_armor_neck_augment torso_body_neck_augment" It uses the "surfOn" and "surfOff" settings to enable the pauldron. You should be able to similarly enable the missing Galak surfaces.
×
×
  • Create New...