Jump to content

mrwonko

JKHub Staff
  • Posts

    1,601
  • Joined

  • Last visited

Everything posted by mrwonko

  1. I should probably add that regardless of this the first thing I'll be doing is getting that JK3Files mirror up. I have no idea about Arth, we haven't talked in years... He should still be around though. Not active in JKA modding though. Killermic is technically also still on the team, last I heard he was doing lots of work on a complicated map, that was years ago though. Taking on new team members might be reasonable; but before much work can be done a good deal of (re)organization is probably required.
  2. Shouldn't ModView be using the skin file as well? I'm not entirely sure...
  3. As explained in the manual the shader for a surface is set in the Ghoul 2 properties in the Object tab, although the game will ignore that and use whatever's in the .skin file.
  4. Hey y'all! I have so many ideas for what to work on next so I thought I'd ask the community what you'd most like me to work on. I'm not promising I'll do what the majority wants, but I'll take it into account. Here are my ideas for what to do: OpenJK OpenJK could use my help; and I certainly have a couple of ideas for improvements. While I'm at it I could also try to resolve some of the outstanding issues. JKHub (improvements) I'm not yet quite sure what in particular I'd work on, but I should be perfectly capable of adding new features to this site. JKHub Wiki/Tutorials Coding aside* I know pretty much all there is about JKA modding - maybe I should write all that knowledge down? * I generally know how to code, but I've hardly worked with the JKA code in particular. Editor(s) But why write all my knowledge down when it could instead be available as context-sensitive help/instructions in a cool new editor? I'd basically want something similar to the UnrealEditor, CryEngine's Sandbox or the Unity Editor for JKA: a single editor that manages all the pieces, can preview things very much like they look in the game and is generally awesome. That's a huuuuge project though, and I'd have to learn a lot to do it properly. There's a good chance I'd never finish, as with so many big projects I've started in the past. (I've grown since, though.) SP Campaign Talking about unfinished big projects - there's also this SP mod "Spirits of the Sith" that 3D-GET worked on over half a decade ago. I'm technically still part of the team, and I'd very much like the mod to be finished and released - it's roughly 80% done after all, or maybe 60% if I get all perfectionist and try to hugely improve existing pieces. (Let's be realistic - I probably would.) Blender Plugins I haven't really improved my Blender plugins in years. They work, but they're clumsy to use. Manual UV splitting and triangulation are a pain and could very much be automated, and I've never tried them on any Blender versions since 2.59. Normals at seams on the other hand are a difficult problem; I don't think Blender properly supports manually smoothing them across different meshes. And I don't think there's a better solution for tags than the current triangle-surface system since they need to be weighted to the skeleton. I'd much prefer a custom Ghoul 2 editor that helps with making models that actually work; this would be part of the whole editor project mentioned earlier. Mod Manager And finally I think it would make mods much easier to use if there was a JKA launcher that can download mods from various sources (repos, similar to packet managers) with ratings and popular files, much like the Steam Workshop. I'm not yet sure how a decentralized structure would support ratings and possibly comments;this would first require thorough planning. (As would the editor project.) So, vote and discuss!
  5. If you could upload the map for us to take a look at, that would be a tremendous help. Also include any custom shaders you may be using.
  6. No, I'm saying that if you only want a white shader, you don't need three stages; you just need a single one, e.g. { map $whiteimage //or textures/colors/white, if you prefer blendFunc GL_ONE GL_ZERO } together with q3map_nolightmap. Possibly add a glow stage. Your shader visually looks the same, but takes 3x as long to display. This is just a simplification; it should not help with your issue.
  7. I know you're trying to help, and I was unnecessarily aggressive. I'm unreasonably annoyed by the poor English and mediocre formatting in most of your posts, which makes me biased against you. I shouldn't be; your posts are usually still helpful and have good intentions. So understand that in saying this I'm not attacking you, I'm just explaining my reaction, misguided as it was. Sorry for that. I'm probably also slightly stressed due to coming up on the deadline of my bachelor thesis and didn't want to write a detailed explanation. Still, my attack was not justified. But you are in fact wrong. I should have phrased this more nicely and explained it though. You're not generally wrong in regards to GLM; the model does need to have the right names for its parts. But when creating models in Blender, the names used in the export are defined separately. It's really quite confusing and has to do with supporting multiple LODs, since you can't have multiple objects of the same name in Blender. But in short: the names you see in those screenshots are not the names those surfaces are exported as. Sorry again for being overly aggressive in pointing out your mistake while not explaining it.
  8. If you want to write shaders, you probably need to learn about blend functions. That shader has 2 more stages than it needs. I'm kind of surprised that there is any light coming off that surface besides the single sphere of light - based on how I understand q3map_lightSubdivide those evenly spaced point lights are the only source of light for surface lights, and their default spacing is one every 120 units. But I never experimented much with them, so I can't tell for sure.
  9. Hey, I'm a mod now! This will either take a lot of my time or I won't be doing it properly, I'm afraid...

  10. Oh look, it now says moderator under my name!
  11. Although it should be noted that - if memory serves - this only applies to the model_root object. Anything else just needs to be below that in the hierarchy, the name is taken from the Ghoul 2 properties and the _0/_1/... suffix is just chosen by the importer because it needs to pick some name, and it can't be the same across LODs.
  12. Stop talking nonsense.
  13. If you hide all faces what remains are orphaned vertices.
  14. Probably vertices belonging to no face, which lose their UV coordinates upon import into Blender. Someone built a shitty model. Find and delete the stray vertices.
  15. Or you could just use the npc_target property, which is fired when the NPC dies.
  16. I see. It's mostly for completeness' sake; I want as complete a backup of jk3files as possible. But it's really quite silly to want the inferior version.
  17. There are lots of tags in that model, but r_hand/l_hand are not among them. Did you even look at it in ModView? Fwiw, they're also blatantly missing in Blender.
  18. Besides the hierarchy the important thing about those surfaces are their Ghoul2 properties - what are their names and are they marked as tags?
  19. mrwonko

    Lack of coders

    And a new browser and a mod manager (including the web infrastructure for it) and converting an old German JKA tutorial archive to my new website, yes. And maybe improving my Blender exporter a little, although the new editor would make it obsolete (by including Ghoul2 tools) so I don't really feel like doing that. As I said, I'll need to consider it a bit more next week.
  20. mrwonko

    Lack of coders

    That too is just a matter of experience. Code reviews would help - you need to understand that you did something wrong and what, in order to be able to learn from it. But that's even more work. Thorough documentation would certainly be useful, but that too is yet more work. Maybe I should try helping part-time. I'm not very familiar with the JKA code, yet quite familiar with C/C++, so I'd be in a great position to explore the code and write about it. It's just that I'm quite busy with multiple other projects in the pipeline; I'd need to switch back and forth between those and OpenJK. (And all but one of those projects are actually JKA related, too.) I'll think about it some more next week; I'm still super busy with Uni this week.
  21. I have the screenshots from jk3files, so as long as the file had screenshots then they'll be kept.
  22. No, I'm pretty sure it is a tag issue - that lightning comes from the origin, which is what tags default to when they're missing.
  23. I have no right to be this lazy.

    1. Show previous comments  2 more
    2. Cerez

      Cerez

      Oh yes you do!!! Quit being so busy!

       

      I find watching sloths move inspiring.

    3. Onysfx

      Onysfx

      I like sloths.

    4. Cerez
  24. And mono, except for music.
  25. Yeah, you! Just take the ID from the URL - 92631 in your case - and add an underscore and the filename as given in the infobox on the page - that's wwstance.rar here. This yields 92631_wwstance.rar, which is what the file is called at http://mrwonko.de/jk3files/files/: http://mrwonko.de/jk3files/files/92631_wwstance.rar I'll create a website that lists those downloads next month.
×
×
  • Create New...