Jump to content

AxlDave

Members
  • Posts

    292
  • Joined

  • Last visited

Everything posted by AxlDave

  1. You did save with FNVEdit and then reload the mod in GECK, right? A couple of times I edited with FNVEdit and didn't save, or saved but didn't load the changes into GECK and wondered why nothing had changed.
  2. I have the Resists added on via Actor Effect, incrementally with each perk rank. That bit works fine, but I cannot seem to figure out what, if anything, determines starting and levelling Fire / Damage Resist. For instance, with Poison Resist the equation is Initial PR% = ( Endurance - 1 ) x 5 so if I start with 5 END, I get 20% PR. Presumably, each time you increase your Endurance by 1 point, you get an extra 5% PR. By changing two Game Settings, I can make this equation Initial PR% = ( Endurance - 0 ) x 0 which always gives 0, no matter how high Endurance is. This way, I can control exactly ow much PR increases through my mod. I've done the same for Rad Resist, the only problems are Fire and Damage now, and I don't even know if they have any starting values, let alone how they are calculated and when, as my testing has been rather inconclusive. Basically, is there any Attribute or Skill that raises DR or FR at the start or later in the game?
  3. Cheers, that worked nicely.
  4. Just by having the fPlayerMaxResist at 100%. Basically, I want the Player to start out at 0% Resists, and for them to be added on with my mod or perks taken / achieved. If I adjust the Resists to 0% right after using the vigor tester, is that what will happen?
  5. I can't for the life of me figure out how to implement the SetGS command. I have NVSE and am running the GECK through it. As far as I can tell, this should work: scn TEST BEGIN GameMode if ( Player.GetAV Dehydration >= 1000 ) SetGS fJumpHeightMin 45 endif END But it doesn't. I have tested every other part of the script, and those function fine. This simple script does not, however. I can't see why that is...
  6. Does this mean there is no equation, or that the equation cannot be changed? Do you know what defines the value of each, i.e starting Endurance, leveling up, etc? I am making a mod which increases Damage Resist to a max of 85%, Fire Resist to 100%, yet when I use the GetAV command, it tells me my Resistances are in excess of 100%. Is there a simple way to remove the DR and FR that is not from my mod? If not, the only thing I can think of is scripting it in, in which case do you know how to link a script to an Actor Effect?
  7. Yes, I have an scn MyScript, I didn't think it was relevant to include it. I've heard about GECK powered, but I generally don't do complicated enough scripts to make it worthwhile. They don't need to be, but it helps keep things organised in my head, which is basically all that matters. Excellent, that did the trick nicely, cheers man. I didn't even need to restart the GECK.
  8. It's a quest script, it's supposed to check if you have a particular item upon leaving Doc Mitchell's house for the first time, and if you do not have it, it will add it to his vendor inventory. If you do have it, the script makes itself defunct. Here's the script which will not save: short DoOnce BEGIN GameMode if ( DoOnce == 0 ) if Player.GetStage VCG01 == 200 if Player.GetItemCount MyItem >= 1 set DoOnce to 1 else set DoOnce to 2 endif endif endif if ( DoOnce == 2 ) VendorContainerDocMitchell.AddItem MyItem 1 endif END Where am I going wrong? I bet it's something simple...
  9. Nevertheless, you haven't even stated what the mod will do, let alone how much work will be involved and what you yourself will do / have done. Some kind of game plan would be helpful, e.g how many teams of how many people working on how much at a time.
  10. In the Object Window, on the left there should be a category tree, something like this: + Actor Data - Actors + Creature Leveled Creature LeveledCharacter + NPC + Talking Activator + Audio + Game Effects + ... You want to click on the NPC branch, then type "ncr" into the Filter text box (top left).
  11. The wiki gives clear details on how Poison and Rad Resist are calculated using Endurance. Are there any such calculations for Fire and Damage Resist, as they both seem to increase with level? Also, where in the GECK would I find the multipliers and offsets used? I assume they are Game Settings that I cannot find, if so I would need their names to find them.
  12. Excellent, cheers, just what I needed.
  13. At the very start, Doc Mitchell gives you a bunch of caps and bobby pins, maybe a pistol. Where can I find this function, as I have searched all the VCG01 scripts in vain? Basically I just want to add something to the items he gives you...
  14. Wow... you guys' pictures are like, almost the complete inverse of each other... Is one of you an evil twin from a parallel dimension where they all have beards or something?
  15. Kinda limits the game for unarmed and melee players though, doesn't it. I'm pretty certain that's due to the poison, as the Legendary Cazador has less melee damage than a run of the mill Deathclaw. With a high or maxed Poison Resist, they're basically just big mosquitos. I know, that's what I'm saying. Deathclaws are over twice as damaging as the Sun.
  16. During my testing, the only thing I've found to be more deadly than a Deathclaw is a Player.Kill script. I think the point of Deathclaws is to f*ck you up, no matter how high your level. But I mean, seriously? More powerful the the sun? That huge ten trillion megaton nuclear bomb in the sky? Some poxy lizard is more powerful than that?
  17. In the GECK, go to Actors --> NPC. There you can find every NPC in the game. Most are based on one or two templates, so you will need to do a bit of working backwards to find the few NCR templates. Once you have found them, open them up and go to the Inventory tab. Edit at will. You could also have found out how to do this with Google, or just exploring GECK with a bit of logic.
  18. So is it that you start making a mod, then you save it, half completed, and go to bed. Then, next morning, you try to load the mod to continue working on it, only when you click save, it saves as a new mod instead of adding the changes onto your half complete mod? If that's the case, the fix is very simple. When you load a mod in the GECK, every .esm and .esp file that you mark with a cross opens that mod's content for you to edit. If you want the changes to add on to one of those mods, you need to select it as the "Active File". So lets say you wanted to make a mod that was based on NV vanilla content, Lonesome Road content, and Project Nevada content. You would mark those three with a cross, and start modding. Then you save as WhateverYourModIsCalled.esp. If you wanted to continue working on that mod, you would mark the three previous files and your file, and then while your file is still highlighted, click the "Set as Active File" button. This should change it's description from "Plugin file" to "Active file", at which point you can edit it.
  19. To elaborate on devinpatterson's post, the calculations for Damage Threshold and Resist are calculated using certain variables and constants. To ensure that nobody can be invincible, the max DR is capped at 85%, and the max that DT can reduce the adjusted damage to is 20%. So in the calculations, 20% is achieved by using a multiplier of 0.2. Setting it to 0 enables DT to completely eradicate all damage less than its value.
  20. You need to be more specific about what you hope to accomplish.
  21. In the GECK, note the tree to the left. Under World Objects --> Containers, you will find the vendor's inventory. Add your stuff to a generic vendor list and it will be for sale all over the Wasteland.
  22. As jazzisparis mentioned: #9 int IsFaulowingDefault to int IsFollowingDefault #15 If [DoOnce !=1] to if ( DoOnce != 1 ) #22 Set FollwerSwitchAgressive to 0 to set FollowerSwitchAgressive cannot see the problem with line #25, unless that I is actually an L...
  23. I did not, now I have and it fixed the problem :D Deathclaws are as ineffective as a bunny launcher now, cheers!
  24. That's what I thought, but as is mentioned above I can't find it anywhere. In my latest testing with maxed out Resists, I fired Euclid's C-finder at my feet and barely got a scratch. It seems rather ridiculous that a few Deathclaws are more powerful than the entire energy of the Sun focused on one point...
  25. You can't edit NewVegas.esp, so you'd have to edit the merged patch. In the GECK you will find World Objects --> Moveable Static. Any objects in the Moveable Static directory should be moveable, as far as I am aware there is no properties setting to toggle an object moveable / immovable. Movable Static should include SSCartonSmall and SSCrateTall, which are the two types of Sunset Sarsaparilla crate. If these are not found under Moveable Static in the merged patch, that's most likely the problem. Not sure what the fix would be though, you'd have to investigate why and where the alteration happened.
×
×
  • Create New...