Search the Community
Searched results for '/tags/forums/mouse bindings' or tags 'forums/mouse bindingsq=/tags/forums/mouse bindings&'.
-
Hello and thanks for checking out this post. I'm delighted to announce that version 1.1 of my fan mission "Cole Hurst 1: Eaton" is now available to download and play. This post is spoiler free, so please don't avoid digging into the details below if you are interested. I'm just using the spoiler tags to organize this post a bit. Let me start by saying "thank you" to anyone who has either previously played - or is considering playing this mission. It really means a lot to me. I have been away for a while, but following a round of beta testing that took place some time last year, I've only just recently managed to finish this update. I'm slightly embarrassed by how long it has taken me to complete, but I wanted to make sure that the valuable feedback I received was all properly addressed. Mission description "Tonight, Eaton's wealthiest citizens will gather at Lord Mayor Zelmer's estate to celebrate the city's founding. Nobles, dignitaries, a famed musician, and even the Queen will pass through its gates. While the guests celebrate Eaton's future, Cole Hurst is looking for a way out." For those new to and/or curious about this mission: I guess I would describe it as a traditional heist-style mission - although with a couple of major plot twist along the way. It's a very large map and I think it should take most players at least a few hours to complete. Screenshots Changes in version 1.1 Countless additions and a large amount of smaller tweaks and changes have all made it into this release. I may have already forgot a few things, but here are what I consider to be the main highlights: * New secrets & optional side quests * Story tweaks and reworked readables * Subtitles * Difficulty tweaks and related changes * Stability fixes * Various cosmetic changes * Audio tweaks * TDM version 2.13 now required Contributions and acknowledgments A special thanks to all of those listed below. I'm sincerely grateful for all your contributions! Mission testers and technical support @nbohr1more, @stgatilov, @duzenko, @Acolytesix, @Dragofer, @JackFarmer, @Shadow, @Cambridge Spy, @wesp5, @madtaffer, @prjames, @suzy8track, @datiswous, @boissiere and @Bergante Story Kelly Hrupa Voice actors twhalen2600 (AKA @Benny_the_guard) and Kelly Hrupa
- 7 replies
-
- 11
-
-
-
Doom3/TDM GUIs use a 640x480 coordinate system and assume that the player uses a 4:3 resolution, otherwise they'll look stretched. Most TDM GUIs assume that they will be stretched to 16:9, i.e. pixels aren't square (which makes writing GUIs pretty painful, I guess) and when using a non-16:9-resolution things look stretched. TDM added the forcescreenaspect window variable that will prevent a windowDef from being stretched when used with hcenter that can be used to have something undistorted on the center of the screen, but it's still pretty limited (and barely used) - and as far as I can tell child-windowDefs of that will still be stretched. Anyway, CstDoom3 2.0 introduced Anchored GUIs which allow anchoring windowDefs to a corner or center of the screen and prevents them (and everything contained in them) from being stretched. Those anchored windowDefs are mostly limited to 640x480 virtual pixels (scaled to screensize, as much as possible while keeping the aspect ratio), so regardless of the window's resolution, they will remain unstretched (well, except for those anchor cases that explicitly stretch in one direction, like anchoring just to the top instead of top center or top left or whatever). This allows for example to anchor the weapon_display windowdef to the lower left corner of the screen, the lightgem to the lower center of the screen and the current item to the lower right corner of the screen. No matter how wide or tall the window is, they will remain there, unstretched. I think these screenshots illustrate it pretty well: For dhewm3 1.5.5 I ported them to dhewm3 and greatly improved them, for example they can now also be used for regular (interactive) menus, while in CstDoom3 they only worked with noninteractive fullscreen GUIs like the HUD (mouse positions weren't calculated correctly). This feature is documented in detail at https://github.com/dhewm/dhewm3/blob/master/docs/GUIs.md#aspect-ratio-independent-guis-covering-the-whole-screen-with-cstdoom3s-anchors Now I ported that to The Dark Mod, with just two little changes: There is no scaling of menus to 4:3 with letterboxing, so the window variable scaleto43 is not needed or even supported Most of TDM's GUIs assume that they'll be stretched to 16:9, even though using the 640x480 4:3 coordinate system. To accommodate this, I added the cstAssumes16_9 window variable. cstAssumes16_9 1 will cause the anchored windowDef, that would normally have a 4:3 aspect ratio, to be stretched by factor 1.333 (in width), just like it would when stretching to a 16:9 resolution. So when porting existing GUIs to this system, you don't have to recalculate the coordinates - if they were meant to be stretched, add a "cstAssumes16_9 1" line to the windowDef (and "cstAnchor CST_ANCHOR_BOTTOM_LEFT" line or similar, of course) and it should work in most cases. By the way, this is completely backwards-compatible, so if your .gui doesn't use cstAnchor, it will continue to work just like before. At https://github.com/DanielGibson/thedarkmod-mirror/pull/1 you can find a testbuild for Windows with this enabled, some ported GUIs, more information and the code changes. Currently this is an experimental patch, I don't know when or if it will be merged to the official TDM source. Please check it out and play around with this feature and let me know how you like it and if you run into problems! I've ported most of the HUD, but there's still a lot of GUIs that would benefit from being ported, like the inventory menu, the main menu and more. TBH those seem pretty complex so I'd appreciate help from someone who's familiar with their code
-
The TDM Unofficial Patch is a personal project of mine to modify some small details that annoyed me in the core game. It wouldn't be possible without many others, so thanks to the whole TDM community for discussions and help, but especially to friendly modders who directly contributed code for it, like Obsttorte, Dragofer, Kingsal, Goldwell, Destined, and snatcher! You can find it under the link below and while over the years there was little progress, in recent times many things have been improved that I never even thought of when I started and some might be worth to be included in the core game. https://www.moddb.com/mods/the-dark-mod/addons/the-dark-mod-unofficial-patch Version Changelog: ------------------ v2.4 16.06.2026 ---- Updated to 2.14 and packed mission changes into dedicated pk4 files. Added missing main menu music for Lucy's Quest, thanks to snatcher. Improved German translation and added several hard-set option lines. Swapped the in game menu objectives button with a quit game button. Added mission title to statistics screen and removed prefab changes. Made compass always stay visible behind the lightgem once obtained. Fixed frobing items animation for all items that was lost in update. v2.3 26.02.2026 ---- Updated to 2.13 and restored many mission names because of new list. Made reading newspapers look less bright and improved training map. Added any 10 minutes auto save game feature, thanks to chumbucket91. Removed invisibility potion as this is a part of the core game now. Added sortable inventory, thanks Snatcher, datiswous and nbohr1more. Removed numbers for non stackable inventory items, thanks Snatcher. Followed requests to restore map that shows Bridgeport is in France. Fixed bad text for flint in shop menu and added a shop flint image. Removed more ko alert immunities and NPC reaction to electric mines. Made keys droppable by default to make perfect ghosting achievable. Fixed reversed door handle in Vengeance for a Thief Part 1 missions. Removed Blow and Whistle for differentiation to Snatcher's Modpack. Added compass name, made it less bright and all tools not droppable. v2.2 23.12.2024 ---- Readded Whistle tool because font issues were fixed, thanks to Geep. Fixed possible problem with item taking animation, thanks Snatcher. Modified internals so the patch can be used with Snatcher's Modpack. Included fragile bottles which break on impact, thanks to Snatcher. Fixed bug with the William Steele 3 mission and invisibility potion. Renamed some new and updated missions for the alphabetical sorting. Reduced mission list font size and removed stripes, thanks Snatcher. v2.1 03.05.2024 ---- Increased torch glare by using new particles, thanks to nbohr1more. Packed non mission files into pk4 archive and updated mission names. Changed several subtitles that imply death if target is knocked out. Removed Whistle and Peek Door to make distinction to modpack clear. Unified frob distance of keys and other entities to the default one. Fixed inventory grid title color, position and cropped loot numbers. Updated final mission statistics, rogues and moors to work in 2.12. v2.0 04.03.2024 ---- Added names being shown on frobing bodies or items, thanks Snatcher. Resorted mission list including "A" and "The" in alphabetical order. Updated to version 2.12 and removed several fixes that are included. Moved helper options from the gameplay page to the difficulty page. v1.9 29.07.2023 ---- Removed statistics button from mission statistics, thanks Datiswous. Arranged mission statistics into groups and commented stealth score. Added blinking to frob highlight of loot and items, thanks Snatcher. Fixed cut off final_save name by hexediting the main TDM executable. Made the default frob outline black, thanks Snatcher and nbohr1more. Fixed inventory overlay when wearing magic glasses, thanks Snatcher. v1.8 13.04.2023 ---- Added peek through door keyhole skill, thanks Snatcher and Dragofer. Improved handling of lit lights that start unlit, thanks nbohr1more. Restored original holy water usage as a backup, thanks to Snatcher. Updated patch for TDM 2.11 and restored option to show frob helper. Changed some defs and script to make "Seeking Lady Leicester" work. Made mantling while carrying somebody possible, thanks to Snatcher. Corrected container bottom fix for jewelery boxes, thanks Snatcher. v1.7 20.08.2022 ---- Made loot icon change right back to last tool icon, thanks snatcher. Added new whistle player skill to distract NPCs, thanks to snatcher. Made more lights extinguishable and added info for 4 beta missions. Corrected container bottom fix messing up drawers, thanks Dragofer. Improved unlit behaviour of moveable light sources, thanks snatcher. Corrected lit lamps set to extinguished in maps, thanks to Dragofer. Changed western empire maps so the location of Bridgeport is vague. Added several major city names to the small map, thanks to Kukutoo. Fixed frobing animation not working with bound and carried entities. v1.6 23.07.2022 ---- Improved extinguishing oil lamps, thanks to Dragofer and Obsttorte. Added frobing animation, thanks to Obsttorte, Goldwell and snatcher. Fixed container bottoms and training mission chest, thanks Dragofer. Made doors open faster when running, thanks Obsttorte and snatcher. Added more player tools to training mission and improved text there. Fixed Holy Water doing no damage and Hazard Pay not starting at all. Made all five oil lamps in Sotha's "The Bakery Job" extinguishable. Added blow player skill to snuff out small flames, thanks snatcher. Changed Unarmed icon to make clear that the player always has a bow. v1.5 02.07.2022 ---- Created Invisibility Potion out of cut Speed Potion, thanks Kingsal. Increased arrow head shot damage to both living and undead enemies. Replaced slow matches with easier to handle flints, thanks Kingsal. v1.4 10.03.2022 ---- Replaced Frob Helper with dark Frob Outline and updated to TDM 2.10. Made electric mine stun elite guards too and improved mission names. Renamed mission installation/selection UI mishmash to "activation". v1.3 21.02.2021 ---- Changed flashmine to stunning electric mine and updated to TDM 2.09. Edited more mission names and made threefold candles extinguishable. v1.2 26.08.2020 ---- Updated to TDM 2.08 and fixed custom holywater script compatibility. Added Numbers Scroll showing stealth and loot info, thanks Dragofer. Edited more mission names to avoid truncated descriptions in menus. Added default keys info to training mission and repaired cut lines. v1.1 03.02.2019 ---- Moveable candles can be extinguished directly by frobing the candle. More blackjack immune enemies and inextinguishable candles modified. The key frob distance has been decreased to be that of lockpicking. Holy Water bottles must be thrown directly, but they do more damage. The controls settings menu additions have been updated for TDM 2.07. New mission names have been fixed to fix format and spacing issues. Added looking up and looking down controls for people without mouse. Pointed bad prefabs container open/close sounds to existing effects. Added version info to starting screen and edited some new missions. v1.0 06.05.2018 ---- Many enemies will not become immune to blackjacking when alerted. Oil lamps can be snuffed by frobing, thanks Destined and Obsttorte. The controls settings menu lists that "use" can work on held items. Mission names were syncronized between download and online lists. The controls settings menu lists that "frob" can get or drop items. Astericks were added to official missions to move them to list top. Minor text and format bugs have been fixed in some mission infos.
- 102 replies
-
- 10
-
-
For the people eager to play with the latest state of development, two things are provided: regular dev builds source code SVN repository Development builds are created once per a few weeks from the current trunk. They can be obtained via tdm_installer. Just run the installer, check "Get Custom Version" on the first page, then select proper version in "dev" folder on the second page. Name of any dev version looks like devXXXXX-YYYY, where XXXXX and YYYY are SVN revision numbers from which the build was created. The topmost version in the list is usually the most recent one. Note: unless otherwise specified, savegames are incompatible between any two versions of TDM! Programmers can obtain source code from SVN repository. Trunk can be checked out from here: https://svn.thedarkmod.com/publicsvn/darkmod_src/trunk/ SVN root is: https://svn.thedarkmod.com/publicsvn/darkmod_src Build instructions are provided inside repository. Note that while you can build executable from the SVN repository, TDM installation of compatible version is required to run it. Official TDM releases are compatible with source code archives provided on the website, and also with corresponding release tags in SVN. A dev build is compatible with SVN trunk of revision YYYY, where YYYY is the second number in its version (as described above). If you only want to experiment with the latest trunk, using the latest dev build gives you the maximum chance of success. P.S. Needless to say, all of this comes with no support. Although we would be glad if you catch and report bugs before the next beta phase starts
- 15 replies
-
- 15
-
-
-
There's now an editable fan mission list on the wiki, for the sake of tracking missions made for The Dark Mod. Please read and follow the guidelines, and help keep the list up to date! Direct link, but also accessible from the wiki title page: http://wiki.thedarkmod.com/index.php?title=Fan_Missions_for_The_Dark_Mod Discussion of changes (format, policies, entries, etc.) can take place in this thread. --------------------------------------- There is also now a wiki page to track upcoming fan missions: http://wiki.thedarkmod.com/index.php?title=Upcoming_Fan_Missions Submissions, progress, and any discussion for missions under construction can take place here: http://forums.thedarkmod.com/topic/11639-upcoming-fan-missions/
-
I frankly would have been p***ed off if they would have changed the level geometry in the Tomb Raider remasters. Especially considering the controls and movements were made with fixed units in mind. They had a hard time implementing the modern controls because of that. There are some things which are not possible with the modern controls. I'm a bit split regarding the Thief Gold remaster though. I don't really think it is as necessary as the Tomb Raider remasters, for example. TFix works fine. For Tomb Raider, the fact alone that you are not restricted to 30 FPS like in the original games was a huge advantage of the remasters, not to talk about the graphical improvements, widescreen support, and a lot of bug fixes. You pretty much have that with Thief Gold and TFix already. In the Steam forums, they mentioned the advantage of having new people getting into Thief, but, I don't think it will be that many.
-
TDM for Android DIII4a support topic
OnlyTaffingCowardsHide replied to freyk's topic in TDM Tech Support
Yeah it's a really cool proof of concept, but it would be neat if it worked with modern Android pads like Gamesir products which I believe use xinput. Having the binds be the same as the default TDM gamepad bindings would be great. Also when I try to grab an object in game like the crates for stacking in the mission "a new job" it spazzez out and disables all camera movement, making it impossible to move the box -
My issue was that when starting the computer, the first log in screen would be a 60hz, and on OLED that causes horrendous flicker due to PWM voltage control. Input latency also gets high on lower refresh rates (>60 ms on some monitors), so moving the mouse around on the log in screen felt awful. Even my non gamer wife immediately noticed how not nice the log in screen was compared to the Windows 11 log in. Once I logged in, and the monitor switched modes to 240 or 360 or 540 hz, I could log out and it would be at the high refresh. So I did some research first and all the guides for kubuntu/ubuntu basically said the same thing, modify SDDM and apply plasma settings to the SDDM. This did NOT work for refresh rate on first boot. So I did more research and edited some files, still didn't work. So I asked the question on the forums. 90% was Apply Plasma Settings... in the SDDM section, and the other 10% were, you don't need that, that's not important, you're dumb for asking this question.
-
Preface HUD-elements are often a technical necessity, to convey important information to the player that would otherwise not be available to them. A problem with such HUD-elements is that they don't belong to the virtual world. They make it painfully clear to the player that they are just playing a game, thereby reducing immersion. There are many genres, where you need to have such information available at all times, think fast-paced first person shooters, Mobas, or strategy games. However, especially for genres featuring free exploration, that information is simply not needed at all times. Some games (e.g. Dead Space or Metro series) have gone to extreme lengths to completely eliminate HUD elements by integrating all relevant information in the virtual world. While this is of course the most immersive approach, it is also the hardest to implement. A much easier solution is to rely on a dynamic HUD, where certain HUD elements are displayed depending on context. In recent years, I have become hyper focused on immersion. I can't stand a cluttered HUD ("sensory overload") or a map full of quest pointers ("feels like work"). I want to immerse myself in the world, not tick of pointers on a map. About a year ago, having played a ton of WoW in my youth, I played the alliance fraction on WoW Classic for the first time. Via interface addons, I had my UI completely disappear during exploration, but when I entered combat or clicked on an enemy, the UI would become visible. The minimap would generally only become visible during mouse-over. The same goes for non-combat-relevant action-bars. I paired that with a text-to-voice addon for the quest texts and some nice dynamic camera addons that would zoom in on characters when talking to them. Of course I also did not use any quest-GPS addons, so that I actually had to pay attention and search the world for the quests. It was super immersive and a glorious experience reminiscent of the 2004 release. So naturally, having played a lot of TDM recently, I am thinking about how we could improve our dynamic HUD in TDM for immersion-seekers. Current State of Dynamic HUD in TDM The HUD of TDM already has quite some dynamic elements Healthbar only shows if we are not at 100% health Breathbar only shows if we are not at 100% breath Weapon only shows if a weapon is selected and ammo text only shows if ammo is relevant to that weapon Inventory-Icon and -text only shows if an item is selected Pickup- and object-update texts are only displayed momentarily Ideas for More Dynamic HUD Elements in TDM So basically, with every HUD element, we should ask ourselves the following questions: Added information: Does this HUD element actually convey any information? Relevant when: In what situation is that information relevant? Let's start! (Please note that all proposals below shall be made optional under some "tdm_dynamic_hud"-cvar or something like that, so I am not planning to take anything away from anyone) I will update this list of ideas as we go. Weapon HUD Blackjack and Sword Added information: None. The player can see the 3d model of both weapons, so the HUD does not add any information. Relevant when: Never Proposal: Remove completely --> Very easy (already tested) Bow and arrows Added information: Arrow type and amount. Sadly, the 3d model does not show the type of arrow unless the bow is drawn. So, the icon and weapon text add information. Also, there is the ammo display. Relevant when: Player is equipping the bow Proposal: Investigate if we can alter the non-drawn bow model such that it already shows the arrow type. If that works nicely, remove arrowtype and arrow icon from HUD and potentially move the ammo display around and make it bigger. I would need support from a 3d modeler here! Proposal: Consider showing the arrow amount only briefly when the weapon is selected (and/or when the player presses "R"?) (and/or ammo amount changes) and then fade it out again. Healthbar Added information: Health Relevant when: Player is losing health. Player is likely going to loose health, e.g., when in combat or when breath bar is close to zero. Player is preparing to enter combat. Player has very low health Proposal: Briefly show after losing health; Show when equipping a weapon (possibly limit to sword?); show when breath is close to running out; show when health is below some threshold (like 20%) Breathbar: Already very dynamic. No action needed! Inventory HUD (Not the inventory grid) Compass Added information: direction Relevant when: When player equips it. Must not fade-out unless a different item is selected. Other items: Added information: Selected item Relevant when: Only during selection (or when player forgot which item is selected) or when the item can be used with the world Note: I had added the tdm_frob_item_selects_item to prevent items being selected when picking them up, thereby eliminating the respective HUD annoyance. However, I found that frequently, I wanted to use the picked up item right away (a readable, a key, etc.), so this approach is not working well. Proposal: Briefly show after selecting an item, then fade-out. Show item when it can be used on a world entity. For picking up items, consider selecting, but not showing them, so player can use them right away without HUD pop-in. When HUD is not shown, pressing next or prev item should not go to next / prev item, but just show the HUD element. Are there maybe other types of inventory items that need special treatment? Shouldering HUD Added information: Shouldering state Relevant when: Always when shouldering a body Proposal: It would be awesome if we could actually have the 3d model shouldered in view. Then we could get rid of the HUD, but of course, this would be very hard to achieve. Lightgem Added information: To some degree, visibility of player Relevant when: sneaking about or running to hide (so basically always) Discussion: It is actually debatable, how much information is really added, because the player can already tell how well illuminated they are just by looking at the environment. I would say minimalists simply disable the lightgem and all others keep it on all the time. Crouch-intent indicator Added information: Crouch-intent, i.e., while it is impossible to change crouched-state, the crouch-state that will be assumed once crouched-state is unlocked again. Current crouch state can be seen by looking at the 3d world. No indicator needed for that. Relevant when: Only while crouched-state is locked / cannot be changed. Proposal: Only show when crouched-state and crouch-intent differ? Any other UI elements I forgot? Another aspect of dynamic HUDs is HOW visibility is controlled. HUD elements might pop-in instantly or gradually fade in and out, like our FrobHelper. I would say, having HUD elements fade in and out looks generally more appealing, but I would need some advice on how to best control transparency. Should transparency be handled by the GUI scripting or dictated by the engine like in the case of the FrobHelper? What makes most sense here?
-
Welcome to the Snatcher's Workshop. Come on in, we may have something for you today. Feel free to look around. We trade everything here. --------------------------------------------------------------------------- We realize new ideas and take existing ideas for a spin. For fun. Somewhere in this post you will find a download with mods. Good care was put to make all mods as little intrusive as possible to make them compatible with as many missions as possible. This set of mods will never break your game but some features won't be available in a handful of missions (the reasons are known). Feel free to report here what works and what doesn't. TDM Modpack 5.1 Compatible with The Dark Mod 2.13 or later (2.14 or later recommended) A lightweight, stable, non-intrusive, mission-friendly Modpack for The Dark Mod that includes many enhancements and a new set of tools and abilities for our protagonist: peek through doors, blow and ignite candles, whistle to distract enemies, mark your location, an invisibility-speed combo and more. Mods included in the pack do not alter your game or any of the missions in any relevant way. The pack includes enhancements to the core game and additions that can be used in missions but at the same time respects the vision of the mission creators. It is up to you to make use of any of the new tools and abilities or not. Please note that sometimes authors include in their missions their own versions of core files and as a result, some mods are not available in some missions. All missions will play fine regardless. Release posts: v5 series: v5.0 | v5.1 v4 series: v4.0 | v4.2 | v4.5 | v4.6 v3 series: v3.0 | v3.2 | v3.3 | v3.4 | v3.5 | v3.6 | v3.8 v2 series: v2.0 | v2.2 | v2.4 | v2.5 | v2.6 | v2.7 | v2.8 v1 series: v1.0 | v1.2 | v1.4 | v1.6 | v1.8 What's included in the pack? -:- APP: GENERIC MOD ENABLER -:- Credits: JoneSoft License: Free for unlimited time for Home users and non-profit organizations. Description: A portable, freely distributable Mod enabler/disabler. This application is required to run mods safely and it is included in the pack. At the heart of the Modpack resides JSGME (JoneSoft Generic Mod Enabler), an application that allows players to enable and disable mods with one click. JSGME has been around for more than a decade and it is to be fully trusted. Refer to the install instructions section at the bottom for full details. -:- MOD: CORE ESSENTIALS -:- A pack that includes a variety of mods from the best modders of TDM: ~ FAST DOORS Credits: Idea and programming by Obsttorte. Treatment by snatcher. Availability: All missions except Noble Affairs, Seeking Lady Leicester, Shadows of Northdale ACT II, Snowed Inn, The Imperial Sword, Volta 3: Gemcutter and a handful of lesser missions. Description: Being chased? In a rush? No problem: doors open and close faster when running. Topic: Slam doors open while running ~ QUIET DOORS Credits: An idea by SeriousToni (Sneak & Destroy mission). Mod by snatcher. Availability: All missions except Noble Affairs, Seeking Lady Leicester, Shadows of Northdale ACT II, Snowed Inn, The Imperial Sword, Volta 3: Gemcutter and a handful of lesser missions. Description: A vast number of doors play more subtle, sneaky sounds for a quieter, stealthier experience. This applies to doors that come with default sounds but only when manipulated by the player. Topic: Decrease volume of open/close door sounds triggered by player ~ LOOT ANIMATIONS Credits: Original idea by Goldwell (Noble Affairs mission). Programming by Obsttorte. Treatment by snatcher and wesp5. Availability: All missions except You Only Fly Thrice and a bunch of missions that come with their own implementation (tdm_frobactions.script). Description: Moves the loot towards the player before putting it in the inventory, underlining the impression of actually taking it. This mod comes with a subtle new loot sound that goes along nicely with the animation. ~ DYNAMIC INVENTORY Credits: snatcher. Availability: All missions. Description: When picking up loot this mod displays the loot info in the inventory and shortly after reverts back to the last non-loot item selected. The mod in addition, remembers the last item selected when shouldering and unshouldering a body. ~ SMART CONTAINERS Credits: Obsttorte (source code updates), Dragofer (similar attempts), snatcher. Availability: All missions. Description: To facilitate looting, the bottom of many containers (chests, jewellery boxes, etc...) gets automatically disabled at the beginning of the mission and only the lid remains frobable. ~ STEALTH MONITOR Credits: kcghost, Dragofer, snatcher. Availability: All missions. Description: Display some stats (Suspicions / Searches / Sightings) and the Stealth Score during a mission. Just bring up the "Loot" inventory icon and press "Use" (or setup a dedicated key). ~ STEALTH ALERT Credits: snatcher. Availability: All missions. Description: Completing a mission without being seen is something that can be done with some practice and patience. This mod will play an alerting chime whenever you are seen so that you don't have to monitor the Stealth stats all the time. ~ BLINKING ITEMS Credits: snatcher. Availability: All missions. Requisites: Console command r_newFrob must be 0, which is the game default. Description: Items within frob distance that go into the inventory (plus static readables) emit a subtle blink. This pulse can help you identify some valuable items that otherwise are difficult to detect. Topic: New Frob Shader ~ SMART OBJECTS Credits: snatcher, Dragofer. Availability: All missions. Description: Display actor and object names whenever you grab an entity with a name. In addition, objects (except AI entities) do not make or propagate sounds on impact while being manipulated. Topics: No impact sounds while holding an object / Nameless objects... a missed opportunity ~ ALT FOOTSTEPS Credits: SeriousToni. Availability: All missions except Hazard Pay, Noble Affairs, Shadows of Northdale ACT I and ACT II, Snowed Inn, Volta 2: Cauldron and a handful of lesser missions. Description: Alternative sounds of walk/run/land footsteps on water and landing sounds on squeaky wood for our protagonist. Topic: New Footstep sounds ~ MISCELLANEOUS Alternative high mantle sound for our protagonist. Removed two anticlimactic player dying sounds Revamped and extended "Mission Complete" audio theme. Standardization of frob distances for some doors. Decreased brightness of the Objectives, the Inventory and stock newspapers. Player weapons are a tad visually visible in the dark (to player only) -:- MOD: PLAYER SKILLS -:- A new "Skills" category is added to the inventory on mission load and the category includes the below abilities: ~ SKILL: PEEK Credits: Dragofer, snatcher, wesp5 Availability: All missions. Description: When the item is selected the player can peek through any regular door. Select the item in the inventory and "Use" it on a door. Topic: Peek through (almost) every door ~ SKILL: BLOW / IGNITE Credits: Dragofer, wesp5, Obsttorte, snatcher. Availability: All missions. Description: When the item is selected the player can blow out and light up candles and oil lamps. Select the item in the inventory and "Use" it on small flame sources. Topic: Extinguish small lights with a blow ~ SKILL: WHISTLE Credits: snatcher. Availability: All missions. Description: When the item is selected the player can whistle and draw the attention of nearby AI. The more you whistle, the more attention it draws. Select the item in the inventory and just "Use" it. Keep a safe distance. ~ SKILL: ALCHEMY Credits: OrbWeaver, MirceaKitsune, datiswous, wesp5, snatcher. Availability: All missions. Description: When the item is selected the player can alter the properties of broadhead arrows by applying different reagents. Select the item in the inventory and "Use" it repeatedly to cycle through the different arrow types. Topic: Alchemy to alter arrow properties? Arrow types: Shadow arrow compound or "Darkdust": Widely believed to be a myth, little to nothing is known about anti-light matter. Where did our protagonist get his formula from? When this substance is subject to strain the particles implode and the residual component absorbs light until it dissipates completely. Flare arrow compound or "Starlight": A recipe based on luminescent mushrooms and other exotic herbs. The resulting powder produces, for limited time, a dim but steady blue-ish glow when mixed with the right reactive. A high concentration of the active mixture can cause a burning sensation to the eyes. ~ SKILL: LOOP Credits: snatcher. Availability: All missions. Description: When the item is selected the player can teleport between two points. You can activate the loop any time and use it to quickly travel back to a safe location, to explore two different areas in parallel or to ambush AI. If the loop fails keep trying, you should be able to get to your destination eventually. If your path forward is blocked you can break the loop by pressing the "use" key for 10 seconds, just make sure you are on the correct side of the loop... ~ SKILL: PENUMBRA Credits: VanishedOne (speed potion), kingsal (invisibility potion), snatcher (alchemy). Availability: All missions. Description: When the item is selected the player can avoid light sources and run faster than usual for limited time. Health consumed will gradually be restored. Penumbra doesn't muffle the noise you make and it doesn't work when in contact with water. THE PATH TO UMBRA: How to become one with the shadows Did you know? You can set key bindings for the skills by clicking on the Modpack banner in the Main screen: -:- MOD: ADVANCED BOW -:- Credits: snatcher. Availability: Most missions (a few missions do things differently but you should never notice). Description: Nock and draw arrows at a faster rate. Extended radius of gas arrow effect. Chance to retrieve rope arrows when missing a shot. -:- MOD: CLASSIC BLACKJACK -:- Credits: Obsttorte, snatcher. Availability: All missions except A House of Locked Secrets. Description: A straightforward approach to blackjacking with new rules and mechanics inspired by the original Thief games. Never miss a KO again! - No indicator required. "Classic Blackjack" rules: Some AI are KO-immune and cannot be KOed: * Undead, creatures... * Guards wearing heavy helmets (to respect TDM vision) * Other: set by mission authors for the plot, in example The rest of AI can be KOed, just aim for the head: * Civilians: Can always be knocked out from any direction * Combatants: Can always be knocked out (including when fleeing) from any direction except when in high alert state (normally in combat mode) As reference, you can find in the Wiki the set of rules of the non-modded TDM: https://wiki.thedarkmod.com/index.php?title=The_Dark_Mod_Gameplay#Blackjacking -:- MOD: FLASH GRENADE -:- Credits: snatcher, kingsal. Availability: All missions except Displacement, Hazard Pay and Moongate Ruckus. Description: Flashbombs are clumsy and loud but as effective as ever. Instead of throwing Flashbombs like a cannonball we now toss them. Instead of exploding on impact Flashbombs now have a fuse. The chances of blinding have been greatly increased. -:- MOD: FRAGILE BOTTLES -:- Credits: Idea by MirceaKitsune, snatcher. Availability: All missions except Displacement (custom bottles but no custom broken fragments) and few items in A Reputation to Uphold and Shadows of Northdale ACT I & ACT II. Description: No stealth game is complete without some good bottle smashing! There are hundreds and hundreds of bottles in our mission catalogue: head to your nearest tavern or kitchen, grab a bottle and throw it to distract AI, extinguish fires... -:- MOD: HEALING BOOST -:- Credits: snatcher. Availability: Most missions (a few missions do things differently but you should never notice). Description: Food and Health Potions provide an extra recovery boost. Here is a table with the new health points (player max health is 100): 24 -> 50: Health potion 06 -> 20: Cheese Wheel 06 -> 10: Fish Mackerel 03 -> 10: Bluefish 03 -> 10: Bread 03 -> 10: Cake 03 -> 10: Cheese Wedge 03 -> 05: Muffin 01 -> 05: Apple 01 -> 05: Pear 01 -> 05: Carrot 01 -> 05: Turnip -:- MOD: INVENTORY PANELS -:- Credits: snatcher. Availability: All missions. Description: More compact. Items can be sorted. Adjust ambient volume, brightness, gamma and saturation directly from the Inventory grid. -:- MOD: LIGHT STONES -:- Credits: Idea by Zerg Rush, snatcher. Availability: All missions. Requisites: Lightgem enabled in Gameplay > General settings. Description: Splits the Light Gem into smaller stones with unique light detection levels. -:- MOD: PREMIUM LANTERN -:- Credits: snatcher. Availability: All missions except Flakebridge Monastery, Hazard pay, Moongate Ruckus, Snowed Inn, Vota 1, 2 & 3. Description: The mod replaces the light of the player lantern with a less intense, forward facing version. In addition, the lantern icon is always displayed when the lantern is on. Also, on and off sounds have been added. -:- MOD: RING HELPER -:- Credits: snatcher. Availability: All missions but the ring is dimmer when using the x-ray glasses or other overlays. Requisites: Frob Helper enabled in Gameplay > General settings. Description: The mod replaces the white dot pointer (Frob Helper) with an advanced ring-shaped aimer. The main difference is that the helper is now available for all objects you can interact with, large or small. Topic: Frob Helper discussion Options in Gameplay > General > Show Frob Helper: Always: Pointer and Ring Hover: Instant Ring Fade In: Ring delayed by one second Fade In Fast: Ring delayed by half second No: Off -:- MOD: SHADOW MARK -:- Credits: snatcher, Obsttorte. Availability: All missions. Description: Our protagonist's lucky deck! When the item is selected the player can drop and throw playing cards to mark a location. Cards can be retrieved. AI will not normally mind a single card lying around but cards can sometimes be noticed. Topic: Find more details in this post -:- MOD: SHOCK MINE -:- Credits: wesp5, snatcher. Availability: All missions. Description: This mod replaces the Flashmines with portable contraptions originally intended to store energy that have been altered to deliver a non-lethal electric shock to those who step on them. Remember: mines can be disarmed with the lockpicks! -:- MOD: SIMPLE SUBTITLES -:- Credits: Geep, stgatilov, snatcher. Availability: All missions. Description: A minimalist, imperfect approach to subtitles (you can set the scope of the subs in the audio settings). Topics: Subtitles - Possibilities Beyond 2.11 / English Subtitles for AI Barks Go to the audio settings and set the scope you prefer: Story: Story only On: Story and general speech (Give it a try!) Off: Disable subtitles Features of the mod: Background replaced with a font outline. Audio source widget replaced with a text transparency based on distance (volume) to the source. Yellow font color for story subs for best contrast, light grey font color for anything else. Non-story subs limited to a single instance, so that players aren't bothered too much with non-relevant subs (barks). --------------------------------------------------------------------------- DOWNLOADS / INSTALL / UNINSTALL So, how do I install and play with all this? Quite easy, but pay attention. I don't want you to break your game so we will be using a "Mod Enabler". A Mod Enabler allows you to enable and disable mods at will, with a few clicks. Before moving forward you must know a couple of things: The moment you enable a mod, previous saves will not work. If you want to load previous saves then you will have to disable the mod. If you play a mission with mods, the saves will only work when that exact set of mods are enabled. This above is important in case you deem your current saves precious. Consider yourself informed. DOWNLOADS You can download the TDM Modpack from Mod DB: INSTALL INSTRUCTIONS Download the zip, unzip it, and move contents to your TDM root folder: Folder "MODS" File "JSGME.exe" Go to your TDM root folder and double click on JSGME.exe (yellow icon). The first time you launch JSGME, it will ask for the "Mods Folder Name". Leave "MODS" and click OK. Now to your left you will find a list of mods available. To your right you will find a list of mods currently enabled. To enable a mod, select a mod on the left, and click on the arrow pointing to the right. To disable a mod, select a mod on the right, and click on the arrow pointing to the left. Go and enable the mods you want: UNINSTALL INSTRUCTIONS Quit the game (to unblock files) Go to your TDM root folder and double click on JSGME.ese (yellow icon) Disable all mods found on the right Close JSGME Delete the following: Folder "MODS" File "JSGME.exe" File "JSGME.ini" --------------------------------------------------------------------------- I hope you enjoy the mods. No coin? then leave a like for pirate's sake!
-
nice but ugh, the dev needs to smooth out his mouse control for the love of god..
-
Before I nuke the DR appdata files, can I ask if anyone else had the mouse freezing in DR..?
-
at one time there were literal hundreds we had a thriving community dedicated to work on the idtech 1 through 3 engines creating some rather unique ones along the way. these days only a few survived, but they are also pretty good. quakespasm is multiplatform but otherwise faithfull to the old look. behind the scenes the engine was updated immensly though with mouse driven menus, shader based rendering, and 64 bit support. darkplaces was a complete rewrite of the source code by lord havoc and one of the most advanced. sports bumpmapping, pbr, rtlights, glsl shaders, client side qc effects, shadowmaps, and quite a lot more. then theres engines like fteqw which is a multi quake engine that can play quake 1 2 3 and hexen 2. supports the same features as darkplaces but focusses more on online play and deathmatches but can also play singleplayer. has a built in feature for downloading mods like TDM does. QMB: was a port that originally was most known for its advanced particle system and neural network based bot matches. it has luma textures, colored lighting, high quality video capture, and cell shading. joequake was based of the original code but rewritten quite a bit. sports independent server client physics, ghost mode recording, browseable demos maps mods etc, a better mouse driven menu, high quality video capture, colored lighting, and supports most mods out there. list is pretty long so ill stop before it gets embarrasing but they all support HD textures as well and some of them can even use quake 3 models in quake 1 as well as skeletal models for some of them like fteqw and darkplaces.
-
Finally done with my vertical contest entry... Swing You'll get your sea legs ... or die trying ... Thanks to my beta testers: SiyahParsomen Diego Baddcog ---------------------- README: SWING a Dark Mod mission, by Komag for the Vertical Contest held summer 2010 find me on TheDarkMod.com forums, or via ShadowDarkKeep.com This mission is a "platformer" with slight puzzle elements (figuring out where to go next and how to get there). Be prepared to do a lot of falling, dying, and quickloading! Quicksave anytime you are sure-footed, about take a risk Getting off the swing for any reason is not recommended! And try not to get sick ;-) Have FUN!!! Komag - Ben Ramsey -------------------------- BRIEFING: The King's steward has seen you in action aboard His Majesty's Ship Vertigo, and he is pleased with your potential. You are hereby granted an opportunity to prove your quality by successfully navigating the King's Royal Navy training swing. You need only retrieve the high crown (a replica of course) from the top of the swing, and return it to the docking area. As a bonus, see how many of the ten hidden bottles you can find - the more you come back with the more impressed your superiors will be, and that can only be a good thing as you know." ------------------------ Known Issues: - It's possible to stop the motion of some of the moving things, and even the entire swing itself, if you mess with things enough ENJOY!!! http://www.shadowdarkkeep.com/missions/Swing_v1.2.pk4
-
Ah, sorry. Let me copy the content here... All - Recall that the Carleton 24pt font is widely used throughout the main menu. In some cases, a particular text string is indicated as selected (or being moused-over), by showing each character in white with a red background "glow", offset to the right (and often below). I'm wrapping up a revision cycle for Carleton 24pt, and now have to deal with the corresponding carleton_glow bitmaps. It would save me considerable time if I could just use a dup of (revised) carleton 24pt itself to do this, instead of creating custom bitmaps and DAT files. Using a dup for carleton_glow would simply rely on existing GUI offsets to show a red drop-shadow. That is how the /russian/ version of carleton 24pt implements red glow. Visual Examples We'll start with existing TDM 2.14, looking at the main menu's Settings/Video/Language page. (You can run TDM to see this comparison live.) Two screen shot snippets are shown, from page top and (with mouse-over) bottom. Here's English, which uses custom bitmaps with "blurred/feathered" glow: Then here's the same page after Russian is selected as the language and TDM restarted: There's not a lot of difference. The white part of English is a little crisper, but may be attributable to... English carleton 24pt has 512x512 bitmaps, while Russian has the traditional 256x256. English carleton 24pt glyphs have edge-darkenting (i.e., thin black border), which was not done for Russian. Thus, I think the difference is not due to the different red glow treatments. The English glow has hints of red to the left of some characters, and more feathered red glow in character interiors, e.g., within the arms of the E, or extending further down from the top stroke of G. But it also shows some artifacting, where the feathering would like to extend further but is cut off by the character's bounding box. See the lower right corner of D and O in "Video", where the red is somewhat squared off due to this clipping. Now here are similar shots from an experimental FM with my revised carleton 24pt font, and also using the revised DAT and DDS files dup'd for carteton_glow: As with 2.14 carleton, the revised carleton retains glyph edge-darkening for definition. This edge-darkening didn't seem to hurt anything when carleton bitmaps was dup'd to carleton_glow. So, I'm proposing to use this "dup" approach, using red drop shadows, going forward. This would save me a bunch of time and effort (which I can expand on if necessary), and simplify the system. Thoughts?
-
got an old phillips 52 " tv that works pretty well with linux as well (60 hz 1080p only) allmost 2 decades old now . has all the connections a tv enthusiast could drool over like s-video composite scart hdmi and vga . i dont use it anymore though as my LG 58 " 4k tv works fine with solus (may be because it can only handle 4k in 60hz ?). as for aholes on forums, i had my fair share just like trolls they seem to pop up from time to time and i found the most effective way of handling them is just to ignore them (dont feed trolls!). otherwise ping the site admin if they are doing they're job a warning about decorum can usually put them right but otherwise a ban might be needed. permanent if nessesary.
-
This pinned thread's purpose is to collect links to all the discussion threads for new features to be added in 2.14: https://forums.thedarkmod.com/index.php?/topic/23080-214-new-and-updated-assets/ https://forums.thedarkmod.com/index.php?/topic/23072-214-mirrors-and-remotes-resolution-and-optimizations/ https://forums.thedarkmod.com/index.php?/topic/23070-214-tdm-version-macros-and-x-ray-breaking-change/ https://forums.thedarkmod.com/index.php?/topic/23071-214-in-game-screenshot-as-menu-background/ https://forums.thedarkmod.com/index.php?/topic/23073-214-interactible-projected-decals/ https://forums.thedarkmod.com/index.php?/topic/23074-214-new-smoke-generation-system/ https://forums.thedarkmod.com/index.php?/topic/23088-214-beta-ko-non-elite-ai-after-flash/ https://forums.thedarkmod.com/index.php?/topic/22736-font-localization/page/2/#findComment-503417 As well as older Feature Collection Threads: [2.13] Feature Discussion Threads [2.12] Feature discussion threads [2.11] Feature discussion threads [2.10] Feature discussion threads
-
- 6
-
-
-
Welcome! I hope you'll like it, or at least find it better than Windows. I have never received that answer myself, but I have seen it in various forums, not necessary associated with Linux. It is such a dumb and unproductive respone. Either it can be done or it can't. The purpose is not a factor. One silver lining though: it teaches us what kind of answers we don't want to provide ourselves when someone asks us a question.
-
I'm on Linux now (Kubuntu 26.04 / kernel 7+) Still haven't changed my opinion on the help forums, there is STILL a lot of assholes gatekeeping / new user bashing. My favourite is "Linux is super power user friendly and you can do pretty much anything that you want!" Cool, how can I do this? "Why do you need that? You don't need that! Just leave it the way it is!"
-
Greetings everyone! I recently got into TDM and am already having a lot of fun playing through and ghosting missions. However, coming from Thief, I am mostly relying on the rules and my experience with that game, while there are clearly differences in how TDM works. Right now, there is talk in the ghosting discussion thread on TTLG to amend the ruleset and include clarifications pertaining to TDM. So I wanted to drop by and ask: is there an active TDM ghosting community already and have any rules for this playstyle been developed? I would also like to ask someone to take a look at the draft of this addendum to see whether everything looks correct: https://www.ttlg.com/forums/showthread.php?t=148487&page=16&p=2473352&viewfull=1#post2473352 Thanks!
-
The community patch packs have some gameplay and graphics mods. Thief Mods and Utilities https://www.ttlg.com/forums/forumdisplay.php?f=174 TFix https://www.ttlg.com/forums/showthread.php?t=134733 T2Fix https://github.com/Xanfre/T2Fix There are a few mods here for Thief and System Shock 2. Keyring Ghost Mode Minion Summoner Fairy Light Radar https://github.com/saracoth/newdark-mods Upscaled textures and paintings https://www.moddb.com/mods/thief-gold-esrgan-pack https://www.moddb.com/mods/thief-ii-esrgan-pack
-
Mandrasola is a small sized map in which aspiring thief Thomas Porter steals some herbal products from a smuggler. The mission was created by me, Sotha and I wish to thank Bikerdude, BrokenArts and Ocn for playtesting and voice acting. Thanks goes naturally to everyone contributing and making TDM possible. This mission occurs chronologically before the Knighton's Manor, making it the first mission in the Thomas Porter series. Events in chronological order are: Mandrasola, The Knighton's Manor, The Beleaguered Fence, The Glenham Tower and The Transaction. The winter came early and suddenly this year. Weeks of strong blizzards and extremely harsh cold weather hit Bridgeport hard. With the seas completely frozen, a rare occurence indeed, most of the City harbor commerce has stopped completely. Vessels are stuck in the ice and no ship can leave or enter the City, resulting in the availability imported goods declining and their prices skyrocketing. One of these imported items is Mandrasola, a rare herbal product, which is imported overseas from the far southern continents. Mandrasola has its uses in alchemical cures and poisons, but mostly this substance is used for its narcotic qualities by commoners and even the nobility. The problem with Mandrasola is that excessive use is extremely addicting and the withdrawal effects are most grievious. Many are utterly incapable of stopping using Mandrasola and are transformed into quivering human ruins if they do no get their daily dose. And now this expensive and rare substance is running out from the whole City. Me and my fence, Lark Butternose, would love to grab this monopoly to ourselves: selling the last few doses in the City would probably be worth a fortune. According to Lark's sources, there remains only one smuggling lord who still has Mandrasola in stock. The problem is that this individual maintains an exclusive clandestine operation and only supplies a few nobles. Despite our best information gathering efforts we couldn't learn who the smuggler is and where he or she operates. Luckily we have an alternate plan. While searching for Mandrasola related information, we learned that a noblewoman called Lady Ludmilla is addicted to the substance and has paid high prices for small amounts of it. We also know that she has visited frequently someone in the Tanner's Ward waterfront, and since she goes to the area personally we believe she is visiting the smuggler. The plan is simple: I must monitor Ludmilla's most likely entryway to the Waterfront and then follow her to the smugglers hideout. I'd better be very careful around Ludmilla. She must not realise I'm following her or she probably won't lead me to her dealer. Hurting her is also out of the question. After she leads me to the smuggler's hideout, I can take my time to break in carefully and steal all the Mandrasola I can find. While I'm there it wouldn't be a bad idea to grab some loose valuables as well. I've now waited in the blistering cold for a few hours already. Looks like there are a few city watch patrols in the area to complicate matters... I think I heard a womans voice beyond the north gate. That must be lady Ludmilla, I haven't seen many ladies in these parts. I'd better get ready.. Links: Use the ingame downloader to get it. WARNING! Someone always fails to use spoiler tags. I do not recommend reading any further until you've played the mission.
-
============== -= IRIS =- ============== WELLINGTONCRAB TDM v 2.11 REQ Ver. 1.3 *For Maureen* -=- "Carry the light of the Builder, Brother. Unto its end." -Valediction of the Devoted "What year is this? Am I dreaming?" -Plea of the Thief Dear Iris, I am old and broken. When we were young it felt like the words came easily. Now I find the ink has long dried on the pen and I'm as wanting for words as coin in my purse. I can tell we are nearing the end of the tale; time enough for one more job before the curtain call... ============== -Installation- Requires minimum version of TDM 2.11 **Dev build dev17056-10800 (2.13) fixes several visual effects which have been broken in the mission since the release of 2.11. For that reason playing with that version or later is currently recommended** -Iris does not support mods or the Unofficial Patch- Download and place the following .pk4 into you FMs directory: Iris Download ============== Beta Russian Language Translations by @kalinovka Mirror #1: yandex.ru Mirror #2: Google Drive ============== *Thank you for playing. Iris is a large mission which can either take as quickly or as long as you are compelled to play. I hope someone out there enjoys it and this initial release is not completely busted - I tried the best I could!* *Iris both is and isn't what it seems. If commenting please use spoiler tags where appropriate. If you are not certain if it would be appropriate a good assumption would be to use a spoiler tag* *Support TDM by rating missions on Thief Guild: https://www.thiefguild.com/* ============== WITH LASTING GRATITUDE: OBSTORTTE - Whose gameplay scripts from his thread laid the foundation which made the mission seem like something I could even pull off at all. Also fantastic tutorial videos! DRAGOFER - Who built upon that foundation and made it shine even brighter! And whom also provided immeasurable quantities of help and encouragement the past couple years on the TDM discord. ORBWEAVER & GIGAGOOGA - For generously offering their ambient music up for use. EPIFIRE - Who lent me his fine trash and trash receptacle models. AMADEUS - Who was the first person who wasn't me to play the damn thing and provided his excellent editorial services to improving the readers experience playing TESTERS AND TROUBLESHOOTERS: AMADEUS * DATISWOUS * SPOOKS * ALUMINUMHASTE * JAXA * JACKFARMER * WESP5 * ATE0ATE * MADTAFFER * STGATILOV * DRAGOFER * KINGSAL * KLATREMUS - What can I possibly say? Playing this thing over and over again could not have been easy. Deepest thanks and all apologies. -=THANKS TO ALL ON THE TDM DISCORD AND FORUM=- ==SEE README.TXT FOR ADDITIONAL ATTRIBUTIONS & INFORMATION== HONORABLE MENTION: GOLDWELL - If I hadn't by chance stumbled into Northdale back in 2018/2019 I would probably still be trying to get this thing to work in TDS, which means it probably would not exist - though more details on that in readme. ============== Boring Technical Information: *Iris is a performance intensive mission and I recommend a GTX 1060 or equivalent. I find the performance similar to other demanding TDM missions on my machine, but mileage may vary and my apologies if this prevents anyone from enjoying the mission.* *Iris heavily modifies the behavior of AI in the game, how they relate/respond to each other and the player. So they may act even stranger than they do typically in TDM. Feedback on this is useful - as it can potentially be improved and expanded upon in future patches.* -=- This is my first release and it has been a long time coming! If I forgot anything please let me know! God Speed. 2.10 Features Used:
- 441 replies
-
- 24
-
-
-
I'm replaying the original DeusEx (vRSD) and accidentally discovered an useful feature in its input system, which I realized I should suggest for TDM as it can be helpful. DX has a modifier called Strafe: While this key is pressed and held, the mouse no longer turns the view but instead moves the player like the WASD or arrow keys based on the mouse speed. If others find this useful I'll post the idea to the bug tracker. If you go to Settings - Controls - General there is a setting called Free Look; If disabled the camera pitch is forced to 0 and up / down mouse movement is used for walking. I see two issues with this: First it's partial and for one axis, you still use the X axis of the mouse to turn and only the Y axis to walk back and forth, if you want to use the mouse for movement its X axis should be left / right to strafe while the Y axis should be forward / backward walking. The second issue is there's no keybind to toggle this mode on the go, one should exist with a toggle option based on whether you want to hold the key or press it to turn this on and off. As a bonus, while the key is held or toggled, movement keys should control the camera instead so the modifier fully reverses the purpose of the mouse and WASD / arrow keys. I think offering better control over the mouse movement system could be useful for sneaking and peaking behind cover. More than 90% of TDM players likely use keyboard & mouse instead of a controller with thumb sticks: With WASD movement you rely on the Sneak key to move slowly and avoid making noise. When hiding behind an obstacle, you could aim the camera in a desired direction then hold a key to move with the mouse, which would allow a more controlled movement speed based on how much noise you're willing to risk making.
-
In the file DarkmodPadbinds.cfg (https://wiki.thedarkmod.com/index.php?title=Bindings_and_User_Settings): 1) bindPadButton LONG_PRESS PAD_B "_mantle" is listed and does what it says. bindPadButton LONG_PRESS PAD_A appears to do "jump-mantle". Standing in front of a box and doing jump will differ from doing "jump-mantle". Why is "jump-mantle" not listed in the file? (And how come it works without being listed in the file?) 2) bindPadButton MODIFIER PAD_L2 appears to bind a modifier functionality to the "button name" PAD_L2. If a user wants to find out the "button name" of other buttons on their gamepad (e.g. buttons which are not currently listed in the file), what would be a good way to do that? 3) Will TDM be able to recognize unusual "button names" (i.e. be able to capture any "button name" or will button names have to be implemented in the code before it works)?