Jump to content
The Dark Mod Forums

Search the Community

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

  • 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. Still spreading the word about TDM on forums to new peops... Funny to see people say "Awesome, I loved playing Thief back in the day!"

    1. Show previous comments  2 more
    2. kano

      kano

      Yes it was in a discussion where someone was saying how unhappy they are with the way game companies grant themselves permission to do whatever they like to your PC and personal info today. I pointed out that giving up games completely is an unnecessarily overkill solution when there are free games like TDM to play.

    3. Epifire

      Epifire

      Honestly the mod/Indie genre is still really booming right now. And they aint got no reason to do shady invasive privacy bs.

    4. Petike the Taffer

      Petike the Taffer

      What Epifire said. :-)

  2. Me neither... I recently (few months ago) played through TDS again (I think for the fourth time in total). Still great. Especially with the Sneaky Upgrade.
  3. I am pleased to announce the release of our new fan mission, The Hare in the Snare: Part 1 Mission type: City Missions + Inn/Tavern Description: People are being abducted off the streets and a Watch Captain requires the services of a thief to help him find out why. Download link (v1.0.2-release): https://drive.google.com/file/d/1HYvM_u56wDB16uIlb7qgS_q3P24V69MO/view?usp=sharing Credits: Mapping and original characters: @Frost_Salamander Story, readables, custom models, voices and cinematics: @Kerry000 Menu title track produced and mixed by @JackFarmer with selected gigagooga sound samples Beta testers: @Cambridge Spy @Zerg Rush @Amadeus @Acolytesix @Lzocast @wesp5 @nbohr1more @Kerry000 @ate0ate @Wellingtoncrab @prjames Additional thanks: @Dragofer, @nbohr1moreand @peter_spyfor technical help @Springheel for the modules and tutorials @kingsalfor allowing @Kerry000to abuse his manbeast everyone else on Discord and the TDM forums who offered assistance Requirements and notes: This mission requires TDM 2.09. Earlier versions will probably work but you might see one or two missing models. You may experience some FPS drops in some areas with lower-end hardware. Mid-range and above should be fine. If you have issues, I highly recommend you use shadow maps instead of stencil (settings -> advanced -> shadows implementation). It makes a big difference. For 'Hard' and 'Expert' the light gem sensitivity has been increased by '1' (meaning easier for AI to detect you). Screenshots:
  4. I'd like to better understand what you want. The design of dragging bodies is to hold frob (key down) to drag and release frob (key up) to let go. That way it's impossible to walk away while unintentionally dragging a body. Plus, it's quick to grab and move several body limbs in rapid succession. This is thought to provide a better experience, especially for new players. Towards the beginning of this thread, I created a "tdm_frobhold_drag_body_behavior" cvar. https://forums.thedarkmod.com/index.php?/topic/22198-feature-proposal-frob-to-use-world-item/&do=findComment&comment=487580 "tdm_frobhold_drag_body_behavior", default:"1" Which drag body behavior? 1 --- on frob key up, drop body (limb). 0 --- on second frob, drop body (limb), TDM v2.11 (and prior) behavior. That cvar was removed shortly afterwards, because it was said that it wasn't needed. With that cvar set to 0, a second frob would be required to let go of the body. Is that the behavior that you want? If so, I can add that cvar back. Also, I saw elsewhere that you want the ability to revert back to the old way. If you mean that all of the controls match TDM 2.11, that can be done with "tdm_frobhold_delay 0" and there will be a menu setting to disable it as well.
  5. Since it already has been mentioned in the forums, I'd like to announce a small project of mine. A few weeks ago I was playing Legend of Grimrock and it struck me that their level design is extremely simple and modular, and yet, the player can spend quite a lot of time in the game. And it looks pretty, too! So I wondered if it wouldn't be possible to create a modern "Dungeon Crawler" (solve puzzles, fight monsters, collect loot, progress your character, upgrade your equipment) type of game inside the TDM engine. The engine already supports a lot of things one needs for this, and the overal structure and assets work, too. And with prefabs, one might get the level layout done quickly. However, building a few test prefabs in DR is easy, but creating a full mission out of them is quite painful. Not only needs it a lot of planning, but you can also spend a lot of time "upgrading" things later on. For instance if you later want to add a grime decal to the walls, you have to revisit the entire map. Even worse is if you find out later that your block size must be bigger or smaller. So the idea was born to create a sort of framework that can assemble missions from prefabs. Preferable while getting the description of the mission from a text file. So far, this has been a lot easier than I thought. Here is what I got working so far: Overview: You can describe your mission in a (Unicode) text file. This contains overall options, different locations (each location can have its own ambient light, music,name, fog), and the connections between the locations. Each location can have multiple "floor levels", these are stacked on top of each other. The config file also specifies which symbol means "use this prefab". It is also possible to specify links (per location), which means you can say "this lever with the symbol A opens the door with the symbol D". The framework reads the prefabs, and then positiones them in the map. It also glues all the locations together, adds location_info entities, a player start, an exit, and an objective to reach the exit. The resulting map is then enhanced with script objects (all nec. assets are bundled together), and automatically dmapped via TDM. Everything then is packaged together into a working .PK4 file. My demo map takes about 20 seconds, where 15 are dmap. In addition to the "basic" stuff I also managed to get a few things working, like a pressure plate, portcullies, and also made some puzzles. Oh, and per location fog (fading from location to location). Different difficulty levels are also supported, one can specify "this prefab appears only on easy" etc. You can find more info and screenshots and demo here: http://bloodgate.com/swift/ There is also a developer diary where I will be posting interesting entries from time to time. Here is an DR shot of a sample level, consisting of small modular prefabs and one large (the large hall on the lower left): The next steps will be to add more randomness (either static at map generation, or at runtime, so the map is slightly different each time you replay it). Also, while it is already possible to "overlay" prefabs (e.g. "for this location, look first here before falling back to the default"), it is not yet possible to "reskin" prefabs. This would be something which is impossible in DR (you cannot really reskin worldspawn brushes, unless you live with the fact that it is all manual For now I'm quite excited!
  6. Bit worried about Firmament because I'm a big Myst fan, but the Steam reviews are currently "mixed" due to bugs and jank and Cyan don't seem to have worked out how to get into a groove for a while. Even their last game Obduction showed promise but didn't hit the mark compare to older Myst games. I dunno - then again there aren't many devs making these types of games anymore so maybe I should be more forgiving. On the other hand, the state of the modern gaming industry makes it really, really easy to hold onto older hardware and not worry about upgrading until it's absolutely necessary. I play a ton of older games anyway so whatever, if I upgrade at some point the game will hopefully be patched and improved by then anyway.
  7. Better downgrade your Netfux subscription to the 1080p one. Better yet, upgrade to p*racy.
  8. Oh man. I have a lot to say about Invisible War but I think this dude summarizes most of what I think much better than I could explain: Also if you do intend to play Invisible War at some point, please for the love of God, install this unofficial patch after installing the game: https://www.moddb.com/mods/deus-ex-2-visible-upgrade/downloads/visible-upgrade-full-edition The quality of life improvements are so significant it's basically mandatory on modern systems. It adds widescreen resolutions, removes the pop back to desktop between level loads/quickloads, adds some really good community texture packs, and so on. If you go and look up screenshots of Invisible War, it's actually quite fascinating just how much variation there is between pre-release screenshots made during development and what was actually released. There is a particular screenshot that shows what is clearly a PC-centric HUD kinda similar to that in the original Deus Ex, which makes me think the decision to make the game cross-platform with the Xbox was not in the original design and perhaps came from Eidos management. Unfortunately the exact screenshot I remember well but seems to be partially lost to the Internet as it's REALLY hard to find. I'll keep looking. EDIT: This isn't the image I'm looking for but it does show the HUD I'm thinking about. If only they didn't experiment with the eyeball HUD they ended up with...
  9. Just finished the IPB Board upgrade!

    1. Show previous comments  1 more
    2. modetwo

      modetwo

      @Melan: From your profile page, or click your name at the top-right corner of the forum screen (all at the top)

    3. Springheel

      Springheel

      Hey, you can comment on status updates. Cool!

       

    4. STiFU

      STiFU

      Good stuff. Thanks Modetwo!

  10. I've upgraded IPB to the latest stable version, and since this was a major upgrade (from 2.3.6) I also had to re-do the forum style. Most of the new stuff is in place, but I bet that the logo will be changed. One of the many new features in version 3 is rating of posts and also a "report spammer" ability which will make it easier to single out spam bots and ban then at sight. Hopefully this will stop some of the spam threads we've seen recently. Make sure to empty your browser cache if you're experiencing any problems. And please report any errors etc in this thread. Cheers, ~m2
  11. Yes, you are still viewing The Dark Mod Forums I've just finished the upgrade of our IPB Board Forums to the latest release. Packed with new features, rewritten code and all that. Have a look around. The skin is currently the default one, but will sooner or later be converted to a darker skin, to fit the Dark Mod universe. Also note that the forums have been moved from http://modetwo.net/darkmod to it's own sub-domain: http://forums.thedarkmod.com - all forum links will still work tho, thanks to Apache's rewrite-plugin. Please report any bugs, requests and comments in this thread. PS: The forums will run a bit slow the first hours as the cache is being rebuilt.
  12. Not to be a nag, but I was thinking about the columns problem. If you go to the view source tab in the wiki article: https://wiki.thedarkmod.com/index.php?title=Fan_Missions_for_The_Dark_Mod&action=edit The raw table data is accessible directly: |- !align=left|{{TDM-FM|written|Written in Stone}} |Bikerdude, Amadeus, Dragofer |{{Forumlink|https://forums.thedarkmod.com/index.php?/topic/21265-written-in-stone-beta-210-only-20220128/}} |2022-01-28 |338 |Yes |Yes |CCC 22, Elixir |City Missions |Undead, Horror Themes |- Each pipe character represents one of the columns.
  13. https://www.pcgamer.com/intel-boot-guard-private-keys-have-reportedly-leaked-compromising-the-security-of-many-computers/ All I want for Christmas is the ability to lock down the firmware on my motherboard with a write-protect jumper or switch so that it cannot be changed or hacked by random software without me knowing. Firmware is a very special thing; it should be as small and simple as possible, not easy to change unless absolutely necessary, and the user should have assurance that nobody can mess with or reprogram it but them. But instead, we are moving to a world where you have to upgrade firmware every time Netflix or Disney say so, and if the power goes out half way through the process and your equipment gets wrecked as a result, "here's a quarter, phone someone who cares".
  14. Did anyone test the Deus Ex: Invisible War ESRGAN Pack? Appart from enhanced textures: Same guy also created a similar upgrade for Thief 3.
  15. Terrific! The beta test thread is up: https://forums.thedarkmod.com/index.php?/topic/22238-beta-testing-the-spider-and-the-finch/
  16. Feedback wanted, please share your thoughts and suggestions: I'm still thinking on how I'm going to implement skill / augmentation upgrading. I've already started implementing the boosts themselves and they're proving fairly easy to do, however the system for the player to choose what to upgrade is going to be tricky. So far I had several ideas coming to mind but none seems to really fit. I initially thought about using loot as skill points, making it so that pressing the use key with the loot inventory icon selected would open a menu or upgrade a slot based on the direction the player's moving in. I could override the grid inventory GUI entity, but do I really want to do that especially in the initial stage? There must be a better way. I decided I'd like to go for an inventory item per augmentation, like the lantern or the health potion and such: Something the player picks up from the world, selects in the items menu, then uses to upgrade. There should be no functionality issue with this approach... except for one big problem: How on Earth am I going to decide where those items spawn?! This mod isn't intended to ever become default and there's no way the creator of every FM is going to update maps and place my items throughout the world. Thus I need an automated way to make them appear in random locations... one that's logical and makes sense, doesn't ruin the gameplay, and is compatible with all FM's. The first approach I thought about is looping through common entities and giving each type of upgrade a random chance of appearing on various objects. For example some upgrade orbs could be found in the flames of a fireplace, other booster chips stuck in paintings or large loot items. This method is unpredictable and feels very questionable. So I thought of yet another way: What if I make them possible to loot off AI? They could be found as implants in the backs of AI's heads, different augmentations specific to different person types (some for guards, others for builders, some for nobles, etc). It shouldn't be an issue to loop through all AI on the map then probabilistically spawn an item and bind it to the right joint! But I'm not sure if this might ruin characters in some FM's, it too is a questionable method. The simplest way would appear to be making them randomly spawn in some chests or drawers. It could be done: Every compartment contains an atdm:target_set_frobable so I could easily loop through all those entities on the map and choose to spawn an item in the middle of one. In this case it would look logical, however I'd have no control over where they appear. For example why would an upgrade chip be in a poor taffer's chest, considering such a thing would be considered very expensive? I'm at a loss and could really use other people's ideas. What pattern and script functions would you recommend I use for automatically spawning small inventory items, making them appear in logical places on maps where they haven't been placed manually? There must be a good pattern and I feel I'm getting close, but I still can't find a way that truly feels right.
  17. Welcome to the Dark Mod forums MarsManon! Thank you very much for the kind words about SLL, it's always nice to hear We all worked real hard on bringing Grayman's map to life and I'm glad you enjoyed it
  18. I was so enchanted by this FM, I had to sign up to the forums the same day I finished it to come thank the authors Genuinely, truly incredible work! I was so overwhelmed in places that I resorted to just shouting joy at my monitor two, three, maybe four entirely separate times while playing. Exploring, puzzling, finding something new, trying to use it, and finding it does a whole new, separate, wonderful thing! There aren't enough words inside me to describe the feeling. It was breathtaking. I don't have any specific feedback that hasn't come through this thread before Thanks so much for making this, for all the inspiration and ingenuity and effort it took. If I never play another level this good, in any other game, in my life, I'd be fine with that.
  19. Hi guys, through the "cheats" topic I got the idea, that it would be quite useful, if there were tags for missions (the post was about removing the killing restriction in some missions to suit the prefered play style). I don't know how easy or difficult this is, but with them, it would be quite convenient to pick missions with playstyles, environment, etc one does want to use. This could also be expanded to other mission properties. I remember a discussion about climbable drains, handles on doors, that cannot be picked and other things the map author chooses for himself. That way these things would be clearer and as I said before, it is easier to choose missions with playstyles that suit oneself. What do think?
    1. Tarhiel

      Tarhiel

      Awesome, congratulations!!! :o

    2. Bikerdude

      Bikerdude

      Yup, all the remianing bugs were ironed out, so it nigh on perfect now.

    3. AluminumHaste

      AluminumHaste

      version 2.1 is now uploaded to mirrors ready to download.

  20. OK I think I've got to the bottom of this. I've created this forum thread (with bug report): https://forums.thedarkmod.com/index.php?/topic/22221-bug-drowning-ai-in-shallow-water/ I can apply a workaround, although it won't be perfect and the bug itself needs fixing in the engine. There are a few other things that need fixing so will put an update together soonish.
  21. Hi I'm thinking of buying a new pc. Or at least mobo+cpu+memory (and possibly cooler). Last time I bought this combo was 10 years ago, so I thought maybe it's time for an upgrade.. I was thinking of going for AMD Ryzen, do you think it's currently really worth it to go for an AM5 cpu? All in all I find it kind of expensive and AM4 cpu's are still good performing, so I'm not sure I need the newest tech. On the other hand going for AM5 is more future proof I guess.. Also, I was first thinking of going for an X3d processor, but then gathered I'm actually not gaming that much (and not high demanding games) and the gpu will stay midrange anyway and thus be the bottleneck ? I wonder if the price of the 5800X3d will go down when the zen4 variant arrives. Currently thinking about Am4 combo: Ryzen 5700X 32 gb ram (3200mhz) Asrock B450 Steel Legend My current (Cooler master) cpu cooler is good enough I think, but I don't know if I still have the needed AM4 attachment (curently using it on an Intel cpu).
  22. If any mappers have encountered weirdness with kill objectives not working with drowning AI, I think I've found out why. I don't think it would be a particularly difficult one to fix either. I've raised this bug report: https://bugs.thedarkmod.com/view.php?id=6323 Some context here: https://forums.thedarkmod.com/index.php?/topic/21837-fan-mission-the-lieutenant-2-high-expectations-by-frost_salamander-20230424/&do=findComment&comment=487316 I think this is a bug, but just raising here in case some people think otherwise.
×
×
  • Create New...