Jump to content
The Dark Mod Forums

So, what are you working on right now?


Springheel

Recommended Posts

Thanks for the kind words! coming from you guys, it means a lot. Obst: I will keep your recommendations in mind and definitely work on the texture alignment.

Link to comment
Share on other sites

Amadeus: That's looking good! Your scenes are impressive, especially if you are a novice - nice lighting and texturing, and a good attention to fine detail. If you are looking for suggestions, the most important thing I would recommend is to make your spaces less rectangular. Of course, that's common with houses, but environments look more organic if you break it up a little. Use a few different shapes and angles (e.g. by cutting apart your rectangles), and hide cubical architecture with overlapping squares, support beams and so on.

 

Although all of your screens work, it is no wonder the first is the best - even if the houses are all using rectangles of some kind, the crumbling masonry, planks against the walls, or the protruding beams on the higher floor give variety to the place (it also helps that you are using different textures for foundations and upper floors, and that the windows are different - the boarded up one in particular is great!). If you didn't have that long stretch of even mud - like by using a patch mesh and hitting "V" to make it into a deformable piece of terrain - it would be even better.

 

But with all that said, it's all going in a good direction. Keep it up! (And of course don't sweat it.)

  • Like 1

Come the time of peril, did the ground gape, and did the dead rest unquiet 'gainst us. Our bands of iron and hammers of stone prevailed not, and some did doubt the Builder's plan. But the seals held strong, and the few did triumph, and the doubters were lain into the foundations of the new sanctum. -- Collected letters of the Smith-in-Exile, Civitas Approved

Link to comment
Share on other sites

Melan: Thank you for the suggestions, I am currently learning how to use patches to make uneven terrain and small puddles, ponds, etc.. The line of even mud is definitely on my list of things to work on.

  • Like 1
Link to comment
Share on other sites

@ Springheel: Currently the sword is part of the viewmodel used for the player swordshort. It would be great if there would be a model without any weapon but with a joint mappers could attach any weapon onto. I think AlumniumHaste was the one who once asked for a way to give the player an axe instead of a sword, and this would be a way.

 

Any chance that this is happening (as you seem to be the person to ask for :wub: )?

 

Making an empty arm model is easy enough...finding the proper rotation values for whatever weapon you want to def_attach would be a chore, though. Where would you put the def_attach spawnarg?

Link to comment
Share on other sites

Impressive visuals Amadeus, another tip I'll offer, windows look very distinctive/copied if you don't also rotate/flip their textures (if asymmetrical obviously). For window textures the player isn't likely to see up close, can also enlarge and shift some of them to reduce the number of panes and offset the lit hotspot. For the poor symmetric window textures you may overlay transparent decals to alter their distinctive glow, or light them with a low performance spotlight (no shadows, etc.)

  • Like 1

"The measure of a man's character is what he would do if he knew he never would be found out."

- Baron Thomas Babington Macauley

Link to comment
Share on other sites

Making an empty arm model is easy enough...finding the proper rotation values for whatever weapon you want to def_attach would be a chore, though. Where would you put the def_attach spawnarg?

In the weapon definition, like it is done with arrows for the bow (they all use the same viewmodel, which has a joint barrel to attach the arrows to).

FM's: Builder Roads, Old Habits, Old Habits Rebuild

Mapping and Scripting: Apples and Peaches

Sculptris Models and Tutorials: Obsttortes Models

My wiki articles: Obstipedia

Texture Blending in DR: DR ASE Blend Exporter

Link to comment
Share on other sites

Ok, I've added an empty hand .md5mesh to the md5/weapons/broadsword folder. Anyone interested can play around with the attachments.

  • Like 2
Link to comment
Share on other sites

:D

 

:blink: Very nice! :ph34r:

 

Will the hitting distance match with the custom weapons? Will the sound match weapons, too? I mean not a sword-like slicing sound for a hammer but a bone crushing thunk.

 

Also, could the melee system with arbitrary weapon be used for blackjack, too. No more hitting the low ceilings, because you could choose between up->down, left->right, right->left blackjack hit. A thrust with the BJ would not make any sense. Should not be able to parry with it, also.

Clipper

-The mapper's best friend.

Link to comment
Share on other sites

I have to test whether the hitting distance is correct. At a first look it seems so, but I'm not yet sure about it. To be honest, I guess this needs tweaking.

 

The sounds can easely be changed in the definition file, no big deal.

 

The blackjack has one joint less then the sword arm, so you would have to do custom animations for them (or tweak the existing ones, I don't know much about nims so I can't really tell).

 

You can however redefine the animations, so if you want to use something else instead of blocking, you can do so. You can also leave the hand empty and use the attack plus movement key thingy to select spells for example, which than get casted by pressing the parry key.

 

It's more or less up to you and the amount of time you want to invest.

FM's: Builder Roads, Old Habits, Old Habits Rebuild

Mapping and Scripting: Apples and Peaches

Sculptris Models and Tutorials: Obsttortes Models

My wiki articles: Obstipedia

Texture Blending in DR: DR ASE Blend Exporter

Link to comment
Share on other sites

Not as spectacular as the recent shots, but I thought I post it anyways :D

post-11230-0-74170600-1398721941_thumb.jpg

  • Like 4

FM's: Builder Roads, Old Habits, Old Habits Rebuild

Mapping and Scripting: Apples and Peaches

Sculptris Models and Tutorials: Obsttortes Models

My wiki articles: Obstipedia

Texture Blending in DR: DR ASE Blend Exporter

Link to comment
Share on other sites

Well, it's not finished. The lights were only put there to make it look more interesting. In the end there will be a ceiling ;)

FM's: Builder Roads, Old Habits, Old Habits Rebuild

Mapping and Scripting: Apples and Peaches

Sculptris Models and Tutorials: Obsttortes Models

My wiki articles: Obstipedia

Texture Blending in DR: DR ASE Blend Exporter

Link to comment
Share on other sites

Will the hitting distance match with the custom weapons? Will the sound match weapons, too? I mean not a sword-like slicing sound for a hammer but a bone crushing thunk.

As espected, the collision model is not taken by the model itself. However, the cm is a simble box which is defined in the weapons def itself.

"att_cm_maxs_overhead"		"1 20 1"
"att_cm_mins_overhead"		"-1 6 -1"

Those are the lines handling the cm for the overhead attack for example. The only value I've changed is the second number in the first line. This basically defines the length of the weapon, which is by default twice as long. This short value is for the dagger.

 

EDIT: What I've forgotten to mention is that you can also quiet easely change demage done by the weapon, also done depending on the material you hit with the weapon. So you can for example implement a warhammer that even does damage if you hit an elite guard at is armor plates (something where the sword does no damage), and vice versa use a dagger which does not deal any damage on any kind of armor etc...

FM's: Builder Roads, Old Habits, Old Habits Rebuild

Mapping and Scripting: Apples and Peaches

Sculptris Models and Tutorials: Obsttortes Models

My wiki articles: Obstipedia

Texture Blending in DR: DR ASE Blend Exporter

Link to comment
Share on other sites

This reminds me of Masks.

Lol. Actually I was referring to this mission in my Let's Map as I was exaining what I am aiming for. :D

FM's: Builder Roads, Old Habits, Old Habits Rebuild

Mapping and Scripting: Apples and Peaches

Sculptris Models and Tutorials: Obsttortes Models

My wiki articles: Obstipedia

Texture Blending in DR: DR ASE Blend Exporter

Link to comment
Share on other sites

 

That's really cool! Another thing I saw in a Thief 2 FM I was playing recently which I liked was when you opened a door with a key it removed it from your inventory. I thought that was another handy solution for getting rid of unwanted keys but your method is even better because the player has better inventory management and they can still choose to lock the door if need be.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Recent Status Updates

    • OrbWeaver

      Does anyone actually use the Normalise button in the Surface inspector? Even after looking at the code I'm not quite sure what it's for.
      · 6 replies
    • Ansome

      Turns out my 15th anniversary mission idea has already been done once or twice before! I've been beaten to the punch once again, but I suppose that's to be expected when there's over 170 FMs out there, eh? I'm not complaining though, I love learning new tricks and taking inspiration from past FMs. Best of luck on your own fan missions!
      · 4 replies
    • The Black Arrow

      I wanna play Doom 3, but fhDoom has much better features than dhewm3, yet fhDoom is old, outdated and probably not supported. Damn!
      Makes me think that TDM engine for Doom 3 itself would actually be perfect.
      · 6 replies
    • Petike the Taffer

      Maybe a bit of advice ? In the FM series I'm preparing, the two main characters have the given names Toby and Agnes (it's the protagonist and deuteragonist, respectively), I've been toying with the idea of giving them family names as well, since many of the FM series have named protagonists who have surnames. Toby's from a family who were usually farriers, though he eventually wound up working as a cobbler (this serves as a daylight "front" for his night time thieving). Would it make sense if the man's popularly accepted family name was Farrier ? It's an existing, though less common English surname, and it directly refers to the profession practiced by his relatives. Your suggestions ?
      · 9 replies
    • nbohr1more

      Looks like the "Reverse April Fools" releases were too well hidden. Darkfate still hasn't acknowledge all the new releases. Did you play any of the new April Fools missions?
      · 5 replies
×
×
  • Create New...