Jump to content

Ruadhan2300

Supporter
  • Posts

    264
  • Joined

  • Last visited

Nexus Mods Profile

About Ruadhan2300

Profile Fields

  • Country
    United Kingdom
  • Currently Playing
    Fallout 4, Space Engineers, Hitman

Ruadhan2300's Achievements

Rising Star

Rising Star (9/14)

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

Recent Badges

0

Reputation

  1. Kind of Necro'd I hit pretty much the same concept myself last week and started hacking away at the problem before hitting a stumbling block. I think I've gotten a bit further, I've created a copy of the Feral Ghoul Race, then changed the settings to match the Synth gen 1s apart from the animation-set. I think I have everything right, but it's not rendering in the preview on the NPC, neither ingame (weirdly, you can actually shoot, kill and loot the invisible NPCs, so it seems to be a purely visual problem) The same problem happens if I just duplicate the regular Synth Race and set the NPC to that. No changes, just a copy with a different name. So I think my issue is that I need to rebuild the Race-data in some way. This is what I came to the forums looking for info on before finding your old post! Maybe someone has the answer to this. Custom races can't be an unusual challenge.
  2. The size change is meant to be entirely harmless. no damage at all. What it will do is adjust the amount of health the target has available, so you can kill them more effectively if they're smaller, or giant allies become harder to kill. The plan is to make two modkits, one to make targets shrink, one to make them grow. Possibly some "coil" mods to make the effect last longer, final tier being a permanent change. The idea is basically, shrink them down, then kill them with far less effort than it used to take. Alternately laugh because they can't keep up with you and you can basically ignore their puny little attacks while you focus on something else. I might go as far as to make a version you can use on yourself, imagining it as a consumable item. Which really just conjours images of Alice in Wonderland :P Broadly, the idea is you can shrink a supermutant behemoth down to waist height and then kill him with your sidearm, rather than have a five minute boss-fight with him :P Or shrink a deathclaw down to the size of a puppy and hit it with a supersledge for a one-hit-kill. Ultimately, the shrinkray tech path would culminate in a super-sized version that will let you permanently shrink the moon.
  3. Not Dead I've been working on a Shrink Ray! Currently it sets the scale of the target to a random value between 0.1 and 0.9, wearing off after 30 seconds and reverting them back to normal size. I'm still working out how best to scale their health and weapon-damage down appropriately. as is, making them smaller only helps to slow melee enemies down, apart from that, it just makes them harder to hit.
  4. The movement is actually the TranslateToRef function for the most part. with the direct teleportation, that's all I need. you can't usually aim from one cell to another anyway. With the Deferred version I made it so that if you're not in the correct cell it uses MoveTo instead, which will jump you there, using loading screens as necessary. Originally I was looking to make this a true teleport, using institute Relay effects whenever you moved. but the MoveTo function was too slow for in-combat travel. it usually uses the loading screens instead. But I think Dishonored-style Blink movement is fun too :) interestingly, with the two different systems, they have subtle differences in how they can be used. For example, Direct will take you where you aim, so if you aim at the ceiling of the room, you'll end up on the roof or on the floor above, provided the ceiling is thin enough. While Deferred will drop you to the ground underneath the hit-point, so if you aim at a wall, you don't end up half-way up it and fall. Deferred is therefore slower and safer, while Direct can take you places more easily. These aren't actually properties of the functions I'm using, it's because I spawn a physics-enabled object as a target marker. and on deferred it has time to fall to the ground from wherever it appeared. Fun :P We are however thinking along similar lines. The gun, blast effect at the impact, and the teleport itself are all completely silent as far as the NPCs are concerned. and even shooting someone with the gun will not make them aggressive. So this is entirely suitable for stealth runs.
  5. there's bound to be either a texture file, or a reference in the creation kit for this. I've just spent 15 minutes looking through the CK, so I think it's probably hard-coded, look for the texture effect!
  6. From what I've been learning (very rapidly) over the past few days, there's a heck of a lot of new functionality in Papyrus. way more than was in previous Fallout games. Anything (and I really do mean anything) that could be attempted with previous games, can be done far more easily with Fallout 4. The most relevant change is that the physics engine is more exposed, so scripts can hurl objects around, grab nearby things and move them, all sorts. so with a bit of work, you could potentially make the vertibird fly much more realistically. At the most simple level, there's functions like TranslateToRef which moves object A to the location of Object B. linear interpolation, to use the correct terminology. There's also rotational versions, so you could make a vertibird move to match angles and positions as you chose. Say for example, the angle of the user's aim, and the position about 100ft in front of the aircraft. Not to say it won't be a lot of work, but anything is possible now.
  7. To be entirely honest. I've basically gone down the Top 200 mods or so on the nexus, picked out any that look like something I'd be interested in, and wound up with a good 20 - 30 that particularly work for me. The rest of my eighty(!) plus mods are mostly my own work, or small fixes/tweaks to the game that make some specific aspect better, or add some interesting features. Sometimes, going with the crowd is a good option :)
  8. I did some more work on the Blink Gun. Successfully split it into two modkit variations. Direct and Deferred (to use my Creation Kit terminology) The original video shows Deferred, you place marker locations using the gun, and use Aid type items to step through the target locations. The new mode is Direct mode. Where you aim, you immediately Blink to. sometimes it takes a moment, sometimes it's a little glitchy. but by and large, player-mobility is up by several hundred percent :P Here's some playtesting footage!
  9. Mad Science was my most popular mod for FNV. Obviously I'm going to take advantage of the better tools fallout 4 gives me! I've been working on it off-and on since the creation kit was released and finally got a firm handle on Papyrus yesterday. I've got documents exploring the range of stuff I want to make, the breakdown of tasks. And now the knowledge base. Time to get started in earnest! For your enjoyment, I present test footage of The Blink Gun. Easy, controllable pseudo-teleportation in the palm of your hand
  10. I don't know much about the first one, but the Diamond City Radio Eyebot (on patrol around Diamond City) has a script on it called EyebotRadioScript. Just set the radio frequency value to 98 for diamond city radio, I think the various radio stations have particular frequency numbers associated with them. shouldn't be hard to assign whatever you want.
  11. I don't know if it's even possible. But for a tentative plan in one of my mods, I want to blow up the moon as a scripted event. The idea is that basically you fire off some giant laser or missile, and there's a huge flash in the sky, and when it clears, the moon texture has been replaced by a version that's been blown up (giant fragments and debris) If it's feasible to do it, I'd like to use several successive versions over the course of several in-game nights. culminating in a band of small debris across the entire sky with only a few large fragments still where the original moon was. I know how to find the actual moon texture and swap it out manually, but I need to keep the original until the scripted event. Can't find any useful references in the Creation Kit, I was hoping someone here might be able to come up with a way to do it.
  12. I dunno if I'm the only one who's thinking this. I doubt very much that I am. But I was kinda disappointed by the crafting systems in Fallout 4. The amount of emphasis they placed on it, the lengths they clearly went to to make it amazing, and somehow it's terribly shallow feeling. So I've been thinking about how I'd have done it, what I'd have done to make the system more interesting in itself. First up, my biggest gripe. The ability to use raw materials to make complex things. I can (without any training or perks) take a glass bottle or a jug of water and turn it into a shaped lens for use in a rifle-scope. In reality, that takes an incredible amount of skills and knowledge. glass-forming, shaping it with tools, grinding it to shape, polishing it to transparency... I get that a lot of it is abstraction, but still, not unskilled labour. Second, use of components. When I decide to craft something, it tells me what objects are going to get broken down, but I have no control over which ones beyond cancelling the crafting and placing those items in a container somewhere. Kinda annoying, not such an issue because the game's mechanics are all based on the assumption that the junk itself doesn't matter. But there's a quest quite late on where the Brotherhood of steel send me off to fetch a bunch of giant super-conducting magnets. They're listed as quest items and can't be scrapped, but you can find such magnets elsewhere in the wasteland. I could have been hording junk for weeks of gameplay time previously and simply have them in stock myself and fetched them, rather than run through a dangerous quest. So I'm thinking on this, how would I make it better? First up, a selection menu on what I break down into parts. something kin to Skyrim's potion crafting system where you can select the materials for use in enchanting. That'd solve that issue as far as I'm concerned, and it's something they've already done previously, so presumably not too far out of the realm of possibility. Second, I'd break down the crafting system a LOT, add an extra layer of materials to it. Rather than break a microscope down into glass and steel and screws, I'd have steel, screws and lenses. Player characters with no scrapping/crafting perks should not have the knowhow to do much more than unscrew the parts and hammer things into rough shape. attaching modkits to weapons is fine, but making them is entirely out. First ranks of the crafting perks should involve being able to make simple stuff, a pipe with some lenses in it as an ad-hoc scope, maybe a few lenses on the end of a laser rifle will adjust its range/accuracy a little. nothing too dramatic, but using glass bottles to make precision lenses for laser weapons is right out. you don't have the knowhow and it's well beyond your ability. The addition of the Scrapper perk would open up the range of parts available, the microscope's mechanical mechanisms now become available, hinges and such. You'd be able to break down items which are otherwise sealed, open up the Sensor Module to access the raw parts inside like fuses and circuit boards. The upper levels of the related perks would allow you to work with increasingly raw materials. finally allowing you to use any source of glass to craft lenses, any source of copper allows you to make circuit boards, so on and so forth. To break it down. Rank 0 - no crafting, you can move objects around in your settlements and that's about it. Rank 1 - you can make use of existing parts, modkits and suchlike, bolting them onto weapons and armour as needed. Rank 2 - you can craft your own modkits using components from items, but you can't necessarily access all the materials you need. if you buy them from vendors you can still craft with them though. Rank 3 - You have increased range of parts available to you and have therefore greater options for making modkits. Rank 4 - You can break down any item into component parts and materials and build mods with them. I'd also require use of some crafted components in order to make more advanced objects. EG: with the highest ranks, you can break a beer bottle down into raw glass. you can then with appropriate blacksmith ranking craft that into a lens, which you then use as a sub-component of a scope, or laser rifle mod. Similar to how in Skyrim we can craft iron ore into iron ingots before using it in armour and weapons. essentially make an extra tier of component which allows a greater range of perks and skills involved in the crafting system, adding better depth. Sorry, all of that was a bit muddily written. I hope it made sense. I'd like to hear other people's feeling on it too.
  13. I clearly am terrible at project time-estimates (just ask my boss :P) I am however back to working on this after further hiatus. Odds and ends really. After E3's awesome announcement of Fallout 4, I've decided that November is my deadline. make or break, either I get this done before then or it'll never be done. So, with that said. I made some more progress this evening, putting together the armory officer's character, dialog and vendor stuff. The vault is almost entirely navigable at this point, The vast majority of work left to do is quests and dialog...which aren't really a lot of fun, so slow going. I intend to dedicate at least a couple evenings a week to this for the next few months, that should get me a lot further along! http://static-6.nexusmods.com/15/images/130/1454396-1434587677.png
  14. Glad to help! For this and other similarly simple fixes, PM me and I'll do my best to give helpful advice!
  15. Working on Vault 105 again!
×
×
  • Create New...