Jump to content
The Dark Mod Forums

Search the Community

Searched results for '/tags/forums/shorter fms' or tags 'forums/shorter fmsq=/tags/forums/shorter fms&'.

  • 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. I had an idea... but I don't have a plan. New Volumes of Virtual Rooms must be the result of a collaborative community effort. We have to figure out everything: rules, content, plot, presentation... and we have to figure it out together. I am not the director or supervisor of this project. I can act as a coordinator during the initial stages but consider me as simply another member. Anyone is free to volunteer for any role. VIRTUAL ROOMS VOL.2 (ALPHA) Whenever there is new content new alpha versions will be made available and the good news is that the first alpha is already here! Member @thebigh quickly figured it all out on his own and he already created the very first room for Vol.2: Thaumaturgy! Please note Vol.2 is not available in the in-game downloader. It will be uploaded to the official repository only when the project is complete. Manual install instructions: Download the alpha from here Create the folder "fms/vr_vol2" and place the pk4 there Launch the game and look for Virtual Rooms Vol.2 (alpha) Room names: DISCUSSION What do we want Virtual Rooms to be? I propose we start with a basic set of Questions & Answers and let it grow from there. Can you help improving these Q&A? What is a Virtual Room? [Provisional] A Virtual Room is the container of an idea or an experiment. Anything that doesn't fit in a more serious project can have its home in the form of a Virtual Room. A Virtual Room can be large or small, simple or elaborated, short or long. Are there any rules? [Provisional] Yes, we want to have a cohering experience and for that we need a consistent set of main objectives. To keep things simple yet interesting the current main rules are: While having AI is not required being seen by AI is an instant failure There must be at least one optional piece of loot in the map The player must reach an exit point to complete the room Each room (map) can have its own set of scripts, textures, materials, sounds... As long as the main rules are respected, you are free to do what you please. Can I have extra objectives in my room? [Provisional] Yes but think how you will let players know about them. Do I have to adhere to a particular aesthetics? [Provisional] No, you do what you want. You can opt for a blocky design or you can go with your own style. How do I submit a room? [Provisional] Upload it somewhere and announce it publicly. Somebody will eventually include it in the next Alpha. Can I revisit the room I submitted? [Provisional] Yes, of course. As many times as you want or need. It is your room after all. In what order are rooms arranged? [Provisional] "First come, first served". When we have a good number of rooms we can see if authors agree to different arrangements for a linear or cohesive experience, if such thing is even possible considering the different sources. Will I be credited for my room? [Provisional] Yes by default but you can opt out. Authors will be listed in the release page, in a readme, and we can probably add something in the briefing or debriefing. Is there a tutorial on "how to create a room"? Yes, one is in the works but it is not yet ready / available. Discuss!
  2. 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
  3. Back in the day, Tels managed a squad of volunteer translators for TDM. I am not Tels, and could never do that. Nowadays, language translation using AI, either traditional machine learning (ML) models or large language models (LLMs), is common and increasingly fluent. It is often used as an adjunct to speed the work of professional human translators. By itself, AI translation can be imperfect but usually sufficient. Can this "sufficient" approach be used for TDM, to expedite translations? Let's see. I gave some initial thought to a bulk-translation daemon that might range across FMs and fill in all missing translations, without necessarily involving mappers. In the future, possibly AI could tackle that whole enchilada. I was at first visualizing something more modest: a backbone in a standard programming language (I sketched out C++ and C# projects, but lots of other possibilities) that would make calls to an API (I looked at those of Google Translate and ChatGPT). However, I changed focus due to certain concerns... Different FMs, and subsets with each FM, would likely have far better translations if they were properly grouped, ordered, and translated separately, with an appropriate context (e.g., phrase engineering) added. The FM's mapper is best placed to provide this grouping and context. I'll detail what I mean in the next few posts. The mapper would not be expected to know any TDM-supported languages besides English. Instead, each translated phrase could be back-translated to English and examined. Is the "round-trip" meaning OK, even if the English words have changed? Problematic translations could have their context tweaked and rerun. Many AI systems, particularly for API access, require a billing commitment (e.g., credit card). For a professional translator, this is no problem, and subscriptions allow access to more (and putatively better) models and higher quotas. This seems less appealing for TDM. A few paid AI systems have a no-subscription, pay-as-you-go account tier. The cost per translate is typically pennies. But it does introduce quota- and expense-management, and may exclude API usage. Access via API requires an API key (or at the higher end more elaborate security regime), with attendant key-security headaches. Which AI model is thought "best" for translation? Doesn't matter too much, because we can't afford the best. Furthermore, there's endless churn among AI models, with antidotal reports that a given model fluctuates in quality over time, and successor models can be worse than their predecessors. So, with these concerns in mind, I looked for public web-based AI sites that require no billing and provide low-quota but adequate AI. The mapper would enter and retrieve data manually. I will focus on ChatGPT in this exploration, after a quick preliminary test confirmed some promise. Also, as this exploration proceeds, I hope to propose changes to TDM to make it more viable for "sufficient" quality machine translation. Problem areas are incomplete fonts, space-constraints, and layout issues for translated strings. My proposals will likely surface as separate forum threads. That's enough for now. I'll be trying for 1 or 2 substantive posts per week, as I tackle a particular FM.
  4. Version 2 has been released. Nothing fancy: one bug-fix and minor adjustments. The original download link and the original name remain the same. Just download and overwrite. The download link can be found in the opening post. 1) Sword carries over missions There is a bug in the source code in file "def\tdm_campaign.def". At the end of the file "weapon_limit_sword" should be "weapon_limit_shortsword". I manually fixed this in all maps/rooms in version 2. 2) The zombie in room 5 (Purgatory) is easier to kill now Some people find the rope swing mechanic too challenging and this should alleviate frustration to some extent. 3) Fixed misalignment of the lamps in room 8 (Gallery) An oversight on my part. Really minor stuff. ------------------------------------------------------------------------ In-game downloader The current internal name of the mission is "fms/vr_rooms" and I here request this to be changed to "fms/virtual_rooms_vol1" (or "fms/vr_vol1" if it needs to be shorter). This change means you all will have duplicates if version 2 gets updated in the repository. My advise if/when this happens is: Close the game Go to "fms/" and delete the "vr_rooms" folder A proper naming convention is important for collaborative initiatives (instructions, tutorials, organization, support...). Thanks all for your understanding.
  5. Installed this mission and now my game will not start at all, I get a blue screen page with all this in it... TDM 2.12/64 #10651 (1435:10651) win-x86_64 Feb 24 2024 17:13:42 3311 MHz Intel CPU with SSE & SSE2 & SSE3 & SSSE3 & SSE41 & AVX Winsock Initialized Found interface: {7E4AFCE4-2858-4AA4-9EC9-B91694C33FCD} Intel(R) 82579LM Gigabit Network Connection #2 - 0.0.0.0 NULL netmask - skipped Found interface: {2340C0DC-39A7-4482-8282-B77A8FDCFC8A} Realtek RTL8168C(P)/8111C(P) Family PCI-E Gigabit Ethernet NIC (NDIS 6.20) - 192.168.1.168/255.255.255.0 Found interface: {DEAB3071-3FD2-4C63-B353-E5E60D5C3C17} Bluetooth Device (Personal Area Network) #5 - 0.0.0.0 NULL netmask - skipped Sys_InitNetworking: adding loopback interface Found Intel CPU, features: SSE SSE2 SSE3 SSSE3 SSE41 AVX TDM using AVX for SIMD processing. Found 0 new missions and 0 packages. ------ Initializing File System ------ Current search path: [M] C:\All Games\TDM 2.10/fms/vr_vol1 [M] C:\All Games\TDM 2.10\fms\vr_vol1\vr_vol1.pk4 (167 files - 0xda24df0e) [C] C:\All Games\TDM 2.10/ [C] C:\All Games\TDM 2.10\tdm_textures_wood01.pk4 (382 files - 0x54c704d0) [C] C:\All Games\TDM 2.10\tdm_textures_window01.pk4 (399 files - 0x50a48869) [C] C:\All Games\TDM 2.10\tdm_textures_stone_sculpted01.pk4 (466 files - 0x90cfd856) [C] C:\All Games\TDM 2.10\tdm_textures_stone_natural01.pk4 (141 files - 0x4d0836ff) [C] C:\All Games\TDM 2.10\tdm_textures_stone_flat01.pk4 (302 files - 0x671a22d2) [C] C:\All Games\TDM 2.10\tdm_textures_stone_cobblestones01.pk4 (271 files - 0xc46ab14f) [C] C:\All Games\TDM 2.10\tdm_textures_stone_brick01.pk4 (527 files - 0x8ac69a5e) [C] C:\All Games\TDM 2.10\tdm_textures_sfx01.pk4 (69 files - 0x6589664a) [C] C:\All Games\TDM 2.10\tdm_textures_roof01.pk4 (69 files - 0x24547b7) [C] C:\All Games\TDM 2.10\tdm_textures_plaster01.pk4 (142 files - 0x9747529e) [C] C:\All Games\TDM 2.10\tdm_textures_paint_paper01.pk4 (67 files - 0xa4a95a09) [C] C:\All Games\TDM 2.10\tdm_textures_other01.pk4 (127 files - 0x36932451) [C] C:\All Games\TDM 2.10\tdm_textures_nature01.pk4 (292 files - 0x8baa85ff) [C] C:\All Games\TDM 2.10\tdm_textures_metal01.pk4 (509 files - 0x441d098f) [C] C:\All Games\TDM 2.10\tdm_textures_glass01.pk4 (51 files - 0x3f3721e) [C] C:\All Games\TDM 2.10\tdm_textures_fabric01.pk4 (43 files - 0x649daf73) [C] C:\All Games\TDM 2.10\tdm_textures_door01.pk4 (177 files - 0xb0130166) [C] C:\All Games\TDM 2.10\tdm_textures_decals01.pk4 (474 files - 0xe2ff12c6) [C] C:\All Games\TDM 2.10\tdm_textures_carpet01.pk4 (131 files - 0xb4446f55) [C] C:\All Games\TDM 2.10\tdm_textures_base01.pk4 (436 files - 0xbe13aef2) [C] C:\All Games\TDM 2.10\tdm_standalone.pk4 (4 files - 0xb3f36d20) [C] C:\All Games\TDM 2.10\tdm_sound_vocals_decls01.pk4 (341 files - 0x7ceaaf6d) [C] C:\All Games\TDM 2.10\tdm_sound_vocals07.pk4 (1111 files - 0x67d07bcc) [C] C:\All Games\TDM 2.10\tdm_sound_vocals06.pk4 (696 files - 0x44c85e78) [C] C:\All Games\TDM 2.10\tdm_sound_vocals05.pk4 (119 files - 0x6cf23214) [C] C:\All Games\TDM 2.10\tdm_sound_vocals04.pk4 (2869 files - 0xd7ec1256) [C] C:\All Games\TDM 2.10\tdm_sound_vocals03.pk4 (743 files - 0xb3f2e0f1) [C] C:\All Games\TDM 2.10\tdm_sound_vocals02.pk4 (1299 files - 0x5092940e) [C] C:\All Games\TDM 2.10\tdm_sound_vocals01.pk4 (82 files - 0xf4d326b2) [C] C:\All Games\TDM 2.10\tdm_sound_sfx02.pk4 (605 files - 0x31673482) [C] C:\All Games\TDM 2.10\tdm_sound_sfx01.pk4 (987 files - 0x1be1f1f2) [C] C:\All Games\TDM 2.10\tdm_sound_ambient_decls01.pk4 (8 files - 0x9404877c) [C] C:\All Games\TDM 2.10\tdm_sound_ambient03.pk4 (24 files - 0xd28ca9ec) [C] C:\All Games\TDM 2.10\tdm_sound_ambient02.pk4 (163 files - 0x84efad22) [C] C:\All Games\TDM 2.10\tdm_sound_ambient01.pk4 (220 files - 0xee228c81) [C] C:\All Games\TDM 2.10\tdm_prefabs01.pk4 (1018 files - 0xaf4d4650) [C] C:\All Games\TDM 2.10\tdm_player01.pk4 (127 files - 0xd983fc45) [C] C:\All Games\TDM 2.10\tdm_models_decls01.pk4 (101 files - 0x7acb73c6) [C] C:\All Games\TDM 2.10\tdm_models02.pk4 (2262 files - 0x357310a0) [C] C:\All Games\TDM 2.10\tdm_models01.pk4 (3357 files - 0xea32fa8c) [C] C:\All Games\TDM 2.10\tdm_gui_credits01.pk4 (49 files - 0xbff51863) [C] C:\All Games\TDM 2.10\tdm_gui01.pk4 (760 files - 0xbb24734e) [C] C:\All Games\TDM 2.10\tdm_fonts01.pk4 (696 files - 0x7c5027bf) [C] C:\All Games\TDM 2.10\tdm_env01.pk4 (176 files - 0x8bd4045b) [C] C:\All Games\TDM 2.10\tdm_defs01.pk4 (194 files - 0xde333662) [C] C:\All Games\TDM 2.10\tdm_base01.pk4 (208 files - 0xaf435101) [C] C:\All Games\TDM 2.10\tdm_ai_steambots01.pk4 (52 files - 0xc6279c12) [C] C:\All Games\TDM 2.10\tdm_ai_monsters_spiders01.pk4 (80 files - 0xc50c13ac) [C] C:\All Games\TDM 2.10\tdm_ai_humanoid_undead01.pk4 (55 files - 0x25e463ad) [C] C:\All Games\TDM 2.10\tdm_ai_humanoid_townsfolk01.pk4 (104 files - 0xa6f7c573) [C] C:\All Games\TDM 2.10\tdm_ai_humanoid_pagans01.pk4 (10 files - 0x566fb35a) [C] C:\All Games\TDM 2.10\tdm_ai_humanoid_nobles01.pk4 (51 files - 0x5ca54cab) [C] C:\All Games\TDM 2.10\tdm_ai_humanoid_mages01.pk4 (8 files - 0x5e7a666b) [C] C:\All Games\TDM 2.10\tdm_ai_humanoid_heads01.pk4 (100 files - 0x45ec787e) [C] C:\All Games\TDM 2.10\tdm_ai_humanoid_guards01.pk4 (379 files - 0xbc2cde8d) [C] C:\All Games\TDM 2.10\tdm_ai_humanoid_females01.pk4 (172 files - 0xc7de4598) [C] C:\All Games\TDM 2.10\tdm_ai_humanoid_builders01.pk4 (91 files - 0x6dea9b57) [C] C:\All Games\TDM 2.10\tdm_ai_humanoid_beasts02.pk4 (229 files - 0x886c9a98) [C] C:\All Games\TDM 2.10\tdm_ai_humanoid_beasts01.pk4 (23 files - 0xba9da54c) [C] C:\All Games\TDM 2.10\tdm_ai_base01.pk4 (9 files - 0x1de319e8) [C] C:\All Games\TDM 2.10\tdm_ai_animals01.pk4 (82 files - 0x91388f45) File System Initialized. -------------------------------------- Couldn't open journal files ----- Initializing Decls ----- ------------------------------ I18N: SetLanguage: 'english'. I18N: Found no character remapping for english. I18N: 1334 strings read from strings/english.lang I18N: 'strings/fm/english.lang' not found. execing default.cfg Gamepad modifier button assigned to 6 execing Darkmod.cfg execing DarkmodKeybinds.cfg execing DarkmodPadbinds.cfg Gamepad modifier button assigned to 6 Couldn't exec mission.cfg - file does not exist. Couldn't exec autoexec.cfg - file does not exist. I18N: SetLanguage: 'english'. I18N: Found no character remapping for english. I18N: 1334 strings read from strings/english.lang I18N: 'strings/fm/english.lang' not found. ----- Initializing OpenAL ----- Setup OpenAL device and context OpenAL: found device 'OpenAL Soft on TOSHIBA-TV (NVIDIA High Definition Audio)' [ACTIVE] OpenAL: found device 'OpenAL Soft on Speakers (Realtek High Definition Audio)' OpenAL: found device 'OpenAL Soft on Realtek Digital Output(Optical) (Realtek High Definition Audio)' OpenAL: found device 'OpenAL Soft on Realtek Digital Output (Realtek High Definition Audio)' OpenAL: device 'OpenAL Soft on TOSHIBA-TV (NVIDIA High Definition Audio)' opened successfully OpenAL: HRTF is available OpenAL vendor: OpenAL Community OpenAL renderer: OpenAL Soft OpenAL version: 1.1 ALSOFT 1.21.1 OpenAL: found EFX extension OpenAL: HRTF is disabled (reason: 0 = ALC_HRTF_DISABLED_SOFT) OpenAL: found 256 hardware voices ----- Initializing OpenGL ----- Initializing OpenGL subsystem ...getting default gamma ramp: success ...registered window class ...registered fake window class ...calling CDS: ok ...created window @ 0,0 (1600x900) Initializing OpenGL driver ...getting DC: succeeded ...PIXELFORMAT 12 selected ...creating GL context: core-fc ...making context current: succeeded ...initializing QGL ------- Input Initialization ------- Initializing DirectInput... mouse: DirectInput initialized. keyboard: DirectInput initialized. ------------------------------------ OpenGL vendor: NVIDIA Corporation OpenGL renderer: NVIDIA GeForce GTX 970/PCIe/SSE2 OpenGL version: 3.3.0 NVIDIA 560.94 core Checking required OpenGL features... v - using GL_VERSION_3_3 v - using GL_EXT_texture_compression_s3tc v - using WGL_VERSION_1_0 v - using WGL_ARB_pixel_format Checking optional OpenGL extensions... v - using GL_EXT_texture_filter_anisotropic maxTextureAnisotropy: 16.000000 v - using GL_ARB_stencil_texturing v - using GL_EXT_depth_bounds_test v - using GL_ARB_buffer_storage v - using GL_ARB_texture_storage v - using GL_ARB_multi_draw_indirect v - using GL_ARB_vertex_attrib_binding X - GL_ARB_compatibility not found v - using GL_KHR_debug v - using WGL_EXT_swap_control Max active texture units in fragment shader: 32 Max combined texture units: 192 Max anti-aliasing samples: 32 Max geometry output vertices: 1024 Max geometry output components: 1024 Max vertex attribs: 16 ---------- R_ReloadGLSLPrograms_f ----------- Linking GLSL program cubeMap ... Linking GLSL program bumpyEnvironment ... Linking GLSL program environment ... Linking GLSL program fog ... Linking GLSL program oldStage ... Linking GLSL program blend ... Linking GLSL program soft_particle ... Linking GLSL program gaussian_blur ... Linking GLSL program testImageCube ... --------------------------------- Font fonts/english/stone in size 12 not found, using size 24 instead. --------- Initializing Game ---------- The Dark Mod 2.12/64, win-x86_64, code revision 10651 Build date: Feb 24 2024 Initializing event system ...890 event definitions Initializing class hierarchy ...173 classes, 897120 bytes for event callbacks Initializing scripts --------- Game Map Shutdown ---------- --------- Game Map Shutdown done ----- ERROR:Error: file script/virtual_rooms.script, line 42: Unknown value "getPersistentFloat" -------------------------------------- Error during initialization. Error: file script/virtual_rooms.script, line 42: Unknown value "getPersistentFloat" Shutting down OpenGL subsystem ...wglMakeCurrent( NULL, NULL success ...deleting GL context: success ...releasing DC: success ...destroying window ...resetting display ...restoring hardware gamma: success ...shutting down QGL Which to me is all rather meaningless.
  6. https://www.ttlg.com/forums/showthread.php?t=153139
  7. Sadly yes 2025 seems like a bit of a low year for TDM. I personally know of a handful of missions in active development. But as for their release, I would expect them all to be 2026 releases. For me, I’m still plugging away at Shadows of Northdale Act 3. It seems to have hit a bit of development hell, combined with my busy personal life. I was determined to get it out this year. But it’s looking like another 2026 release too. On the surface it might look grim, but behind the scenes there are some really cool FMs in the works. So I guess we just have to wait until that labour bears its fruit.
  8. Virtual Rooms Vol.1 You are trapped in a virtual simulation of interconnected rooms, each holding its own challenge. Do you dare attempt the escape? Volume 1 marks the beginning of a journey. Future volumes of Virtual Rooms will be driven by the community: rooms will be created by different authors. We will set common rules as we go. Stay tuned for the upcoming kickoff of Volume 2! In the meantime, let know your thoughts about Volume 1 and "Virtual Rooms" as a concept. Feel free to criticize and/or suggest areas of improvement. Share your ideas. This initiative now belongs to all of you, members of this community and fans of The Dark Mod out there. EDIT - You can now discuss it here: [Alpha] Virtual Rooms Vol.2 Have fun Install instructions: Virtual Rooms Vol.1 is available in the in-game mission downloader. Alternatively, go to the "fms" folder, create the folder "vr_vol1" and place inside the pk4 file that you can download here. Room names, as reference: Known bugs: Cheers!
  9. 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/
  10. This is an experimental GUI app for managing and packing Dark Mod missions. It's a successor to FM Packer but with a GUI, that I've been working on for some time. It's now at a stage where I feel somewhat comfortable sharing. Having a GUI unlocks potential for more in depth management of fms, which I intend to explore in the future. You can download the binaries here: https://github.com/Skaruts/tdm_packer_2/releases Currently: it can pack your selected mission into the pk4 at a click of a button it provides an editor for a .pkignore file where you specify which files to exclude from the pk4 it gives you a handy tree view of both the included and excluded files (Shift+LMB to fully expand/contract branches) it can launch TDM or DarkRadiant for the selected mission, or run a second installation of TDM to test your pk4 in isolation (see the menu Settings->Paths) it automatically writes your map sequence into the appropriate file all maps, except the ones in the map sequence, are auto excluded from the pk4 Important: This is still an experimental alpha version, so backup your missions before using it. Note: For now I provided binaries for Windows and Linux. I don't have a Linux system to test the binaries yet, though, so they may or may not work properly. As a last resort, one can still run this app from the source code by running the Godot Engine itself from the terminal with the "--path path/to/project" argument. (Godot itself is just a simple executable and requires no installation.)
  11. Experimental implementation of parallax mapping Isn't it reatroactive (in old FMs), right?
  12. 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!
  13. Contributions downloads are at http://fidcal.com/DarkMod/index.htm Note that there is no dedicated beautiful sortable webpage list. I don't have time and also this means less delays. Just browse the folders and click on readmes and images and grab any zips. If anyone submits anything I can just upload it in a few minutes. ~~~~~~~~~~~~~~ If you wish to offer coding, modelling, or any other kind of help got to the I want to help forum for discussion. If you have any extensive assets you wish to discuss also you can go to the I want to help forum. If you simply want to share an FM, prefab(s), textures, whatever then post details in this thread (there are other websites for FMs too.) Generally these need to be zipped up with a description.txt plain text file and optionally an image, and uploaded somewhere I can get them such as a fileshare website like rapidshare. Any problem with that and if you have ftp I can arrange a direct upload to a private temporary folder on my website. All submissions to this thread should be accompanied by a short description summary to go on the download page and optionally a picture(s). Such submissions will be placed on my website download page (wip) at fidcal.com. Anything suspect for any reason I reserve the right to delete. I accept no liability for downtime or even no-continuance of the download section or even the entire website for any reason. Downloaders: I accept no liability if you download anything you'd rather not: download at your own risk. Oh yes, and I am not responsible for global warming, economic depression, you name it; I'm not responsible. From there, any mappers can download what they want. The Dark Mod Team may or may not assess some items for inclusion in future Dark Mod updates. FMs may be assessed for inclusion on the Dark Mod website. Anyone feel free to mirror the download folder. Any suggestions post in this thread too.
  14. ============== -= 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 ============== *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:
  15. A set of some 200 missions is a lot to sift through to find what one likes. I never used your site but if it provided functionality to search missions for parameters like approximate playtime, series v standalone, and tags like undead, spiders, mansion, city, etc, then it sounds plenty useful. Can the functionality be incorporated into the main web page? Perhaps even integrated to fetch underlying data from the wiki (so that trusted editors can keep the parameters up to date)?
  16. By "IP", I'm thinking you mean my machine's address (not intellectual property). Yes, if an AI was not privacy-preserving, and actively monitoring for and reporting IRL criminal activity (likely many are), and misconstrued what I was doing, then I see your point. For my particular FM, the phrases don't really imply any criminal acts, just clues. This is not the case for all FMs. In those cases, when untrustworthy AI systems allow rich prompts, it's probably a good idea to specifically indicate you are writing for a fictional mission within a PC game. Also, the activity itself, translating into a fixed suite of multiple languages, is probably not something an actual criminal enterprise would do. Talking in the forums about your FM under development would also show that your intentions are not real-world crimes, and I'd like to think ward off all but the most wrong-headed prosecutions.
  17. for those still dabling in retro hardware heres some interresting sites https://windowsupdaterestored.com/ windows updates for win 9x to xp https://www.techpowerup.com/forums/threads/tpus-nostalgic-hardware-club.108251/ links to various sites with old software and information on setting up older systems hardware.
  18. In pursuit of a long-sought secret, the key to life everlasting lies deep within the recesses of an ancient athenaeum. Dragofer, Bikerdude, and I proudly present our FM for the Christmas Connections Contest titled "Written in Stone." Notes - TDM 2.10 Beta 5 or later is REQUIRED to play this mission. However, it is recommended to play using 2.10 Beta 6. You can get the latest version here. - This FM is a sequel to The Elixir. While it is not vital to play that before playing Written in Stone, there are some story connections. - This FM may be more hardware intensive than normal. LOD settings can be set below "Normal" to improve performance on low-end machines by disabling certain features. - Various areas will look better with shadow maps enabled at the possible expense of performance. - This FM implements the func_peek mechanic, allowing players to peek through any door that has a keyhole on it by leaning forward. PLEASE NOTE: This function has been known to cause crashes for a small number of players in the past, likely due to using the 32-bit version of TDM. At no point in this mission is it required to use the func_peek mechanic; it is purely optional, so feel free not to use it. As an entry in the 2.10 Christmas Connections Contest, the new features and assets used by this FM are: Download Version 1.1 This FM is available for download here: Google Drive Simply place the written.pk4 into your darkmod/fms folder and you're ready to go! Promotional Screenshots (via ThiefGuild) Credits A big thanks goes out to Wellingtoncrab for making a beautiful city map, Narrator for their wonderful voice work, nbohr1more for creating the original story premise as well as a few readables, Goldwell for animating the introduction to our briefing video and Duzenko for making certain glasses work as well as they do! A huge thank you also goes out to our beta testers: Goldwell, Wellingtoncrab, Kingsal, noodles, Krilmar, Garrett(Monolyth-42) ate0ate, and Mike_A. Thank you all very much for your keen eye to detail and great insights! Asset Credits Kingsal's Killer Assets Wellingtoncrab's Wonderful Furniture and Book Skins ***PLAYERS BEWARE*** SPOILERS lurk in the depths below. We strongly recommend playing this FM first so you don't spoil the fun for yourself!
  19. I'm the developer of AngelLoader, a fan mission loader/manager for Thief 1/2/3/SS2. I recently decided to try adding Dark Mod support. The latest release is here: https://github.com/FenPhoenix/AngelLoader/releases I'm going to keep a log of issues, ideas, notes, etc. here and we can discuss them or whatnot. If anyone has ideas or suggestions, feel free to post them here. TDM version requirement: I've only tested it with TDM 2.11. I'm not sure but I dimly remember FMs used to be stored differently at some point in the past? If so, it wouldn't work with those older versions. I assume people would normally keep their TDM install up to date, but just a heads up. How it works: In the Settings window -> Paths tab, choose your Dark Mod executable. Click OK. Now your TDM FMs will be detected, scanned, and added to the list. For the other supported games, there is the concept of "installed" vs "not installed", this is because they normally come in archive files and then the loader can "install" them (extract the file into the "installed FMs" folder). For TDM there is no such concept (FMs are always installed), so the green checkmark "installed" indicator means that that FM is the currently selected one (the one that is loaded up when you start TDM), and only one TDM FM can be "selected" at a time. This indicator is kept in sync with the game, so if you change your selected FM inside TDM, AngelLoader will update its "selected" indicator in-app. Notes & Issues: Deleting FMs: Deleting TDM FMs is not supported yet. I notice TDM itself doesn't allow you to delete FMs either; it has been noted that people have accidentally lost their data and so the option was removed. AngelLoader puts files into the recycle bin when it deletes them, and I could add the option, but figured it was okay to leave it out initially since the game doesn't let you do it either. Note, though, that you can still delete TDM FMs from AngelLoader's database if you've manually deleted the actual FM from disk first. To do this, first click the "Show only unavailable FMs" button (red X page icon on the top bar). Last Played and Finished-On-Difficulty: Finished-on difficulty is now autodetected. Last played date is taken from the game's database only if AngelLoader doesn't have one in its own (its own is more granular). In the FMs folder, there is a file missions.tdminfo which stores certain pieces of data about FMs. Included among this data is which difficulty the mission has been finished on, and the last played date (down to the day only). AngelLoader also stores this information, but it doesn't get these values from this file at the moment. Instead, the last played date (down to the instant, not just the day) is set whenever an FM is started, and the finished-on state must be set manually. I could have it watch the file for changes and update the finished-on-difficulty automatically for the current FM. This would override the user setting, but in theory should be accurate anyway. I could also auto-update the last played date, but because it's only down to the day, that would be less optimal than just setting it on FM start, which would give a more granular date and would have sorting working better. So if you played two FMs in one day, the latest played one would sort at the top. Mods tab is disabled: For NewDark games, there is built-in support for mods, and they can be enabled or disabled per-FM in an official capacity. I've disabled the Mods tab for TDM because - from a cursory look anyway - I don't think there's such a per-FM method of mod management. Language selection is disabled: In the Edit FM tab, there's an option to choose which language to play an FM with. I've disabled it for TDM because there's a language option in-game (not the case with NewDark) and I haven't looked into how I would scan a TDM FM for supported languages anyway. "Play Without FM" Option: For the other games, there is the option (in the bottom bar) to play them with no FM. For TDM there is no such thing as "no FM", but the option is still there currently. It will simply start TDM without passing it anything, and whatever FM it has selected will be there. I might remove the option since it doesn't really make sense. This might make people wonder "where's the button for TDM" but on the other hand having it isn't really useful. Not sure. Mission downloading and updating: An in-app mission downloader is in progress. There is no mission downloader or anything like that currently. It simply lists what you've got on disk. This means that to get new FMs or check for updates to existing ones, you still have to go in-game. I don't know how people feel about the convenience factor of this, having to go in-game to get your FMs and then back out to AngelLoader. However, duplicating the TDM download functionality would mean it might well break if TDM ever changes anything about its downloader. Custom resource stats: In the Statistics tab, custom resource display is disabled for TDM. I haven't looked into what sort of "custom" things a TDM FM can have and how I can detect them. I may do this in the future.
  20. I continue the work on the animations with the new Blender rig. Walkcycle: http://www.youtube.com/watch?v=nozToZMIFR8&feature=youtu.be It's only 2 frames shorter than current animations, so it's rather similar to walk1.md5anim now.
  21. I think a first step is to make that timeframe longer. Also the (default) cool-off time should be shorter? Then you can decide if they're still useless. Apart from that I personally don't like the idea that guards are not knockable when they're alert. To me that is just too far from logical. When they're alert they should do more head/body-turning, etc. to make it harder to knock them out, but you should still be able.
  22. hmm its actually rather advanced and unfortunatly a bit of a pain to setup. one example is hrtf (headphone surround) which requires mapping sound locations with a tool they provide. https://deepwiki.com/kcat/openal-soft/5.3-gui-configuration-tool lists a good deal of which steps needed. for all other cases it is probably better to ask on the github forums for it. attached my own config for dhewm3 which sounds somewhat ok. drop it next to the dhewm3 executable. if you feel up to experimenting you can add your own settings to it alsoft.zip
  23. I realize I've never posted in this thread in spite of already making two FMs, so I guess I'll correct that oversight now. After finishing my last FM, I got straight to work on a new one trying to incorporate the lessons learned. It's planned to be the first of a 3 (maybe 4?) part series, initially set in the Pagan Quarter/Plague Ward and then moving beyond it all the way up to the wealthier Old Quarter. "Threepenny Revue" was a simple one-building mission, and "The Last Night on Crookshank Lane" was a freeroam city streets affair. This new mission, tentatively titled "A Trip to the Museum", will be a more of a linear, narrative one (but still keeping the Immersive Sim element for the mission locations themselves). I'm also taking this opportunity to try my hand at using Conversations, and maybe the use of cameras to do in-engine cutscenes. Once I get to that stage, I'd like to try soliciting voice actors if possible. A couple of screenshots of areas in progress included here:
  24. I think recommendation styles often split between cinematic FMs with great atmosphere, story, and big set pieces at the arguably cost of open gameplay vs. gameplay FMs ones with really well thought out, challenging, and open level design at the arguable cost of tight impactful storytelling. In a way that's the old ludo vs. narrative debate. Of course there are some FMs that do both sides well, but even then there's usually some emphasis on one side of the coin over the other. Anyway, my FM love language is definitely on the gameplay side of the coin, and while I can appreciate the big set pieces and storytelling beats, they don't do as much for me as FMs with environments really well designed for challenging gameplay where I'm fighting for progress. To each their own though. I'm glad there's not one style of FM and we have a good amount of diversity.
  25. By way of introduction, Penny Dreadful is a fan mission series dealing with the exploits and misfortunes of Gerald Foxley, lowlife and common opportunist. To stick with the theme of lurid and disreputable pulp literature, these missions were planned to be nasty, brutish and short, which sort of worked in PD1, was not entirely working in PD2, and went out the window with PD3, which ended up much bigger than I ever expected. The series also allows me to experiment with gameplay ideas which do not completely fit TDM standards: Foxley is slightly worse at stealth than the TDM baseline, and can't pick locks: you will need to find different ways of getting into places. In the first episode, The Grail of Regrets, what started out as a routine case of extortion ended with Gerald in the possession of the eponymous Grail. In the second, All the Way Up, these newfound fortunes proved to be shorter than anticipated, as Messer Montrose, a corrupt nobleman, and his ally, the local Bailiff conspired to rob Foxley of the prize to further their own ends. The Grail is now in the hands of Archibald Flint, a powerful crime boss ruling from a mansion on Fiddler's Hill, an infamous den of thieves. However, to get close to him, Foxley has to remove a few obstacles in the way... Erasing the Trail "Kill a man and take his life; wound him, and restore his pride." -- alleyway proverb. "In a city where every window is an eye and every doorway a whispering mouth, it is hard to keep a secret. When I learned of crime lord Archibald Flint's involvement in robbing me of the Grail of Regrets, I knew I'd have to strike quick, and strike first. But I failed. By the time I got near his place on Fiddler's Hill, every gate to his hilltop mansion was locked, every alley patrolled by thieves eager to kill. Two days later, I watched my tenement go up in smoke and flames. The hunt was on, and it wouldn't be over until they'd have their quarry dead or captured. Flint's main enforcer is a man named Grunt, known to communicate in written orders after his throat was cut in some altercation... a real bloodhound. I will have to deal with him one way or another to get the heat off of my back, and allow me to reach Flint himself... Flint is also looking for my dead body, and I'm planning to have it delivered right to his doorstep. Another underworld figure, Almsmaster Quandt, lives a few streets from Grunt's mansion, and he is said to be my spitting image, an uncanny resemblance. Wonder if Flint will recognise the difference... well, time to find out. Sometimes the only way to deal with a hornet's nest is to kick it over. This night, I am back in the middle of it. I have already run into a pair of sentinels, but I slipped into a small garden and jammed the lock behind me with a bit of wire. Hope they don't raise the whole neighbourhood, or this will be over real quick. Time to get moving." Download links: Mega (200 MB)mission downloader!***Performance warning***: as usual, this mission pushes the limits a bit (although less than PD2). The hardware requirements exceed the TDM baseline, and the loading time is fairly long. Optimalisation should be credited to Bikerdude, while the remaining problems are all mine. High-resolution player map (for printing, etc.): Notes: Erasing the Trail is intended to be an open-ended city exploration mission, where you can approach your objectives from multiple angles, and discover multiple solutions to complete them; some more straightforward, some more obscure.Gerald Foxley is a rank amateur who can't pick locks. You will have to find alternate means to break into places.There is no poll to rate the mission because I do not believe in them. Your comments are welcome in writing, however!You can find my concept art in the PK4 file. These images obviously contain heavy spoilers.This mission series predates, and is thus unrelated to the Penny Dreadful TV series. Special thanks: to our testers, Aluminumhaste, Kingsal, Nbohr1more, Oldjim, Skacky and Premier; gigagooga for several new ambient sounds, and sound conversions (Fabrice Hautecloque from Ishar III, tension loops from Golgo 13: the TV series);Yandros, Bikerdude and Goldchocobo for voice acting;epifire! for custom models;The Canon Texture project for texture work.
×
×
  • Create New...