Jump to content

ensiform

Members
  • Posts

    1,626
  • Joined

  • Last visited

Everything posted by ensiform

  1. Fixed in https://github.com/JACoders/OpenJK/commit/4457d2c112c04d0529e3d6f53b43849a9949b9f0 You need a fixed jampgame dll/so/dylib for the change to reflect. Which means running a mod such as JA+ (which doesn't contain fix) won't be fixable there. Any mods still in development like OpenJK's base-gamecode, JA++, and JAPro will probably incorporate the fix.
  2. Works just fine here, don't know what mod you are running. EDIT: It happens if you have weapons disabled on the server.. And considering its a cheat command which shouldn't be used on live servers its not a huge issue. If someone gets time to look at it, then we will. /give weaponnum <x> should work for specific weapons though.
  3. Grass is not implemented (surface sprites) at all, can you not read? Which shader anims. Things that cause flags to wave such as in q3, do not work on md3's because its mixed between cpu and gpu.
  4. They never really did. Parsed but doesn't do anything in vanilla either.
  5. Done in https://github.com/JACoders/OpenJK/commit/71811573194750b2e22346febe5e76b165418ed5
  6. In the process of adding those new features & commits @@DT85 just mentioned. Plus there was a commit involving some shadow fix with mdr models, which i also applied to ghoul2 models.
  7. Admin rights won't do you any good. That was mostly the whole purpose of adding homepath, so that admin rights are not required. Is the OpenJK exe new enough?
  8. [MP] target_location entities no longer take up a gentity slot.
  9. Added support for: surfaceSprites flatten ...shader option for MP. This was missing from MP but supported in SP (used in t2_trip). Resulting in the sprites not appearing at all or very weirdly in MP when playing said map.
  10. The vanilla renderer never actually checked it before OpenJK. It only looks for the first 6 numbers anyway. The extra information to ext is only for q3map2. You missed the point, though DT85, you wouldn't use BOTH in the .mtr file as vanilla can't load it.
  11. You don't need q3map_sun(Ext) and q3gl2_sun, one of them (hopefully the latter) will be used always. And trying to plug said shader itself into vanilla will break on q3gl2_sun and q3gl2_tonemap anyway.
  12. MSBuild relies on .NET Framework because it is a managed app written in C# with .NET (Its not even located in the VC directory or WinSDK platform directory)
  13. Wouldn't necessarily need to be a server-side entity though, could be purely cg_spawn.c
  14. I just meant you dont need special renderer to have lens flares, you can do it with some simple client side mod code and the necessary images/shaders.
  15. Lens flares are ezpz can even be done by cgame ref ents.
  16. You have to use the respective commands not adding the extension. screenshot by itself is jpg screenshot_tga is tga, screenshot_png is png. NOTE: PNG screenshots in vanilla don't gamma correct, everything else does and all 3 do in rend2. And JPEG screenshot command is identical. Sounds like issue/conflict with driver or something.
  17. Have you tried with tga and png screenshots to see if theres any difference ?
  18. That looks like Bioshock Infinite holy shit
  19. Not really relevant at all because it doesn't adapt to the rendering pipeline. But yea it is pretty cool, seen it before.
  20. They should be identical if r_hdr is off. // bonus items and view weapons have a fixed minimum add if ( !r_hdr->integer ) { // give everything a minimum light add ent->ambientLight[0] += tr.identityLight * 32; ent->ambientLight[1] += tr.identityLight * 32; ent->ambientLight[2] += tr.identityLight * 32; }This is if ( 1 ) in vanilla. I'm assuming he did this cause it looks weird with proper hdr?
  21. You can't mix other model formats with ghoul2 (API). And if you want extra formats otherwise, bye bye compat mods. FWIW Format wise, IQM > MD5 in basically every way. The implementation used, is just a basic one though.
  22. MD5 not getting implemented <period>
  23. Dglow will be one of the last things if its not replaced with something else, because the implementation is poor/slow.
  24. So you completely stripped EAX and OpenAL entirely? The error is supplied because the faulty module is being loaded from the executable as seen in the problem log. Fault Module Name: OpenAL32.dllAnd 0xc0000005 is an access violation.
×
×
  • Create New...