Jump to content
The Dark Mod Forums

Dragofer

Development Role
  • Posts

    2631
  • Joined

  • Last visited

  • Days Won

    157

Everything posted by Dragofer

  1. The next new entity type for TDM: the audiograph. The model has been made by Epifire and was first seen in use in Goldwell's FMs, but with the new dedicated entity definition and scriptobject it's now easy to use and supports various new features. Introduction from the new wiki article It will be released with TDM 2.11 (rev 16646), but it will also work on earlier versions and can be downloaded here: Google Drive.
  2. Nice, this reminds me of Full Moon Fever (a mission I think of very highly).
  3. The code reads out snd_ spawnargs every time a sound needs to be made. What you can do is: Every frame check what entity the player is grabbing. If there is an entity, cycle through all spawnargs with the snd_bounce prefix, temporarily store them by setting them as new spawnargs with a different prefix, then set them to "silence". If the entity is no longer the currently grabbed entity, restore the spawnargs. Apart from the TDM Script Reference, this section of the A to Z Scripting guide is also relevant.
  4. Petike already put in work into listing custom assets on the wiki, i.e.: https://wiki.thedarkmod.com/index.php?title=Sound_addons_repository. I don't think it includes scripts, though. Maybe the issue is there should be an easier way to find these articles on the wiki.
  5. The easiest way is to make a custom particle that has a much shorter lifespan so it stops before passing through the brush (requires trial and error with the duration setting in the particle editor). You can use the console command reloaddecls to quickly reload a particle ingame after a change in the DR particle editor. The other way is more complex to setup and only really needed if you want to make a rainy map. You need a custom version of the particle with specific keywords and settings and then compile your map in a special way that generates 2D textures representing your mission, like for this ship stern section: The textures are colour-coded to represent how high the obstacles are, and automatically sets the lifespan of particles above it to stop just before hitting that obstacle. https://wiki.thedarkmod.com/index.php?title=Particle_collisions_and_cutoff
  6. Greebo was probably in the middle of changing how the interface works. It's best to download the artifact builds that are attached in Github every time a bugtracker issue is resolved.
  7. Speaking of rendering issues on various AMD setups, are you also seeing this - as per 5502 - which I presume to be incorrect depth testing of surfaces? It's particularly egregious for the prefab chooser: But also is an issue in the regular camera view, i.e. most prominent for the carpets in this shot: Enabling the far clip plane makes this worse in camera view, such that it looks like in the prefab chooser: This is on an AMD RX 460 with the latest driver and AMD Radeon software installed - the issue has always been like this for this PC.
  8. My view would be: If the author is still reachable, ask for permission unless they already gave blanket permission. If the author is not reachable, check whether they stated anywhere that they're opposed to their work being reused (i.e. in the FM credits). If not reachable and no statement was made, I'd say the work can be reused if you give abundant mention of the author in the credits in the release thread and in the FM package. The vast majority of authors (who don't explicitly say they forbid reuse) are probably fine with that. I'd distinguish between reuse of assets and map sections, however. The latter can easily be perceived as plagiarism, so it should always require close coordination with the original author if you want to use parts of their map in your own.
  9. Yes, Ive just sent the link to the current campaign archive to you 2.
  10. I think it was a small part that I split off from the main map because NeonsStyle was only interested in a specific aspect. It should be ignored. Brush/patch/entity count is an interesting statistic to have, too.
  11. Would have to know whether he's most fluent in Sindarin, Quenya or Beleriand - it's pretty hard to get any clear response from him, though. Hiring developers is very expensive (see i.e. the recent Kurshok thread A Question Regarding Paying Others for Mod Remakes). Good thing everyone involved with developing TDM and making FMs does it as a passion project.
  12. We were wondering for a while whether this user was a troll (i.e. launching his own contest in the middle of the current contest or the incoherent thread about tech support to run TDM on a Windows XP virtual machine even though he can already run it fine on Win10) or just someone with a severe language barrier (English seems to be his native language). Some of the stuff we saw today was the last straw to suspending his account.
  13. No, I returned it a while ago after making Perilous Refuge from part of it. NeonsStyles last expressed an interest in it.
  14. We've had quite a lot of adoptions in recent memory: Perilous Refuge by me from the Crucible Campaign Black Mage by JackFarmer from Grayman Seeking Lady Leicester by bikerdude from Grayman Away 0 by Geep from Atti Baal seeking to adopt White Rose Hotel from Skacky/Springheel I'm seeing occasional updates on Blackheart Manor by bikerdude from Dram Occasionally people ask to look at abandoned maps, i.e. NeonsStyle showed an interest in what remains of Wrecker's Reach some time ago Maybe he didn't get around to it yet... in any case, it'd be best if more than one person had access to the abandoned missions storage in case someone has an accident or goes AWOL. They could be put on the SVN betamapper repo, for instance.
  15. Would be interesting to also see a shot of the mission in DR too for mappers to get a better idea of how much there is and how dense (brush, patch and entity counts would be good too). @Baal Have you tried sending a PM to fllood? Simply pinging them with @ only gives them a notification when they log into the forums, while a PM will also get sent to their email.
  16. It looks like it's not the latest version of the FM (v 1.2) because the console reports the .pk4 as having 1752 files, while the .pk4 on missions SVN has 1590. One of the things I did for v1.2 was to clean up all FM-caused console warnings. As of TDM 2.11 the core assets should no longer produce warnings either.
  17. A background image is useful if you're closely working from a reference image to create shapes. I use it quite often in Blender, but haven't done so in DarkRadiant yet. That said, I've only discovered its existence like a year ago and would probably have used it heavily when I was still in the business of modelling ships in DR from line plans and blueprints. I can imagine it being useful for various other DR-based modelling, too.
  18. That'd be flood. @Springheel was the one who worked on it last so he could fill you in on the challenges involved with working on that FM.
  19. If players can prevent the alert by replacing the loot item with a fake or sealing it off from view then it would be fair to add to the stealth score. If, on the other hand, the absence marker is just added willy nilly to any exposed loot pieces for realism and challenge, then that would brick a ghost run because youre expected to take it all. That would imo fall in the same category as AIs noticing they were pickpocketed.
  20. I've already debugged the cause of the issues and wrote about it in the relevant bugtracker issues, but it's going to require some reworking of the stealth code that someone will need to dive into when they get the time and energy. Just changing the logic of the existing functions wasn't sufficient to cover all the cases in my experiments.
  21. Another definition is that a spawnarg is a property you set on an entity like a lamp, an AI or a crate: how much health it has, what sounds it makes, whether it casts shadows (not all entities support all spawnargs). The easiest way is to set it directly on an entity in DarkRadiant. They can also be set in .def files, which is useful if you want to create a new type of entity instead of tweaking existing ones. Anyway, you should definitely follow a video tutorial:
  22. I don't think I'll be doing much in the way of mapping until the end of this year, but I'd be happy to assist contest participants with scripted effects.
  23. The best place to look would probably be creative commons online repositories, especially 3D scanned models from museums (which however require some processing to get down to a reasonable tri count for a game). Otherwise, Goldwell has a bear rug. A different approach could be to pose the werebeast in Blender and export it as a model.
  24. Sure would help improve the list on ThiefGuild if some more people rated the TDM missions. It seems the website is mainly used by Thief players at the moment.
×
×
  • Create New...