Search the Community
Searched results for '/tags/forums/use' or tags 'forums/useq=/tags/forums/use&'.
-
Looks like we need one of these. Use this to post images or teasers of whatever you happen to be working on at the moment. Sharing feels good, and can inspire other people to keep working on their own maps. Use spoilers if appropriate!
-
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 still ongoing Windows 10 topic sparked my curiosity why people do not just switch to Linux. But users of other OSes are also allowed to vote.
-
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
- 5 replies
-
- 11
-
-
-
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 01.04.2026 ---- Updated to 2.14 and packed mission changes into dedicated pk4 files. Improved German translation and added several missing option lines. Added mission title to statistics screen and removed prefab changes. Swapped the in game menu objectives button with a quit game button. 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
-
-
They will definitely compile this remaster for 64bit CPUs and this will cut off compatibility with FMs that use custom OSM files which are basically 32bit DLL files and they can't be used with 64bit executable. This also happened to Quake 2 Remaster, it doesn't support old mods with custom DLLs and not only because of 64 and 32 bit incompatibility but also because the API was changed.
-
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/
-
Well, most devices had 64 bits since 2005, even if they used 32 bit soft for compatibility in these years. It's correct that you can run Windows on these, but the problem are not the sys specs (those of W11 are the same of eg, W7, the limit is imposed by M$, not tecnically, higher sys specs only due all the crap they added) which avoid that you can install it. But even if you want to run Windows on an old device, you can only install the current version to be usefull, run an outdated Windows without support is only advisable for an local use, going online with it is risky business. This is why it is better to use Linux, where you can use updated versions with the last security patches and current soft.
-
"When the leaves change and the air is still, there is a quiet." -Lady Blackbriar -=| DISPLACEMENT |=- BY AMADEUS & WELLINGTONCRAB = DOWNLOAD = <( | )> -REQUIRES TDM 2.14- -JOIN THE BETA NOW- "Seek not the prideful sin that is perfection The Builder's light shines through all flaws. It is His wisdom to recognize a thing is done Before it is ever truly finished." -St. Edgar's Sermon of Rust LAMPFIRE HILLS... They say the woods around here give the tourists bad dreams, but I don't mind. I like it here. I feel like a piece of me belongs here. ... That it fits. DISPLACEMENT is a medium-sized traditional manor mission with a highly variable playtime. *2.14 provides a number of improvements to gameplay, performance, and stability. It is strongly encouraged to play on the latest 2.14 beta release. Join in testing now!* *Mods such as the “Unofficial Patch” and “TDM Modpack” are not supported by this mission and should be used at your own risk* https://www.thiefguild.com/fanmissions/97429/displacement CREDITS: ADDITIONAL MUSIC: -AIRSHIP BALLET -GIGAGOOGA ADDITIONAL SCRIPTING: -DRAGOFER -OBSTORTTE -FROST SALAMANDER -KINGSAL ADDITIONAL ASSETS: -KINGSAL -TDASH -SKACKY -BIKERDUDE -GOLDWELL -EPIFIRE -STRUNK -SHANNEN ART -POLYHAVEN -TEXTURES.COM -SKETCHFAB CULTURAL HERITAGE CC0 COMMUNITY -LOISTE INTERACTIVE -COLINFIZGIG -CDMIR BETA TESTERS: -KINGSAL -GOLDWELL -MAT99 -FROST SALAMANDER -MIKE A -STGATILOV -STIFU -MARBLEMAN -DETEEFF -THEBIGH FURTHER ACKNOWLEDGMENTS: -STIFU FOR HIS EFFORT IN FIXING THE NOTORIOUS STUCK AI AND ARROW CRASH BUGS. -STGATILOV WHO MADE A NUMBER OF 2.14 OPTIMIZATIONS AND BUG FIXES. -KINGSAL FOR PROVIDING SOME OF THE MAIN MENU GUI ASSETS -PURAH FOR ORIGINATING THE SETTING OF LAMPFIRE HILLS, REIMAGINED HERE, IN HIS THIEF FMS. -GUY-ON THE COUCH AND JAM61 FOR THEIR SILENT HILL COMMUNITY MAPS WHICH HEAVILY INSPIRED THE LAMPFIRE HILLS REGION MAP. -SPECIAL THANKS TO LOISTE INTERACTIVE FOR ALLOWING US TO USE ASSETS FROM THEIR GAME "INFRA." SOME ADDIITONAL DETAILED LICENSING INFORMATION: SOME NOTES ON PERFORMANCE: NOTE TO MAPPERS: MOST OF THE NEW ASSETS IN THE MISSION ARE INCLUDED IN 2.14
- 491 replies
-
- 33
-
-
-
As my custom assets work has increasingly shifted from models towards scripting, I'll open a new thread here to contain any scripts that I write which can be reused in other missions, starting with the A ) Presence Lamp This is a Lost City-style lamp that brightens and dims depending on the presence of the player or an AI. It fades between 2 colours and can trigger its targets whenever it switches fully on or off, so it should also be viable in various other situations. The standard setup consists of the following: - a trigger_multiple brush. The spawnarg "anyTouch" controls whether AIs, too, are able to activate it - a presence lamp, highly recommended with a colorme skin - one presence light, or any other light with appropriate spawnargs The targeting chain is trigger brush -> lamp -> light When the player or an AI stands in the trigger_multiple brush, the lamp switches on and starts a short timer. Subsequent triggers reset the timer. If the timer runs out because no one's standing in the trigger brush anymore, the lamp switches itself off. Notes - Multiple trigger brushes can target the same lamp, and one trigger brush can target multiple lamps. However, each presence lamp can only target one light, so if you want i.e. a bouncelight you'll need to hide an additional silent presence lamp somewhere and target it from the same trigger brush. - The lamp and the light use their own colour spawnargs respectively, since setting 0 0 0 on a lamp would make it appear pitch black. - Technically the trigger brush can be exchanged for anything else that triggers the lamp every 0.5s (this number can be changed via "update_interval" on the lamp), i.e. a trigger_timer. - This was originally named the proximity lamp and was one of many scripting jobs for The Painter's Wife. I've renamed it to "presence lamp" because the mapper may place the trigger brush(es) wherever he wishes: proximity to the lamp is not a factor. Credits go to Bikerdude for putting together the crystal lamp models. Download Presence Lamps - Google Drive Place or extract the .pk4 into your FM archive, then look up the presence lamp prefabs. If you already are using other custom scripts, remember to add the presence lamp's .script to your tdm_custom_scripts file. B ) Teledoor This is a Skyrim-style door which opens just a bit into a black_matt "void" before teleporting the player to a different area of the map, which may represent the other side of the door. This is used for connecting physically separated map areas with each other, such as when there's an exterior/interior split of a building or ship to allow for more mapping freedom. [Full Thread] C ) Mass Teleport This is a teleportation setup designed to seamlessly teleport the player and any moveables between two identical-looking areas. This allows the mapper to link 2 physically distant areas with each other while maintaining the illusion that they're connected. The teleportation zones should be free of AIs as they can't be teleported like this without their patrols breaking. [Post] D ) Automaton Station A station for Sotha's automatons (includes the automatons) which can be switched on and off by patrolling automatons. (Part of core assets as of 2.10) [Post] E ) Camgoyle A sentient turret originally made for the FM Written in Stone. It's based on the new security camera entity and augmented with scripting to allow it to fire magical projectiles at the enemies it detects. People are more than welcome to use it and to convert it into something else, such as a mechanical turret. [Post] [Download] F ) Audiograph The audiograph is an Inventor's Guild device for playing back recordings stored on spindles, which are small metal cylinders the player can pick up and store in his inventory. [Post] G ) Turret A new companion to security cameras familiar to Thief players. It will become active as soon as an enemy is detected by a targeted security camera, firing projectiles to fend off the intruders. Similar to the security camera and the camgoyle sentry, turrets are highly customisable in their behaviour and appearance. [Thread] G ) Fog Fade Dynamically change fog density depending on what location the player is in. [Thread]
- 50 replies
-
- 10
-
-
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.
-
To add to that. In old graphic engines like id tech 4 specularity of a material is interacting solely with direct lights from lamp objects. If you want to make a proper mirror, you have to use a completely different technique that's not connected to specularity factor at all. This is of course not how real world works were there is no distinction between direct light coming from the sun or a lamp, and an indirect light bouncing off of a wall or other objects. All reflections as well as shadows are just photons bouncing around. On top of that, you can see that specular reflections in Darkmod have the same strength no matter what angle you look at - hence there's no fresnel effect.
-
also one gripe i had with all the 32 bit bashing was the buzzword that all current cpu's are 64 bit, no they are not and if you research it a bit you will see that i am right. they are 32 bit processors with a 64 bit register addition not the other way around. this came to be after AMD developed the x86_64 standard because of demand and forced intel to reevaluate the itanium. https://devicetests.com/difference-between-x86-64-amd64-64-bit and even they get it wrong... by pointing out that a 32 bit cpu cannot run 64 bit software when most cpu's today are indeed 32 bit with a 64 bit register . a 32 bit OS however cannot run 64 bit processes because the VM is not set up that way but it could be done. a real i686 or i386 cpu however cannot run 64 bit no matter what VM you have. It is all in the details x86_64 means its an x86 processor with a 64 bit register, if the reverse should be true someday it would have to be named something like x64_86. the only real (intel standard compatible) 64 bit cpu is the itanium which as you might guess can only run 64 bit software (vm's do not matter in that regard). i tried it many years back and it ran quite ok. the real gripe was that most software at the time was 32 bit so it was hell to get any work going on it. even worse the software had to be built for the itanium model... steam and wine for one just had a recent fallout with ubuntu because they wanted to scrap 32 bit multilibs completely. steam is 32 bit and they do not have any current plans for porting the client to 64 bit, wine also got hissy because it would mean most of they're userbase would dissapear as many use it for both older games as well as older but better tools than what is currently on offer. so ubuntu relented but it is only a matter of time before it becomes a hard target as the push to put the older arch's in the grave is massive.
-
LINUX SECTION: it was not really a microsoft comment, the linux world was pretty much first out to ditch 32 bit so even though you can still build something as 32 bit and make sure that your code has the best performance for that arch all dependencies like libc (bare minimum) will still not have been developed with 32 bit in mind making a good deal of what said developer does moot. its a bit like trying to fit a ferrari engine inside a beetle, it wont work to well or not at all. sure if you are adamant in bringing back the glory days of 32 bit you could go ahead and start optimizing dependencies for 32 bit (which for one person would take a lifetime or two in a worst case scenario) so it is not going to happen. even worse for 16 bit code or older which not many compilers today can handle (djgpp and open watcom are pretty much the only still developed ones with that capability and only the open watcom compiler even runs on a 64 bit OS). MICROSOFT SECTION: microsoft for all they're bad decisions have in most regards tried to keep compatibility with older software without going the way of using full fledged virtual machines. this was not like many belive to appease gamers but to keep the big companies locked in as many of them used in house tools developed ages ago which would be hard if not impossible to replace. with windows 11 that stance has changed though and most of the old cruft has been neutered or outright removed. for an example see ntvdmx64 which was a project that aimed to allow users to use the old dos mode and 16 bit vdm on 64 bit. it is now largely defunct due to them removing a boatload of old 16 bit compatibility code. you can still get it to work but instead of one VM you now need two. one is for DOS (ntvdmx64) the other is for 16 bit (WineVdm). and both require you to turn off a good chunk of the new security features because neither are compatible with core isolation etc.
-
Depends of which one of the hundreds of distros you use. Less because performance, but there are even distros with which you can respawn an old Pentium, no possibility with any valid Windows. Eg.Tiny Core Linux is the smallest functional Linux available. The headless "Core" edition is around 11 MB and runs in 64 MB of RAM, loading entirely into memory at boot.
-
Do you use underwater fog? https://wiki.thedarkmod.com/index.php?title=Swimmable_Water#Underwater_Fog
-
Complaint From Players The player must pick up candles before extinguishing them, and then the player must remember to drop the candle. The player must drag a body before shouldering it (picking it up), and the player must remember to frob again to stop dragging the body. The player finds this annoying or easy to make mistakes. For players who ghost, some of them have the goal of returning objects back to their original positions. With the current "pick up, use item, and drop" system, the item might not return easily or at all to its original position. For example, a candlestick might bounce off its holder. (See player quotes at the bottom.) Bug Tracker https://bugs.thedarkmod.com/view.php?id=6316 Problems to Solve How can the "pick up" step be eliminated so that the player can directly use or interact with the item where it is in the game world? How can so much key pressing and mouse clicking be eliminated when the player wants to directly use an item? How can candles be extinguished and lanterns toggled off/on without first picking them up? How can bodies be shouldered without first dragging them? Solution Design Goals Make TDM easier for new players while also improving it for longtime players. Reduce tedious steps for common frob interactions. Make it intuitive so that menu settings are unnecessary. Do not introduce bugs or break the game. Terms frob -- the frob button action happens instantly. hold frob -- the frob button is held for 200ms before the action happens. (This can be changed via cvar: 200ms by default.) Proposed Solution Note: Some issues have been struckthrough to show changes since the patch has been updated. Change how frobbing works for bodies, candles, and lanterns. For bodies: Frob to shoulder (pick up) a body. Second frob to drop shouldered body, while allowing frob on doors, switches, etc. Hold frob (key down) to start drag, continue to hold frob (key down) to drag body, and then release frob (key up) to stop dragging body. Also, a body can be dragged immediately by holding frob and moving the mouse. For candles/lanterns: Frob to extinguish candles and toggle off/on lanterns. Hold frob to pick it up, and then frob again to drop. Frob to pick it up, and then frob again to drop. Hold frob to extinguish candles and toggle off/on lanterns. For food: Frob to pick it up, and then frob again to drop. Hold frob to eat food. For other items: No change. New cvar "tdm_frobhold_delay", default:"200" The frob hold delay (in ms) before drag or extinguish. Set to 0 for TDM v2.11 (and prior) behavior. Solution Benefits Bodies: New players will have less to learn to get started moving knocked out guards. With TDM v2.11 and earlier, some players have played several missions before realizing that they could shoulder a body instead of dragging it long distances. Frob to shoulder body matches Thief, so longtime Thief players will find it familiar. Second frob drops a shouldered body. Players still have the ability to both shoulder and drag bodies. Compatible with the new auto-search bodies feature. Dragging feels more natural -- just grab, hold, and drop with a single button press. There is no longer the need to press the button twice. Also, it's no longer possible to walk away from a body while unintentionally dragging it. Set "tdm_frobhold_delay" cvar to delay of 0 to restore TDM v2.11 (and prior) behavior. Candles: New players will have less to learn to get started extinguishing candles. With TDM v2.11 and earlier, some players didn't know they could extinguish candles by picking them up and using them. Instead, they resorted to throwing them to extinguish them or hiding them. Hold frob to extinguish a candle feels like "pinching" it out. Once a candle is picked up, players still have the ability to manipulate and use them the same way they are used to in TDM v2.11 and earlier. For players who ghost and have the goal of putting objects back to their original positions, they'll have an easier time and not have to deal with candles popping off their holders when trying to place them back carefully. Set "tdm_frobhold_delay" cvar to delay of 0 to restore TDM v2.11 (and prior) behavior. Solution Issues Bodies: Frob does not drop a shouldered body, so that might be unexpected for new players. This is also different than Thief where a second frob will drop a body. "Use Inv. Item" or "Drop Inv. Item" drops the body. This is the same as TDM v2.11 and earlier. This is the price to pay for being able to frob (open/close) doors while shouldering a body. Patch was updated to drop body on second frob, while allowing frob on doors, switches, etc. Candles: Picking up a candle or lantern requires a slight delay, because the player must hold the frob button. The player might unintentionally extinguish a candle while moving it if they hold down frob. The player will need to learn that holding frob will extinguish the candle. The player can change the delay period via the "tdm_frobhold_delay" cvar. Also, when the cvar is set to a delay of 0, the behavior matches TDM v2.11 and earlier, meaning the player would have to first "Frob/Interact" to pick up the candle and then press "Use Inv. Item" to extinguish it. Some players might unintentionally extinguish a candle when they are trying to move it or pick it up. They need to make sure to hold frob to initiate moving the candle. When a candle is unlit, it will highlight but do nothing on frob. That might confuse players. However, the player will likely learn after extinguishing several candles that an unlit candle still highlights. It makes sense that an already-extinguished candle cannot be extinguished on frob. The official "Training Mission" might need to have its instructions updated to correctly guide the player through candle manipulation training. Updating the training mission to include the hold frob to extinguish would probably be helpful. Similar Solutions In Fallout 4, frob uses an item and long-press frob picks it up. Goldwell's mission, "Accountant 2: New In Town", has candles that extinguish on frob without the need of picking them up first. Snatcher's TDM Modpack includes a "Blow / Ignite" item that allows the player to blow out candles Wesp5's Unofficial Patch provides a way to directly extinguish movable candles by frobbing. Demonstration Videos Note: The last two videos don't quite demonstrate the latest patch anymore. But the gist is the same. This feature proposal is best experienced in game, but some demonstration videos are better than nothing. The following videos show either a clear improvement or that the player is not slowed down with the change in controls. For example, "long-press" sounds long, but it really isn't. Video: Body Shouldering and Dragging The purpose of this video is to show that frob to shoulder a body is fast and long-press frob to drag a body is fast enough and accurate. Video: Long-Press Frob to Pick Up Candle The purpose of this video is to show how the long-press frob to pick up a candle isn't really much slower than regular frob. Video: Frob to Extinguish The purpose of this video -- if a bit contrived -- is to show the efficiency and precision of this proposed feature. The task in the video was for the player to as quickly and accurately as possible extinguish candles and put them back in their original positions. On the left, TDM v2.11 is shown. The player has to highlight each candle, press "Frob/Interact" to pick up, press "Use Inv. Item" to extinguish, make sure the candle is back in place, and finally press "Frob/Interact" to drop the candle. The result shows mistakes and candles getting misplaced. On the right, the proposed feature is shown. The player frobs to extinguish the candles. The result shows no mistakes and candles are kept in their original positions. Special Thanks @Wellingtoncrab was instrumental in improving this feature during its early stages. We had many discussions covering varying scenarios, pros, and cons, and how it would affect the gameplay and player experience. Originally, I had a completely different solution that added a special "use modifier" keybinding. He suggested the frob to use and long-press frob to pick up mechanics. I coded it up, gave it a try, and found it to be too good. Without his feedback and patience, this feature wouldn't be as good as it is. Thank you, @Wellingtoncrab! And, of note, @Wellingtoncrab hasn't been able to try it in game yet, because I'm using Linux and can't compile a Windows build for him. So, if this feature isn't good, that's my fault. Code Patch I'll post the code patch in another post below this one so that folks who compile TDM themselves can give this proposal a try in game. And, if you do, I look forward to your feedback! Player Complaints TTLG (2023-01-10) Player 1: TDM Forums (2021-03-13) Player 2: Player 3: TDM Forums (2023-06-17) Player 4: TDM Discord (2021-05-18) Player 5: TDM Discord (2023-02-14) Player 6: Player 7: Player 8:
- 340 replies
-
- 13
-
-
-
NTC should be used on everything next-gen, but it's up to the developers. You can use the old way of compressing textures alongside NTC in the same game, for example if there's some artifacts you're trying to avoid on a specific texture. Sony may also have a feature on its servers allowing the console to download only the set of textures/assets it needs. For example, a lower quality texture pack for the PS6 handheld vs. the PS6 console. NTC will work on RDNA2, Nvidia itself tested it, but it may be slow. And if you turned it off but the developer went big with it, maybe 24 GB VRAM fills up. I'm just speculating, we need to see some real world use to figure it out, and that will mostly be years from now.
-
The reason for most private windows user changing is mostly because windows eroded user trust by constantly changing UI removing usefull features while plastering the OS with advertising backdoors and incessant spying. pair that with most of their tools changing to a service model which means microsoft can shut you down without notice and it becomes aparant why other countries want to get rid of it. you as a private person can still use microsoft if you fancy that but in any official capacity it is dead in the EU. we do not want our systems to rely on software from a country that acts hostile to us. as for linux forcing companies into providing drivers, they dont. about 95% of drivers are in house (reverse engineered) based on specs (but they sometimes fail due to abstractions). a few companies have opensourced they're drivers which helps immensly but for most you have to rely on the makers to provide linux compatible drivers (nvidia for one) and they can have some rather annoying bugs which can only be fixed by those corporations themself. linux does however provide a universal driver for most nvidia cards which actually works ok most of the time despite it being in house. AMD has been more open towards the linux scene especially in light of emerging consoles like the steam machine it kinda made sense for them since pretty much all consoles use AMD developed gfx cards today. but in the end it is up to you
-
-Not enough first-party application support on Linux - The Lack of Driver support - To much different Distros, not always compatible one with another - Install soft out of the repository is often a mess I use Windows, not because it's better, it isn't, but it was installed by default and worked out of the box. So I preferred to gut it to my like, deleting all the AI crap, services which nobody need, telemetries and bloatware it had, having a fast and stable OS which does what I want and not M$. If something works, there is no reason to change it. I used Linux in the past (Kubuntu) in Dual boot, but for me it didn't offer an advantage enough to substitute an working OS. Linux is maybe an alternative for those with an very old PC with few RAM, but in a modern PC not so (my Windows 11 use ~700 MB RAM out of 16GB, not a difference with a modern distro, eg Mint).
-
in many cases it is actually better to buy some quality usb powered external speakers like creatives pebble as they deliver far better sound than the ones onboard on pretty much any laptop. they have one drawback though and that is the lack of any subwoofer connections, and since they are so small you might miss the deep end of the spectrum (can use fxsound to boost bass but take heed of distortion as that indicates that you are driving them to hard). if you want something that really shines then the AudioEngine A2+ is one of the best. sadly it is also pretty expensive... these speakers can use bluetooth for a wireless connection which might appeal to some. if you dont have the dough then fxsound can smoothen out the rough edges most built ins have. can also still use it with the better externals for environment effects or to alleviate age induced hearing deficiencies or boost bass.
-
I've been writing a screenplay over the last few months and could use some smart reads before I take it further. "Erasure" — Civil War period drama, Shenandoah Valley, winter 1864-65. Three Confederate women shelter a Black stranger named Elias; their husbands return from Mosby's command at the end. About 64 pages. Restrained period prose. Has an unusual element late in the runtime that I'd most value people's read on. https://e.pcloud.link/publink/show?code=XZ94qiZHE2hjDl8iCRI24ixDlfcehrikpxV If you read any of it, I'd value the read. Most useful: did it hold you, and if you finished, what do you think happens at the end. If you stop somewhere, telling me where is also useful data. No obligation. Whatever you give back is appreciated.
-
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.
-
So I just read in a post about the black parade over at ttlg that someone was using a custom script to create a little challenge. You can only save your game for every 200 loot you gather. As many missions struggle to give loot a valuable sense of existence because it is only used as a mission goal (while not being part of a campaign where it would carry over), I personally found this a really good and refreshing idea. So, would this be possible in the dark mod too, either as a customizable game option or as a custom script j in a fan mission ? What are your thoughts on this idea in general ?