Jump to content
The Dark Mod Forums

Search the Community

Searched results for '/tags/forums/mods/' or tags 'forums/mods/q=/tags/forums/mods/&'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General Discussion
    • News & Announcements
    • The Dark Mod
    • Fan Missions
    • Off-Topic
  • Feedback and Support
    • TDM Tech Support
    • DarkRadiant Feedback and Development
    • I want to Help
  • Editing and Design
    • TDM Editors Guild
    • Art Assets
    • Music & SFX

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

  1. There is a whole mess of graphics mods for Doom 3 you could peek at. Sikkmod for example is not based off BFG and has a depth of field effect when reloading weapons which sounds like basically what you are looking for and I doubt it requires engine level changes to work: At a minimum you could download one of these mods and given doom3 stuff is typically all text formats in .pk4s there might be enough there you can just read to figure out how it works. As far as it’s potential inclusion in the game I have no real opinion - though given it would likely be optional I don’t see it hurting anything either.
  2. Creating a new thread for this as it was being discussed in an old beta-testing thread starting here: https://forums.thedarkmod.com/index.php?/topic/21822-beta-testing-high-expectations/&do=findComment&comment=490751 I suppose the main questions are: when should this spawnarg be used, if at all? why was it introduced in the first place? Can we get it documented properly on the Wiki so misuse isn't propagated? @stgatilov @Dragofer
  3. As probably no one will dare to suggest it if i don't, i do it: Cyberpunk 2077 with Realistic Combat Overhaul (i also use 230+ other mods, but i might be a mod hoarder and you definitely can have a good stealth shooter experience with less than 30 mods) Obviously, that game isn't pure. You probably can ghost your way through a lot of the missions. But if you actually want to play nonleathal, you better play something else. Where it shines, is the world building and gameplay. You get a shit ton of exploration, a pretty diverse set of side missions some with exceptionally good story writing. And you can play most of it as a stealth game. While it is immersive, it isn't really a sim though. You can't use the environment in unexpected ways apart from some verticality (and even more verticality with mods). So yeah, it is more like Deus Ex if it where open world (world opens up after first main quest). But stealth was meant to be a viable option in the base game and with mods it actually is. P.S.: Also the two Styx games - they actually are hardcore stealth. And Arx Fatalis (ugly but aged better than thief).
  4. I'd like to chip in and say I think basing the script name on the archive/file name is not a good idea. Filenames are extrinsic to the mod and something you have no direct control over. Someone may unwittingly change the filename and wonder why the mod stops working. You'd be better off having a fixed script name for all mods which is, I think, what dragofer says is being considered.
  5. I've updated this mission to be compatible with user mods. @nbohr1moreSorry to bother you again, but would you mind updated the pk4 for this mission? It should work fine now. https://www.dropbox.com/s/taqqvw5li22tkrb/hazard.pk4?dl=0
  6. Hello! Tracking down information on software and plug-ins that work with D3 / TDM can be a tough. So I have created a thread here where people can post what software/ plug-ins/ tutorials or other references they've had success or failure with in TDM. 3DS MAX 2013 64bit .ase - Default .ASE model exporter works. However you have to open the .ase file in text edit and manual change the *BITMAP line on each material to read something like: "//base/textures/common/collision" which allows the engine to read the correct material path. md5.mesh / animation - Beserker's md5 exporter/importers for 3dsmax. http://www.katsbits.com/tools, Importing and exporting works. The model must be textured, UV'd, with a skin modifier attached to the bones to export. PM me (Kingsal) for help with this. Imported models using the script will not be weighted appropriately, so this is not recommended if you are simply trying to edit existing tdm content. (Use blender instead) MAYA 2011 32bit md5.mesh - So far I've not had any luck with Maya 2011. I am using Greebo's MayaImportx86 for Maya 2011. I've got the importer working however I get a "Unexpected Internal Failure(kFailure)" and the import fails. This could be due to something finicky in Maya that I am not doing correctly. Will keep trying.. Blender 2.7 about - Blender is commonly used and pretty well supported on the forums/ wiki. Various versions may work as well - https://www.blender.org/download/ md5.mesh / animation Blender MD5 importer/exporter (io_scene_md5.zip): https://sourceforge.net/projects/blenderbitsbobs/files/ Sotha's guide Blender Male/ Female rigs by Arcturus - Here Edit by Dragofer: more links found in this post.
  7. @kingsal Thanks for the interest. In Hazard Pay you included "script/tdm_user_addons.script" to load @Dragofer's Stealth Statistic Tool and that prevents players from using this file to load additional add-ons. script/tdm_user_addons.script #include "script/tdm_statistic_message.script" void user_addon_init() { statistic_message_init(); } "script/tdm_user_addons.script" comes with a useful "user_addon_init()" that gets called automatically but unfortunately we don't have an equivalent in "script/tdm_custom_scripts.script" so we cannot use "script/tdm_custom_scripts.script" and we must think something else. Unless it is decided to do without the add-on, I propose we make use the map's own script "maps/hazard_night.script" since it comes with a "main()" that gets called by the game automatically, as explained in the Wiki: #include "script/tdm_statistic_message.script" void main() { statistic_message_init(); // rest of your code } Once we do this we can safely delete "script/tdm_user_addons.script". In addition to all this I suggest deleting "script/tdm_frobactions.script" since it is not doing anything other than preventing other mods from working. ----------------------------------------------- Summing up: Replace "maps/hazard_night.script" with the one attached to this post (*). Delete "script/tdm_user_addons.script" Delete "script/tdm_frobactions.script" (*) For this exercise I downloaded a fresh copy of Hazard Pay from the built-in downloader. Happy to discuss further. hazard.zip
  8. Snatched sorry for the dumb question, but you're testing this on a fresh virgin TDM right? No mods installed?
  9. Looking at the code, the originals were "pm_mantle_pull 750" and "pm_mantle_pullFast 450". The new "pm_mantle_pull" value is "400". A "pm_mantle_pullFast" value of "450" would be slower than regular pull, not faster. With both being set to "400", they are at least similar. Other than that, it's subjective and the feedback from playtesters was positive. Also, referenced internally here: https://forums.thedarkmod.com/index.php?/topic/22256-movementcontrols-settings-in-main-menu/&do=findComment&comment=489158
  10. That sort of tone doesn't fly in our forums.
  11. Your Electric Shock Mines have been on my radar for long time. One of your best mods, @wesp5 !
  12. I would use this massive list for any fan missions, it includes campaigns too: https://www.ttlg.com/forums/showthread.php?t=148090 There are a lot of Fan Missions for the picking, I myself go for the lesser known ones and the short variety, because sometimes they hide a gem or two. Just like jaxa, I'm a bit outdated after the temporal retirement, but I do remember some amazing campaigns like "The Black Frog". If you intend to play The Black Frog, you should play the first two of the L'Arsene series missions, it's how I did it myself. Also, yes, L'Arsene are a fantastic series. The first mission of L'Arsene is a "rough draft", author was a bit new to Thief level making, but still great either way, after the 3rd you will see how his skill increased by a massive amount.
  13. Years ago, to try and do a little Moddb participation project, I wrote a little blog piece about my take on the whole Doom 3 mod scene. At the time, I was roughly trying to parse out the factions within that community and my general feelings towards both the original game and the mods affect on it. Results, pretty much an awkward Myspace post about Doom 3: http://www.moddb.com/members/nbohr1more/blogs/reasons-to-own-doom-iii Oh well, hindsight is 20/20 eh? The general premise still stands though. Doom 3 is a game that uncomfortably straddles between a mindless shooter and a survival horror title. It's interesting to consider that Doom 3's cerebral attributes seem to be inherited from System Shock which heavily influenced it's design whereas I can now confidently say that Doom 2016 is a byproduct of Doom 3, Brutal Doom, and HL2 \ Black Mesa (with the latter being a particularly strong influence). While there are some flashes of brilliance in the early levels of the game, the true glories of the Doom 3 experience are in the Hell levels where the organic environments and intense demon fighting action take center stage compared to the claustrophobic jump-scare maze of offices in the research facilities. Still, there is SOMETHING there in that early gameplay that feels like it had the potential to be far more interesting than the version that shipped. I think that is why so many mods have tried to tinker with ammo amounts, difficulty, AI accuracy, etc to refine what was good about these areas. Alas, most of these endeavors have failed. Up 'till this point, Dentonmod was really my go-to gameplay modifier. I mostly used it for the included gore and weapon physics. It was more satisfying to watch my weapons display more powerful damage effects even if they didn't inherently change any of the difficulty behaviors. (I keep putting it on the back-burner but I have planned to fiddle with Flaming Sheep's Classic Doom 3 and Denton mod to make a combined mod so that all the functionality from both remains intact.) (Action Side) So, one evening, when scanning the Doom 3 mod section I came across the DoomReborn mod which I had seen a few times before and decided to finally give it a try. Up to this point, I had avoided it because it looked pretty garish and I thought that Classic Doom 3 had already accomplished this feat much more appropriately with better level design. I was surprised to find a completely different experience that was really a thrilling throw-back to the original Doom 3 feel. DoomReborn may not look so great in screen-shot form, but when played it's dimensions, player speed, and color scheme all subliminally link you back to the original Doom game and it makes you feel more like you are playing the most advanced Doom 1 graphics mod rather than a Doom 3 modded to play Doom 1 levels. I think it's a shame that the two projects were developed independently. Classic Doom 3's smaller, more closed-in, levels and slower pacing feel somewhat limp compared to the bombast of DoomReborn's sprawling 1000mph blast fests. So, I'll give a resounding "recommended" to DoomReborn if you are a fan of the arcade style action of the original Doom games: http://www.moddb.com/mods/doomreborn (Survival Horror Side) After that, and tinkering with a few other Doom 3 mods that mostly were variants of Sikkmod with Wulfen textures, I decided to check out one mod that was constantly mentioned in Steam forums. Strelok's D3 Enhancements. http://www.moddb.com/mods/streloks-d3-enhancement-mod I was absolutely floored! Stelok has done something quite special here. He's finally made the base Doom 3 game live up to it's survival horror leanings. Enemies no longer awkwardly lurch towards you as you fire ineffectual rounds at them. Now they rush at you in a way that recalls the menace of contemporary Zombie films. The whole feel of navigating the early missions is completely nail-biting. Also, weapon reloading is a manual affair. Once you run out of ammo, the game no longer wrests controls from the player and auto-reloads but instead leaves you firing empty clicks. You must take the initiative to reload. Another nice survival horror touch! The only down-side, I've encountered thus far are the Imp's. They are also sped-up and more aggressive to the point that it is very difficult to survive an encounter with more than two at once. With Doom 2016 out, this mod makes the virtues of Doom 3's design stand much further in contrast. If Doom 3 had launched like this, surely it would've been considered to be in the company of classic survival horror titles like the Resident Evil series. (Footnote) I have yet to revisit everyone's standard Doom 3 mod, Perfected Doom 3. The last time I tried this it was a horrible mess with inappropriate self-shadowing and strange "sharpened" textures with halo\emboss artifacts at the shading boundaries. (And it performed like a dog.). It looks like V-games may have made some significant improvements since I last looked into this, so I look forward to seeing the progress.
  14. Unfortunately, TDM forum deletes the separator between the numbers. So I have to guess where one number ends and the next starts Also, user can rename screenshot manually, or push it through something that would rename it automatically. Thenwe won't see coordinates on screenshot address on forums.
  15. tdm_show_viewpos cvar and screenshot_viewpos command: https://forums.thedarkmod.com/index.php?/topic/22310-212-viewpos-on-player-hud-and-screenshots/
  16. There's a group of players who have meticulously tested and adjusted ghosting rules for The Dark Mod. Please see: Official Ghosting Rules: https://www.ttlg.com/forums/showthread.php?t=148523 Ghost Rules Discussion: https://www.ttlg.com/forums/showthread.php?t=148487 Why alienate an established group of dedicated players?
  17. This was a bit of a joke from me by the way. (Maybe in bad taste). My purpose was to point out incrementalism has value in itself. No one is completely happy with the compromises in the pseudo final version we have arrived at, but it seems to be good enough. So let's all stop whining about the parts that didn't go our way before Daft Mugi keels over. I think an argument could be made that Skyrim's controls might be theoretically more optimal than TDM's adapted Thief scheme. Skyrim does have potions, readables, consumable items, and real time inventory management; if not in the official game then in some of its million mods. It seems to work well and about 10-20 million gamers are deeply familiar with it. But it would be a gargantuan task to completely rework TDM to fit that template, and it would alienate a lot of us who are used to the traditional ways. Better to take a few pointed lessons where they are most applicable and work slowly to optimize what we have inherited. But neither should we rest on our laurels. As I alluded to before, "gimmicks" like TDM's ragdoll bodies and physics object manipulation were still kind of cool in the early 2010s, but now day-they feel positively retro--and not always in a good way. It wouldn't hurt to have a hard think about what features actually contribute to the enduring appeal of TDM, versus which ones might be holding it back from charming an even wider audience.
  18. Relax @Näkki, it's great to hear you enjoyed the game. My personal expectations were just a bit different when I read the Steam page, although the various trailers should have been a warning that stealth maybe wasn't the biggest priority of the devs. From the Steam page: "Weird west legends meet eldritch horror in BLOOD WEST, an immersive stealth FPS." Also "Blood West is a stealth FPS inspired by the genre classics such as the Thief series (whose fans will be happy to hear the voice of Stephen Russell, the actor voicing the master-thief Garrett, returning here as the protagonist), S.T.A.L.K.E.R. games, or - from the contemporary catalog - Hunt: Showdown. The gameplay rewards the careful approach: scouting the area, stalking your enemies, and striking from the shadows. Can you figure out a way to clear a fort full of ghouls and monsters without raising an alarm?" From my personal experience I think the game is predominantly Hunt: Showdown, a bit of S.T.A.L.K.E.R. and a very small portion Thief. Stealth is very unforgiving and makes it almost impossible early game when there are various enemies around, but hey maybe I just suck at it. I don't see Deus Ex in it, unless the skill leveling is the Deus Ex part for you and then I have to disagree with you, as that seems like the trait system in Hunt: Showdown. Edit: What I also understood from the Steam forums is that the original VA was dropped close before the release of the full version and replaced by Russell with no real explanation from the devs why this was done.
  19. Ambient atmospheres are in my opinion one of the best parts of the Dark Mod experience, not just for getting a mission to have the right feel but also for inspiration and to have them playing in the background when creating maps. The more the merrier, so here's a thread to collect all the links to ambient music and environmental sounds that could have a spot in TDM's setting. Ambients from the TDM forums Gast's Eerie Lullabies Magnanimous Merry's Miscellanea Orbweaver's Dark Ambients Spadey's Ambients Radioteque's Ambients Kyyrma's Composing Ambient Tracks for Dummies - Kyyrma shows how ambient soundtracks can be made from a set of sounds. Also contains some of his finished ambients. Request for more interior sounds - this thread is a very productive community session where members came up with a large and good selection of new ambients. Uncle Peti's Sound Den Dragofer's Ambients - post #6 in this thread SeriousToni's Ambients - posts #8, 12, 15 and 19 in this thread Ambients from the TTLG forums Custom resources list Gigagooga's Ambients 1 - possibly the largest pack of ambient musics and nature sounds, all of them high quality. Gigagooga's Ambients 2 - this pack puts more weight on shorter swells/hits/pads to be layered on top of a subtle ambient. Gigagooga's Ambients 3 Yandros' ambient loop Sephy's Ambients - a large collection of ambient pieces, including many shorter ones which will be valuable for anyone wanting to try a layered ambience approach like in the Thief OMs and Full Moon Fever. Internet databases www.freesound.org - some of the better composers in my opinion are ERH and BrandonNyte. www.purple-planet.com - a large selection of all kinds of ambient and musical soundtracks to be used freely. www.darkwinter.com - an internet label that publishes a lot of dark ambient music under a Creative Commons license. www.endlessascent.com - sister website of Darkwinter for non-dark ambients. Youtube Asatru Dark - also has very nice reference images for outdoor stone memorials, statue arrangements etc. #4 Void by Raffaele du Marteau & #6 Dreaming of Nowhere by Raffaele du Marteau - possibly the most forlorn pieces I've found on the internet. Alacazam - a prolific Creative Commons ambients composer . Cryo Chamber - for-profit label for dark ambient music with a large selection on offer. Going by their Youtube comments they're fine with people using their soundtracks for games etc., although you'd probably need to buy the soundtracks first. Dark Ambient Mixed Session - as much ambient as something to have in the background while mapping.
  20. Extensive customization options are appropriate during the pre-release testing or early roll out of a new feature. The people testing the feature can't know yet what configuration will work best for them, much less the people making the patch. My expectation is that by the time you have to make a final decision about including this patch in the next official update of TDM, there will be a rough consensus about the optimal parameters for the new mechanics, and you will only need one toggle for the new behavior. Or, preferably, there would be no need for an option at all if we can only get over our OCD about preserving arbitrary semantic grouping in our key-bind allocations; and embrace a superior control scheme that's not designed around highlighting an old gimmick feature whose trendiness expired with the Half-Life 2 era of FPS. But that's a pipe dream. Maybe instead we can just all agree that the general>gameplay options are getting a bit crowded. Perhaps we could split some of them off into an "appearance" or "accessibility" tag. As more people make their own mods and we modernize our accessibility options it is going to become a problem regardless. Best to get ahead of it. I agree, and that is one of TDM's strengths. It borrows and combines many of the best features from the three beloved Thief games, but it also gives FM creators tools to expand their creative vision in new directions. To some Thief purists that will never be an enticing proposition. But I don't see this feature as throwing a bone to those Thief players specifically, but just player in general who are bouncing off our game because it deviates from some genre conventions for no obvious reason, which makes them think this is an unpolished product. It is true that Thief was what set these conventions, and (shockingly/s) it is mostly Thief players who are interested enough in TDM to give it a try... but our responsibility to address these problems (if we can) is the same as if AMD or Linux players were having technical problems with TDM. They are people who we want to be part of our community because we never know if one of them might make the next FM like Iris, or do something crazy-innovative with TDM that we can't even imagine!
  21. Yes: It could then be distributed as a mod that works universally. I may propose it for the modpack! I already did a brief test and it worked: I managed to give the player a guard head while the guard helmet was being worn! But soon after TDM would crash to the main menu, and after a few tweaks to the script even that stopped working and there's only the crash now. Likely some obscure internal issue that can be hopefully tackled in the engine. Thank you, that I shall! And the biggest issue with getting mods to work is the need for a tdm_custom_scripts.script which has been the biggest thorn in the backs of modders: I'd say either execute all scripts automatically the way all files are loaded, or if that's unsafe just allow a script carrying the name of the pk4 to be auto-executed.
  22. @MirceaKitsune, I haven't tested yet your new mod but please please please carry on working on it This reminds me, we have to figure out a way to make different mods work alongside.
  23. DarkRadiant 3.8.0 is ready for download. What's new: Feature: Support new frob-related material keywords Improvement: Mission selection list in Game setup is not alphabetically sorted Improvement: Better distinction between inherited and regular spawnargs Improvement: Silence sound shader button Improvement: Add Reload Definitions button to Model Chooser Fixed: Model Selector widgets are cut off and flicker constantly on Linux Fixed: DarkRadiant will not start without Dark Mod plugins Fixed: GenericEntityNode not calculating the direction correctly with "editor_rotatable" Fixed: RenderableArrow not drawing the tip correctly for arbitrary rotations Fixed: Light Inspector crashes on Linux Fixed: Models glitch out when filtering then showing them Fixed: Skin Editor: models not centered well in preview Fixed: "Copy Resource Path" includes top level folders Fixed: Skin Editor: internal test skins are shown if Material Editor was open previously Fixed: Changing Game/Project doesn't update loaded assets correctly Fixed: Model Chooser: initially hidden materials aren't revealed when enabling them Fixed: Choosing AI entity class 'atdm:townsfolk_commoner_update' causes crash Fixed: Sporadic assertion failure on shutdown due to LocalBitmapArtProvider destruction Fixed: Prefab Selector spams infinite error dialogs on Linux Windows and Mac Downloads are available on Github: https://github.com/codereader/DarkRadiant/releases/tag/3.8.0 and of course linked from the website https://www.darkradiant.net Thanks to all the awesome people who keep using DarkRadiant to create Fan Missions - they are the main reason for me to keep going. Please report any bugs or feature requests here in these forums, following these guidelines: Bugs (including steps for reproduction) can go directly on the tracker. When unsure about a bug/issue, feel free to ask. If you run into a crash, please record a crashdump: Crashdump Instructions Feature requests should be suggested (and possibly discussed) here in these forums before they may be added to the tracker. The list of changes can be found on the our bugtracker changelog. Keep on mapping!
  24. So, if I understand you, no Thief Gold FM does sound and text notifications of completed objectives? The missions in The Black Parade surely did. I'm completely confused now. I was sure that original Thief Gold had those objective complete notifications (at least the sound). Reading this thread suggests otherwise though: https://www.ttlg.com/forums/showthread.php?t=132977
  25. Fun for me that you should mention Enderal, as that is next on my rotation of things to play. I started it a few years ago with some mods and self imposed rules that satisfied my hunger for sneaky, tricksy, fantasy roleplaying really well. But then I hit a difficulty spike (at the part where you take an undead infested subway to an island) and lost my taste for it. Currently I'm dipping my toes back into Skyrim first, with a bunch of difficulty/survival mods and house rules. I'd like to finish the main quest line in that, which I was only 1 or 2 quests from completing on my main save when I last set it down. Then I want to play the Forgotten City mod with that character, which I tried once before when my guy was like level 10-20 and couldn't do a lot of stuff. But right now I'm actually having more fun running around with a few new characters doing random minor quests and survival challenges with very limited resources. And just last week I finished an epic 18 month first full playthrough of The Witcher 3 and DLCs, with extensively tweaked W3EE and Lazarus mods installed. It was very hard, but damn I felt like I earned that vineyard at the end. (Plus it was something that I started with my dad during the pandemic, and in the end we completed all the 3 main questlines together.) This is what I love about PC gaming. Epic fantasy, open world, story driven, immersive survival sim is a genre that I don't think has ever existed in a single commercial product, but with a small amount of elbow grease on my part there it is for me to play.
×
×
  • Create New...