DarthParametric

Modders
  • Content Count

    4,568
  • Joined

  • Last visited

  • Days Won

    514

Everything posted by DarthParametric

  1. <FullName> should work. That's what is used in your pet crystal's description, for example. Maybe the comma is throwing it off? Seems unlikely, but try it without or with a space between them.
  2. The value for Clamp should be the maximum pixel width bleed I believe, so -1 is presumably not a valid number. I'm unsure about 0, but it seems like your test would indicate that is also invalid.
  3. What you want is just a simple appearance.2da edit. You can easily change any or all armour classes to display the underwear model (or a different model, like the Twi'lek body).
  4. I assume you mean it doesn't like TGAs, which is to be expected. If ndix UR can implement swizzling in TGA2TPC then it should be a non-issue. I'm not sure the effort would be worth it though, so don't hold your breath.
  5. I would suggest you use CODE instead of bulleted lists. Preview the post and then change AUTO to XML so you don't get the technicaolour nightmare. Code = Auto: Line 1 Line 2 Line 3 Code = XML: Line 1 Line 2 Line 3
  6. Have you tried going the opposite route? For example, scaling your image down to 2046x2046 on a 2048x2048 canvas, then using padding to fill in the dead pixels? I believe xNormal has a plugin that will do the padding.
  7. Hah, what the hell. Which specific module is that?
  8. Did you try using Clamp 1 instead?
  9. Yeah, you specify both together, like so: bumpyshinytexture CM_baremetal bumpmaptexture TextureNameB
  10. Any head that uses Dark Side transitions will have its textures overridden, so you can't use two separate textures and keep DS transitions. You either have to choose to have no DS transitions, or you have to merge your changes into a single texture (and create matching DS textures). Assuming you have overlapping UVs and you can't simply copy and paste the relevant bit of texture over the top of the original, they quickest and dirtiest approach is to tile the UVs and create a single side-by-side texture from the two different head textures. Like so: You may want to watch this: The UVW Xform Array Helper script is what I use to automate the process - https://mariokart64n.deviantart.com/art/Uvw-Xform-Array-Helper-608086399
  11. I believe the mipmap semantic forces the game to always render the stated mip level. So you can force the game to always show the highest mip, even when it is far away, for example. A couple of other options for bump/normal maps: isdiffusebumpmap 1 isspecularbumpmap 1 Which notionally should allow for something like the opposite of bumpyshiytexture, but I haven't experimented much with it. A more specific example for proceduretype cycle: proceduretype cycle defaultwidth 256 defaultheight 256 numx 3 numy 2 fps 12 You have to specify the dimensions of the image, how many frames that image comprises, and at what framerate you want them to play.
  12. Well the "proper" way that you would create a player head mod for the PC version involves editing appearance.2da, heads.2da, and portraits.2da (in addition to the head model and textures, but you can use the vanilla ones for Bastila). I have no idea what the deal is with Xbox 2DAs, whether there is some big endian/little endian thing going on. You could try going that route first, although it would require extracting them from a BIF, presumably. If the Xbox data is anything like the PC, they should be in a file called 2DA.bif. You could try copying that and the KEY file (probably chitin.key) to your PC, then extracting it with unkeybif.exe from Xoreos Tools. Then you could use convert2da.exe to convert the required 2DAs to CSV. Then you would follow any standard "adding a player head" type tutorial to add the new data, then use convert2da again to convert the CSVs back to 2DAs. Then you'd transfer the modified 2DAs back to the Xbox, putting them in the Override folder. Like I said though, I don't know if Xbox 2DAs are different from PC 2DAs, so I have no idea if that will work. Assuming that doesn't work, the other option is the more brute force route, replacing one of the existing player head models with the Bastila head model (P_BastilaH). This will require changing the Odyssey Base name, the quickest route being to decompile, edit the ASCII model, then recompile. MDLEdit can handle Xbox models, so that should be fine, although you'd presumably want the Xbox supermodel (P_BastilaBB). Those should also be in a BIF file. You'd also need the Bastila head textures, which are in ERFs on the PC version, not sure for the Xbox version. I'd suggest trying the 2DA route first though and seeing if that works.
  13. If you are using the old version of MDLOps you need to use HeadFixer to patch the resultant binary model. The latest version of MDLOps and MDLEdit have built-in functionality to sort it out.
  14. Yes, I didn't say that the fog fix would solve your problem. I said the issue was related and you'd probably need the same sort of shader hack to fix it. You'd need to sort it out yourself by using the fog fix as a basis. Alternatively, sELFiNDUCEDcOMA apparently has some secret fix for the lightsaber bug, which might be applicable - http://deadlystream.com/forum/topic/2062-tsl-textures-remastered/?p=62552
  15. It affects the screenshots because it is dark as hell and I couldn't see anything. On closer inspection, I can see the issue in the first shot with the bangs. It's a model issue, nothing on your end. I'll address it in the next update.
  16. If it's an NPC head then all you need to fill in (aside from the model name in "head") is the "alttexture" column with the value for your new texture. It should be noted however that this only works in TSL. In K1, you would need a new head model, as K1's heads.2da lacks the same base texture override.
  17. That just adds a clamp semantic to a TXI. It's not the issue here. Your best course of action would to either give the existing sphere a new UV layout more suited to what you have in mind, or outright replace the mesh with something else.
  18. I'm not sure what I am supposed to be looking at. That doesn't appear to be vanilla game visuals. Are you using some post-processing hack, like Reshade?
  19. Should be no crashes, you just won't get any changes to Kaah or Vash's holograms. Bastila (if Revan was DS male) should still have her holocron appearance changed, as that UTC in 702KOR should be edited by default.
  20. I believe the earlier version of M4-78 just replaces the vanilla Korriban module. I did have an updated version in the works for it since January, but I was waiting on a user to test it and get back to me. I may have to release it regardless.
  21. Hrm, so it is. I always thought that, given it was set in the ARE, it was just a shader. But I can see the models for it, fx_Rain in the case of rain. Looks to be a simple fountain emitter covering a 6m x 6m area. Oddly, it's positioned at 4m under world zero, not sure what that is about. I wonder how the placement/activation for it works? I can't see anything obvious. Hardcoded maybe? Scripted? You'd surely want to be able to toggle the effect off and on to account for indoor/under cover areas.
  22. Rain is probably a shader, not a particle effect.
  23. If I had to guess, the Skip Telos Surface mod would be the most likely source of a clash. Did you install my mod last?
  24. Only a week to go. My body is ready.

  25. The ones you see out windows are part of the module. I'm not sure if there is a standalone one, but it wouldn't be a big deal to rip one out if you need.