Jump to content

LucidDreaming

Members
  • Posts

    32
  • Joined

  • Last visited

Nexus Mods Profile

About LucidDreaming

LucidDreaming's Achievements

Contributor

Contributor (5/14)

  • First Post
  • Collaborator Rare
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. So, in the Fallout Universe, Australia's carriers take the place of the Enclave's oil rig? Anyway, shouldn't you try a smaller mod before you embark on such a large project? Just so you get some experience and such,.
  2. This mod also adds in some locations, though it makes some other minor changes (increased weapon skill and str reqs, and harder to find loot). The good thing is, it is compatible with NVInteriors. http://newvegas.nexusmods.com/mods/38719
  3. Dialogue, yes. Voice and lip-syncing, no. The other quest things, sure. Do you have an idea of what you want them about? What settlements have grown, what groups of people there are, what special challenges are faced in Detroit, any of that kind of thing?
  4. I would love to help, but I'm not sure how helpful I may be. I'm not very creative with level designing, but I could do some work on a quest or two.
  5. Unfortunately, the geck wiki site is down for me right now, so some of these questions probably could have been answered using that. 1. Does a disabled NPC cause the same performance drain as an active one? If not, around how much less? 2. Let's say I have a disabled mole rat, who is activated by a timer. Could I activate him, then have him activated again X number of seconds after he is killed? Or would it be better to do a 'placeatme' kind of thing where I want them to spawn? 3. I forgot how to place triggers. Could someone give me a quick reminder? 4. Instead of always using an active file when adding to a mod, I would rather make a plugin file, and then combine the two. How do I do this? 5. In the arena mod I'm trying to make, what would you recommend as a good stealth:shooting:survival ratio? Like, stealth would be the tactical kind of fighting, with traps and silencers, shooting would be, well, facing the enemy head on, and survival would be crafting and loading up between rounds. Thanks for the help/input.
  6. Someone just asked recently, so here's that post: http://forums.nexusmods.com/index.php?/topic/739466-first-run-with-nv-need-the-must-have-mods/ I played on xbox, and just got it for the PC, so I haven't tried out many mods. However, the perk every level mod and the more perks mod are a great combo. Then, get a nice bugfix/overhaul mod. Also, the NVInteriors mod is worth getting, for all of the additional things to do.
  7. Thanks. I ended up just copying the entire map (it is a small world space), but the training manual will be really helpful later on.
  8. I'll go get FNVEdit and the two mod managers then. Also, I found the old post on duplicating world spaces, but could someone explain to me what it says?
  9. The water in the Ultra-Lux's bath is rad-free. The cell is called ULBath, and the water is called VULBathhouseWater. I hope this helps a little.
  10. Duplicating a world space causes the geck to freeze. I saw a thread from half a year ago that mentioned other ways using FNVPlugin or FNVEdit to duplicate the world. First of all, could anyone give a quick explanation of how to do so? Also, I notice that FNVEdit hasn't been updated in a while; nor has FOMM. Are they still worth getting?
  11. Really, you should be playing CoD. But, if you get anything, I would reccomend CaliberX and Shrapnel - The Definitive Weapon Collection. Nothing like having plenty of weapon variety (and they are so much better than the vanilla weapons). Just be careful with that many mods- it can slow your game down, and they can conflict.
  12. Okay...I don't care too much that the messages are not being shown (they were meant to be debug messages, although I guess they failed) Um, this is my first mod, and I'm really trying to do whatever works. I tried doing it as a perk, like cannibal, but I couldn't figure out how to reference the target. Yeah, when I get it working, I'm planning on doing something like the hasbeeneaten for cannibal, and making it so that you can't mine people who have been disintegrated of completely blown apart I know it's weird, but as I've said before, I based most of it off of existing traps (there is a legacy script for the unwilling suicide bomber from FO3, whether he is alive or dead). Even after rearming a trap, some still use getdistance player, or it is not apparent how enemies would blow up. Look up the script TrapMailboxSCRIPT, for where I got most of my code. Of course, it's not working, so what should I do? If I knew how mines worked, I'd do something like that. This bit is from the TrapCorpseSCRIPT. if (button > -1) set interactAttempt to 0 if (button == 0) ;player wants to rearm as a proximity trap ShowMessage TrapRearmProximityMsg set trapTriggered to 2 ;trap is rearmed so start buffer timer set trapDisarmed to 0 set bufferTimer to 10 if (trapDisarmed == 0) if (trapTriggered == 0) if (getdistance Player <= 400) mySelf.playSound OBJMegatonBombTamperArm set trapTriggered to 1 set timer to 1 endif endif if (trapTriggered == 1) if (timer >0) set timer to (timer - GetSecondsPassed) elseif (timer<0) mySelf.playSound WPNRifleLaserReloadInOut set trapTriggered to 4 set timer to 4 endif endif if (trapTriggered == 2) ;trap has been rearmed as proximity so start buffer timer if (bufferTimer > 0) set bufferTimer to (bufferTimer - GetSecondsPassed) elseif (bufferTimer < 0) set trapTriggered to 0 ;buffer time is up, trap is now rearmed endif endif if (trapTriggered == 4) if (timer > 0) set timer to (timer - GetSecondsPassed) elseif (timer < 0) mySelf.placeatme GrenadeFragExplosion 1 ; kill me bloodily kill mySelf 1 kill mySelf 3 kill mySelf 5 kill mySelf 7 kill mySelf 10 set trapDisarmed to 2 ;trap has exploded endif endif endif End
  13. when people make mods, they tend to put a tag at the start of any additional scripts, weapons, etc. that they are adding (like in More Perks, they begin with dreeperk). Since it sounds like a script, I would open the G.E.C.K. and look under scripts for something like that. When you've narrowed it down, you should be able to pick out the problematic script and delete it/modify it
  14. I think I found the actual problem. The script for the object used to add the non-playable item to the target isn't working... short button Begin OnHit Ref CattleProdTarget Set CattleProdTarget to GetOwnerLastTarget If (CattleProdTarget != PlayerRef) If CattleProdTarget.GetDead == 1 ShowMessage CorpseRearmMsg set button to getbuttonpressed If [button == 0] CattleProdTarget.additem CorpseBombGlasses40mm 1 CattleProdTarget.additem WeapKnife 1 player.removeitem Ammo40mmGrenade 2 else ShowMessage MessageFail1 endif Else ShowMessage MessageFail2 ;do nothing endif Else ShowMessage MessageFail3 ;do nothing EndIf End I assumed it was fine, since none of the error messages popped up, and the CorpseRearmMsg appeared (button '0' is the rearm button, the one I always pressed). However, I noticed that there was no deduction of 40mm ammo...what's happening?
  15. are you sure? I noticed that the LegateKnokdownScript doesn't use a reference for it...I think that I would need one if this were an object script, but it's an effect script attached to a piece of non-playable armour. And the getdistance I used from an existing trap...they should work...I'll try it later, though, and try the showmessage idea. Honestly, though, I tried avoiding refs, because I'd have to use getself, which I dont really understand
×
×
  • Create New...