-
Posts
22 -
Joined
-
Last visited
Everything posted by RedNoodles
-
So, what are you working on right now?
RedNoodles replied to Springheel's topic in TDM Editors Guild
That looks amazing. -
stealing the scroll was so satisfying!
-
10/10 mission.
-
So, what are you working on right now?
RedNoodles replied to Springheel's topic in TDM Editors Guild
-
So, what are you working on right now?
RedNoodles replied to Springheel's topic in TDM Editors Guild
Hey everyone. hope your new year is off to a good start. lately I've been taking a break from mapping and trying to learn some Blender... nothing complicated, simple stuff like bottles, boxes, etc. I followed a tutorial on youtube and made this. I put one of the wine bottle textures on it. then I tried to import it into TDM. surprisingly the scale was just right. Only problem is that I don't actually know how to apply a texture to it. Am I supposed to export it as an .ase or .lwo? If I export it as .ase I can then open the file in wordpad and try to mess around with the following definitions which I assume have something to do with the texture *MAP_NAME "...." *BITMAP "\\base\..." I'm not sure what these control though. Are they supposed to point to a texture file in the darkmod folder? -
The Black Mage (Grayman, JackFarmer & Friends), December, 24th, 2021
RedNoodles replied to JackFarmer's topic in Fan Missions
Congrats on the release and happy holidays! -
I'm trying to give a projectile a special effect... Ive been snooping around the weapon defs to learn more and this is what I have so far: 1) most projectile entities point to a separate "result" entity which spawns upon impact. 2) the result entity usually contains a Stim. NPC definition files contain a Response to that Stim (damage, heal, blind, gas knockout and so on) I want to put together a response that will trigger a script function- whats the best way to do this? none of the responses seem to use STIM_TRIGGER, so I can't find any good references to use. one possible solution that doesn't need Stim/Responses is turning the Result entity into a trigger_once that will call the desired function, but Id like to avoid this as its not very practical
-
Apples and Peaches: Obsttorte's Mapping and Scripting Thread
RedNoodles replied to Obsttorte's topic in TDM Editors Guild
Hi, I've been playing around with your halloween sandbox (helloween.pk4) and I wanted to say the lantern looks awesome. I'd love to see this in a horror mission. do you know if theres a way to separate it from the sword? Ive been experimenting with the def files and haven't had much luck. first thing I did was go into the tdm_player_thief def file and add a new weapon def (there are 12 weapon slots, but TDM only uses 10) then I duplicated the default tdm_weapon_shortsword def from TDM and renamed it tdm_weapon_lamp. I compared it to your shortsword def and copied some of the references while giving the functions new names. At this point I could start up darkradiant, create this new lamp entity, load the map, pick it up and equip it alongside the sword. I then tried to repeat this process with your shortsword script file (which the lamp def file is supposed to point to) after including it in tdm_custom_scripts TDM doesn't like this new script file for some reason. it crashes on start up citing errors in the weapon_lantern::Idle() function Error: tdm_weapon_lantern.script, line 90: '.' is not a name I'm stuck. any idea what could be causing this? -
So, what are you working on right now?
RedNoodles replied to Springheel's topic in TDM Editors Guild
looking forward to it. I've always wanted to see some of the old T1/2/3 environments reimagined in FMs set hundreds of years after the events of the original games. that's one of the things I liked about Thief 4. -
So, what are you working on right now?
RedNoodles replied to Springheel's topic in TDM Editors Guild
stunning. I hope we get to explore the necromancer's tower -
So, what are you working on right now?
RedNoodles replied to Springheel's topic in TDM Editors Guild
Looks great! I'm having some trouble recognizing the map though -
I love playing with shadows on, a slightly more elaborate walking/crouching animation would be awesome
-
I was exploring the files and found an alternative 'sword' model. Looks really cool. has this been used in any FMs? seems to work just fine, all I had to do was rename it to broadsword.md5mesh and drop it in my FM. Makes sword noises, but its not a huge issue. I'll have to look for a way to change the inventory icon and name later.
-
thanks, but just to clarify I didn't make that. I'm using the default TDM spyglass overlay. originally i was going to use a thick glass texture and an air filter system (each filter would last 30 seconds or so) but they made navigation too difficult
-
I did some exploring and found the relevant lines in tdm_readables.script Readables are rendered on layer # 10. The HUD is on layer #1. So the trick is to put the mask overlay above the readables, and below the HUD. By editing the "$player1.createOverlay" commands on tdm_readables I got the readables to render on layer # -1. after that I put my overlay on layer 0. Everything displays in the right order now.
-
Speaking of readables, is there a way to make them appear on a specific layer? They show up "on top" of a gas mask overlay I've prepared, which breaks immersion somewhat.
-
Is there a way to make the "Start mission" button take the player directly to the Objectives screen? I'm playing around with the mainmenu_custom_defs.gui file but I can't figure it out.