Jump to content
The Dark Mod Forums

Oktokolo

Member
  • Posts

    852
  • Joined

  • Days Won

    1

Posts posted by Oktokolo

  1. Found the cause for the doors not opening:

    Spoiler

    I have "open doors on unlock" set to "no" in the gameplay settings because i like to open doors carefully.
    The code lock doors only open for players which have this set to yes (the default) because the command that would open them, is commented out in the script.

    When you remove the two slashes in line 58 of scripts/tdm_simplenumberwheel_lock.script, that two doors should open for all players regardless of settings.

    • Thanks 2
  2. This control structure isn't really documented in the wiki and seems to run its code block each frame (what a surprise). It looks like the loop can be exited with break.

    But if a function containing an eachFrame code block is called multiple times somehow, could that actually lead to multiple instances of the eachFrame code block running in parallel every frame?

    Should i use an alreadyRunning flag for eachFrame blocks that can somehow be started by the player (by trigger, stim, objective...)?

     

  3. On 2/20/2022 at 6:11 PM, Wellingtoncrab said:
      Hide contents

    Well that is not good - no idea what would cause this, but there is custom handling with the combination locks and I wonder if this is breakable in some way. Though the fact it worked with the safes is interesting in that light. If you recall the codes you entered and don’t mind messaging them to me I can at least verify if they are correct.

    Spoiler

    I don't remember the codes. But i remember, that i just bruteforced the door code locks, while i easily found the combinations for the safes. I am pretty quick with my trackball and the number wheels react very fast. So while i carefully dialed in the safe combinations, i speed-clicked through all possible combinations for the doors and definitely overshoot first for both doors.
    Maybe, the code locks have a chance of breaking when you quickly dial over the correct combination.
    I consistently heard the door rumble every time, i dialed back to the correct combination. I also verified my brute forced combinations to be correct using the spoilers after reaching the plague ward exit to the abandoned mansion in the lower right corner of the start map, because i wanted to know whether there is some other condition to meet before i just call it a bug and noclip through.

    All in all, it isn't a big deal. Writing robust code is pretty hard and i know how to noclip.

  4. For threats to the free world to exist, there would first have to be a free world.

    But such a thing doesn't exist. We got the current big imperium with its elite caste. There are the remains of former imperia with their elite castes. There are their vasal states. And there are the buffer states - these are held in constant war or at least at the brink of war.

    I am lucky to be part of the current great imperium, because i like the luxury it brings. But i am aware, that all that is founded in what effectively still boils down to exploitation of the unlucky.
    Our simulation of democracy is a hard sell to those who produce what we consume.
    And it is an even harder sell to whose who don't.

    I still expect actual democracy to emerge when the energy scarcity problem is finally solved. The hunger for cheap energy is the actual cause of imperialism from the ancient times till now. So solving that should finally make an actually free world possible.

    Maybe, nuclear winter comes first. Maybe not.
    Play Iris, the best mission made for TDM, and forget what you can't change for a while...

    • Thanks 1
  5. beta210-08 isn't visible for me in the installer - last one shown is beta210-05 (which also is installed).

    And i have the gut feeling, that dropping bodies while being crouched is even more often denied than in previous TDM versions.

  6. There are more than 150 TDM missions - and this is the best of them.

    I initially thought 300 MiB of normal maps in TGA format additional to the 300MiB of DDS textures to slightly be on the excessive side. But as the mission is of excellent visual quality not seen before, i guess, that they are worth the space.

    Spoiler

    I had to noclip through both code lock doors though. They made a sound as the correct combinations where entered, but didn't open. The safes worked fine.

    And i did not find any of the alternate endings suggested to exist in the spoilers, so i feel like missing out.

     

    • Like 1
  7. On 2/16/2022 at 11:50 AM, Acolytesix said:

    When will the final release of 2.10 arrive? Waiting anxiously on beta testing & just playing at all. I want to build my 1st FM, but I want the right version 1st. Will Dark Radiant be updated as well?

    It will get released when no more (new) bugs are found and all the found ones are fixed.

    But TDM and Darkradiant both are pretty stable.
    So just play and map in the Beta for now.
    And if you are one of the lucky few to find a new bug - report it and the devs will fix it.

    • Like 1
  8. 18 hours ago, duzenko said:

    It's capped to min of 3, which was deemed as "ought to be enough for anybody"

    Well, we all get older and our eyes can't read the fine prints anymore...
    But 3 is still twice as large as what i would call small at 2160p on a 32" screen. So it probably is three to four times greater than small for the majority plaing at 1080p.

    So while the restriction is okay, it also has no reason to exist since 2010.
    And even the most conservative standard should go for at most 4 (also since 2010).

    😛

  9. Wow, that is quite an impressive collection of picks to start with. You should train with the the half diamonds and hooks and use the snakes only for a quick success when frustration has built up too much.

    There are plenty of tutorials and videos on the internet on how to make your own tension wrenches (probably earlier) and picks (probably later) when your lock collection grows and you need differently sized tools.

    I made my first picks and wrenches from small saw blades using a cheap Dremel knockoff. With that tools i got most standard tumbler locks open eventually.
    I was quite a cheap skate back then and therefore specialized on padlocks, because collecting them by unlocking often is less risky...
    Luckily i don't really have the patience and feel for the sport and lost interest after a few weeks.

    Later i impulse-bought a cheap set for a few bucks at a convention, but it did not get as much use as my old tools.

    Have fun. Test for yourself whether low or high tension is your thing.
    And watch the Lockpicking Lawyer - he is good at the sport.

    • Like 1
  10. I am getting into TDM scripting and use the console for quite some print-debugging. But the text size of that console leads to lines often being wrapped, which makes scanning the output for oddities harder.
    Half the current text size would already be fine while still way bigger than needed.

    So how do i turn the text size down?

  11. 1 hour ago, stgatilov said:

    I think tdm_user_addons.script was added specifically for this, although the problem of having several mods at once is sort-of unsolved...

    It isn't mentioned in the wiki, but looks like the perfect place to put the mod manager initialization code, which then should include all files matching the glob pattern "mods/*/script/init.script".

    Is it possible to include scripts like that and is there a way to run a function right after it got defined in a freshly included script?

  12. 3 hours ago, nbohr1more said:

    To my understanding, you would use the "script/tdm_custom_scripts.script" parent script to define overarching behaviors. This inherits from tdm_main.script . If you cannot use the tdm_custom_scripts.script file to override in a satisfactory way, you may need to do what the wiki advises against and include a modified tdm_main.script in your mod pack.

    Nah, can't override tdm_custom_scripts.script as the comment inside it explicitly states that it is meant to be overridden by FMs - which would then disable my mod.

  13. 56 minutes ago, McPhisto2051 said:

    Doesn't seem to work anymore, all videos get the avc codec which sucks like hell...
    Atm the only way as a small youtuber to get the vp9 (the much better quality)-codec is to upload a video in 1440p with 60 fps.
    I'll keep that in mind for the next mission Ill play.

    Did you try uploading it as vp9?
    Maybe they don't reencode if it already is in the final format.

  14. Funnily, while i am against save restrictions, i am actually pro safe rooms in the traditional sense of game design: Rooms or locations that are safe for the player to rest in for a while before continuing the adventure. There normally are some of these in most missions already and they would be the perfect location for an auto-save trigger.

    Would definitely like to see more of these - especially the consciously added ones that tend to be nicely decorated and feeling like a safe space in a grim world.

    • Like 1
  15. 1 hour ago, peter_spy said:

    @AluminumHaste again, first off, it's/can be an optional game mode or difficulty level, not something you have to do. And you're wrong about getting your skills too. The only difference between the way you got them, and the way you can get them in a game without saves is time. Nothing else. How do you think people master games like Dark Souls?

    The elephant in the room is player types. Some get their fun from overcomming frustration - others don't play games that frustrate them. I am a less-frustration-is-better player. You seem to like frustration - a lot...

    That is fine and in TDM we both can have fun playing missions having save restrictions on any level now.
    I fixed the player type difference with a mod which basically just reduces the time wasted per player mistake (if the player doesn't forget to do the proper savescumming).

    • Like 1
  16. 12 minutes ago, Goldwell said:

    That's a win / win situation. It's a win for folks who want to play with save rooms as they have the choice to, and it's a win for folks who don't as they can play on normal or expert with zero restrictions.

    Nah, sacrificing the noob difficulty isn't nice. New players are probably very happy about it existing.
    I also removed any reason for having separate save restriction difficulties with this mod.

    And it doesn't end here: Other commonly used restrictions are related to knockouts, loot, kills, ghosting... It isn't feasible to make separate difficulty levels for all combinations of the common restrictions authors like to flavor their missions with.

    In the long run, a settings screen would be nice. But players who don't like forced whatever will probably always choose to disable whatever and therefore a collection of cheat mods only disabling a single type of whatever while working fine with any mission is probably the more feasible option until such a generic settings screen exists for authors to use.

×
×
  • Create New...