Jump to content
The Dark Mod Forums

Leaderboard

Popular Content

Showing content with the highest reputation on 02/07/24 in all areas

  1. Ok, here is the source of the goddamn precision issue: static void WriteFloat( idFile *f, float v ) { if ( idMath::Fabs(v - idMath::Round(v)) < 0.001 ) { f->WriteFloatString( "%i ", (int)idMath::Round(v) ); } else { f->WriteFloatString( "%f ", v ); } } I guess I'll never stop finding more weird tolerance stuff in this codebase Anyway, I'll fix this after 2.12: never know the consequences. UPDATE: Here is issue in bugtracker 6480
    2 points
  2. In case you're still tracking and fixing light leaks, I found the following in Poets and Peasants: The first picture is dev16814-10408. The second picture is dev16809-10394. Something must have changed between those two devs.
    2 points
  3. Hi. I'm new to TDM and Thief in general. Started playing Iris a couple of days back. I love everything about the mission. There were a couple of bugs, though. In the starter area there's a niche with a desk and some readable and a chest with bombs and arrows. The guard that goes there started walking angrily into the wall. Second bug was in Grimkirk. There's a And anyway, great experience overall. I loved everything, including the Loved every inch of it
    2 points
  4. The mission doesn't keep going but I kept going and found more stuff. And I kept going and found more stuff. And I kept going and found more stuff... By The Cookbook is The Bakery Job on steroids. Probably the best mission among the very small, simple, humble missions in the TDM catalogue. Congratulations, @Skaruts. Very well done.
    1 point
  5. I'm seeing the same thing in Dragons Claw, a big chunk of skybox right here:
    1 point
  6. Regarding worldspawn "forceAllShadowsBehindOpaque" set to "1", it doesn't seem to get restored on game load. To reproduce (works with any fixed mission using "forceAllShadowsBehindOpaque"): Add "forceAllShadowsBehindOpaque" "1" to the worldspawn in the map file. From main menu, "Start this Mission" or "Restart Mission". setviewpos Notice that the light leak is fixed (not present). Save game. Load game. Notice that the light leak is present (not fixed). Example 1. From main menu, "Start this Mission" or "Restart Mission". 2. Run setviewpos. 3. Save game. 4. Load game.
    1 point
  7. New report from the 2.12 beta thread: Added to the wiki
    1 point
  8. Well, let's explore this a bit. How can this be solved? Currently, creeping overrides running (like you said). Here are a couple issues or considerations: What about players who want to keep the fine control of toggling each one independently? Perhaps some players want to go from creeping to running. At the moment, the code is written in such a way (due to its Doom 3 history) that toggling creep can set the toggled run state, but toggling run cannot set the toggled creep state. The toggle creep key can set the toggled run state to walk but only once. If the player presses the toggle run key again, it will toggle without regard to the toggled creep state. Fixing this would require a lot of code rewriting. Brainstorming: It almost sounds like increase and decrease speed keys are desired. Run key to go from creep to walk and from walk to run. Creep key to go from run to walk and from walk to creep. If you're curious to give this a try, here's a Linux test build that matches beta212-05 (rev 16950-10635) with the following change: The toggle creep key sets the toggled run state to walk but only once. If the player presses the toggle run key again, it will toggle without regard to the toggled creep state. https://drive.google.com/file/d/1osTCQRf7LQ5wPvhGl2uRU4NcFnJPEu9_/view?usp=sharing
    1 point
  9. I like to imagine that Tasteless Bert is at least acquainted with the guy in The Black Mage with the ... unique... taste in cakes.
    1 point
  10. Is that so? Well then, it takes more than one shot to kill a Bull Moose! I do have ideas on what the recipe could have actually been, if you and anybody else wants to know, here it is in spoiler: I always loved when missions have a climax and then you finally read it, you finally know it. You know what they say; curiosity killed the cat...And satisfaction brought it back. I will never NOT play a mission's sidequest. Also I'm glad to know you're very eager for TDM mission making, wonder what you have on the works, no doubt it will be as great as this one and that is much to say knowing that, again, it's your first mission!
    1 point
  11. I just finished this FM and it was fantastic! It was short, sweet, and heavy on the details and atmosphere. I loved the amount of fine detail work you put into all of the individual buildings making up the alleyways as well as the interiors, which all felt lived-in and authentic. I'm short one secret, but I'm sure I'll find it on my Expert playthrough. Anyway, fantastic work;! Looking forward to your next one
    1 point
  12. Try sending a chat to Tels. It will send an alert email and he may respond ( he visits on rare occasion )
    1 point
  13. In High Expectations, I used a custom water material because I wanted a water surface that was dark and not entirely transparent. It looked pretty decent and I am using it in my next FM as well. However in 2.12 the water material has a greenish tinge to it (see attached screenshots). Here is the material - it's basically 'water_stream' with a blend stage using matt black: https://github.com/FrostSalamander/fsx/blob/main/materials/fs_water_stream_dark.mtr These screenshots have the brightness and gamma cranked up to maximum, because the difference is subtle (but noticeable) on normal levels and the screenshots were way too dark without it. High Expectations: WIP FM:
    1 point
  14. I've added a redirect from /download-the-mod/ to /downloads/ so the correct downloads page should be reached if someone finds the old download link
    1 point
  15. GAMEPLAY * Frob controls have been reworked completely. Previously players were annoyed by having to do three presses to extinguish a light. Also, some player didn't even know that bodies could be shouldered and were limited with dragging bodies. Now simply clicking the frob button performs the action player needs most of the time, and pressing-and-holding the same button performs alternative actions like dragging bodies and extinguishing candles (thread). * Several aspects of mantling has been improved: overhead mantling has become faster, mantling over low obstacles is allowed while carrying an item or a body. Also it is possible to switch weapon while being on rope/ladder or mantling. Pressing crouch button on rope/ladder now starts slide-down immediately. * Some aspects of gameplay can be further simplified. Auto-search bodies is for players who don't want to waste time searching for keys and purses on guard bodies. Lockpicking "Auto" difficulty now indeed trivializes lockpicking (thread). * Leaning animation has been improved with lower head tilt (thread). * Player footstep sounds have been rebalanced. Metal and water sounds were especially painful previously. * Further improvements of subtitles: revised location and font to avoid overlapping with other GUI elements, added directional cue, better slot allocation. Each subtitle is now displayed for at least one second even if the sound is very short. * More settings to reduce camera bobbing/rolling/shaking, which is good for players who feel motion sickness from default camera animations. * Now several script addons can coexist and work independently (thread). ENGINE * Optimized generation of light-entity interactions in rendering frontend. Also greatly optimized shadow processing, especially for moving lights. Unfortunately, many existing missions are not compatible with these changes, so you might see light leaking through walls (mainly with stencil shadows). Please report all such cases, we'll apply workaround on case by case basis (thread). * The "old" and "new" rendering backends are finally merged into one. It is as nice to program as the new backend, and as old-fashioned and reliable as the old backend. Single-pass shadow maps enabled by default and now respect noselfshadow. * Materials with polygonoffset now interact with lights. So static decals can have bumpmap and specular lighting. Note however: dynamic decals still don't interact with lights. * Revised parallelSky lights and marked shadowing parallel lights as deprecated (thread). * PNG image format now behaves equally to other supported formats. In particular, it is not required to explicitly specify its extension, and it can be referenced directly in GUI code. * Added functions min/max to material expressions, which can be useful for clamping. * Fixed minor culling bugs on animated entities and enabled entity scissors by default. * Reduced color banding for fog with some dithering at tonemapping stage. * Finally our C++ code can compress and decompress all texture formats we use, meaning that we no longer depend on occasionally buggy/slow vendor implementations. BUGS * Now both OGG and WAV sounds work the same way and stop playing while in main menu. * Fixed "gui::startSelect" as a feature that allows to choose player starting location in GUI briefing. * Fixed warnings in newspaper_bridgeport0X core readable GUI. ASSETS * Added automatic turrets, to be combined with security cameras (Thread). * Added more covered furniture models (6289). * Added wall models from Seeking Lady Leicester (6293). * New and fixed versions of atdm:lamp_electric_square_3_lit_unattached (6315). * Fixed UV map on Stove models (6312). * Fixed some issues with moor AI (6345).
    1 point
  16. Hello everyone, Bikerdude's made significant updates to this mission and it's now fully playable in 2.08. Available in the in-game downloader or Download here (v3.1)! We'll update the OP to reflect this. Thanks! “I usually welcome the shadows, a place of refuge for a master thief like me. However, there are dark places that even I fear. That place being the plague ward at the edge of town. Rumour has it that it was cursed by a pagan witch and its inhabitants died from an incurable plague..." Build Time: Update Build Time: Original version - 3-4 weeks. Updated version - 2 days  Credits: Flanders - Prebuilt maps and textures Readables – SirTaffsalot. FieldMedic - ghost begger (which I fixed and updated). Springheel - jack-o-lantern (gotta have them)  Thanks:- Special thanks to my beta testers: Flanders, SirTaffsAlot, nbhormore, Pranqster, RPGista, Thor, Xarg, Glyph Seeker, Amadeus, Garret42 & Bluerat.
    1 point
×
×
  • Create New...