-
Posts
399 -
Joined
-
Last visited
-
Days Won
13
Everything posted by grodenglaive
-
Fan Mission: The Spider and the Finch, by grodenglaive
grodenglaive replied to grodenglaive's topic in Fan Missions
Thanks, I think Halloween may have influenced the image, but the FM is not spooky. -
Fan Mission: The Spider and the Finch, by grodenglaive
grodenglaive replied to grodenglaive's topic in Fan Missions
wow, thank you! -
I'm happy to present my first FM, The Spider and the Finch. There may be a spider, but no ghosts or undead. It should run a couple hours. It's now available on the Missions page or the in-game downloader. Many thanks to the beta testers Acolytesix, Cambridge Spy, datiswous, madtaffer, Shadow, and wesp5 for helping me improve and making the mission to the best of my abilities. This would not be have been possible without Fidcal's excellent DarkRadiant tutorial. Thanks also to the many people who answered my questions in the TDM forums. Cheers! 2023-12-13 Mission updated to version 3. Fixed a bug where the optional loot option objective was not actually optional. Updated the animations for Astrid Added a hallway door so the guards are less likely to be aggroed en masse. 2024-05-31 Mission updated to version 4. Adjusted tower guards Added voices for conversations Improvements to objectives 2024-07-12 Updated to version 5. added dialog subtitles small bug fix
- 107 replies
-
- 22
-
Nice Halloween mission! I ran into a small bug where the headless guy got stuck at the top of the stairs going in tiny circles, so there was no way to get past him. I had to retry from a previous save. I'm not sure what triggered it; possibly collided with a spider?
-
Yup, too hard
-
The water might put out the fire, but it's Worth a try. I did that for the balcony toss. (edit) it does put out the fire:
-
It didn't work. I tried a couple of different trigger brushes pointed to atdm:target_callscriptfunction, but the AI body just won't won't trigger them so the script is never called. I noticed in the description for trigger_entityname, it says "... Only works on entities that can enter trigger under their own power...if player drops them, there is no effect." This seems to be the case for the other triggers as well. I think I'm out of luck on this one, but it was just a nice-to-have, not important.
-
Thanks, I'll give it a shot.
-
Adding one last tidbit to my fm: it might be nice to be able to kill an ai by sticking their head in the fireplace or throwing them off a balcony (where fall damage is insufficient). Unfortunately "trigger_hurt" does not affect an AI that is unconscious. Is there any way around that? (edit) also tried it with stim/response with the same result: no-effect. only drowning seems to work on unconscious AI
-
-
Yes. Well it sure had me stumped.
-
-
OMG it worked!
-
Is there any way to change the light radius on the 2 candle wall sconce (atdm:sconce_2candles_rigid)? I've tried all these spawn args. Nothing has an effect. flame1 and flame2 are the pos_attach names in the inherited properties. I thought that would have done it for sure, but no.
-
And I just did. Short , but sweet. Nicely done. 10/10 on that intro and I like how you snuck in the Skyrim reference;)
-
Beta tester request for my first FM: The Spider and the Finch
grodenglaive replied to grodenglaive's topic in Fan Missions
Thank you, I was surprised I came up with that name actually! -
Beta tester request for my first FM: The Spider and the Finch
grodenglaive replied to grodenglaive's topic in Fan Missions
Terrific! The beta test thread is up: https://forums.thedarkmod.com/index.php?/topic/22238-beta-testing-the-spider-and-the-finch/ -
I just finished it. That was a really fun mission! Interesting mapping, I really liked the layout. Cheers!
-
Beta tester request for my first FM: The Spider and the Finch
grodenglaive replied to grodenglaive's topic in Fan Missions
Glad you're feeling better. Yes, I was surprised to see three new ones out. I'll have to start one tonight. -
Beta tester request for my first FM: The Spider and the Finch
grodenglaive replied to grodenglaive's topic in Fan Missions
Excellent, thank you! -
Beta tester request for my first FM: The Spider and the Finch
grodenglaive replied to grodenglaive's topic in Fan Missions
I can speed run it in 42 minutes on expert, so probably a couple hours for the uninitiated. -
Nice! Congrats on your first FM. Looks like a busy season for TDM.
-
Congratulations on your first release, I look forward to playing it.
-
Great idea. I just added this to my upcoming mission. chatGPT helped me with the script. Works like a charm. vector playerPosition; vector riversoundPosition; void sound_follow(entity zone) // have river sound speaker ($river_sound) follow the player along the river when in the yard { playerPosition = $player1.getOrigin(); riversoundPosition = $river_sound.getOrigin(); riversoundPosition_y = playerPosition_y; // river runs north-south, only need to change y $river_sound.setOrigin(riversoundPosition); sys.wait(0.2); thread sound_follow($player1); } void kill_sound_follow(entity zone) // stop river sound following player when they leave the yard { sys.killthread("sound_follow"); }