-
Posts
366 -
Joined
-
Last visited
Astymma's Achievements
-
Help with radio and quest please!
Astymma replied to jbear95's topic in Fallout New Vegas's Discussion
You should just need to find the radio response and in the script for that response, in addition to it setting the variable that defines the next song, add "Startquest YourQuestID" on a new line. For example, let's say that you wanted hearing Big Iron to start a quest. You find the response which is INFO: 0016B80F . Its script has this: set vCountryRadioQuest.iLastSong3 to vCountryRadioQuest.iLastSong2 set vCountryRadioQuest.iLastSong2 to vCountryRadioQuest.iLastSong1 set vCountryRadioQuest.iLastSong1 to 11 Change it to: set vCountryRadioQuest.iLastSong3 to vCountryRadioQuest.iLastSong2 set vCountryRadioQuest.iLastSong2 to vCountryRadioQuest.iLastSong1 set vCountryRadioQuest.iLastSong1 to 11 startquest YourQuestID Of course I'd add a check to see if it was already started so you start it only once. You may also have to display a message or set a specific quest stage too. -
Visible equipment wear and tear mod
Astymma replied to immortalfrieza's topic in Fallout New Vegas's Mod Ideas
Thanks Astymma, that is pure gold :thumbsup: I'v skimmed through the TES construction kit basic animation tutorial, but honestly it's less of a tutorial that just using pre-made building blocks, so I really appreciate the link. I'll probably stick with texture sets since it won't require any difference in file sizes in comparison, but I would love to master animated textures on rigged models. I always wanted to put some little CRT screens on power armor or on bots. I'd love to have some way to change those textures through script, but heck I can't complain, this will be a nice step forward. BTW have you come across any tutorials for NiVisController nodes? I'v been meaning to get around to checking out the blocks in the my dog mod, but they are very obtuse to me and a tutorial would be greatly appreciated. I'm actually kind of suprised we don't have a lot of info on for authors. I mean you want to add a hat to a think tank, presto. Add a new weapon to a bot, new armor to a dog, a neural network control helmet to a death claw etc. It just seems like the only realistic way of bypassing NV's lack of non humanoids ability to use various attire and equipment. I think it would really expand the game and present some great opportunities. Nope, sorry, you're reaching that territory where every practitioner is probably a poor tutorial writer hehe. -
Looking for a Feminine Hairstyle Mod
Astymma replied to Xaranth's topic in Fallout New Vegas's Discussion
I'm assuming you're running with MD CoolHair #84 currently hehe. Lings is probably going to be your best hope, especially the Saram or YoshikinaKota packs included. -
To make the duster flap in the wind would most likely require a modification of skeleton.nif adding in bones to form a "skirt" around the waist. I am perfectly willing to add such bones to my Compatability Skeleton for any animation project if you can find an animator willing to animate the garment.
-
I tried it but it's buggy for me. I married my male follower almost instantly...no wooing involved. I mean that's good since in my head they were all ready married but...I missed out on the dating. But in the first place the dating options never showed up. As in I asked him if he was hungry but I got no options to take him to dinner or anything. And no options for gift giving. Another issue i'm having is when he insults me when I suck him off. I'm his wife and suddenly i'm awful at oral sex? I know its supposed to be you get better over time but...there needs to be a way I can just instantly be good at sex...because again in my head they have been married for years and my PC is great at sex... Yup, there are some issues with the mod for sure. Not saying it's perfect. Just recommending it as something to try as one of the few options available.
-
The mod I linked above really is a good roleplayers option for marriage. It includes: Support for heterosexual, bisexual and homosexual relationships. NPC aggression and confidence factor into their willingness to engage in dating activities (some NPCs are aggressive, others shy) Dating NPCs to include entertainment, picnics, restaurants, getting to know the NPC, gifts. Weddings to include a ceremony and rings and each major faction has its own wedding path to include custom officiators. Sexual preference is built-in and respected with an optional path to woo an NPC to another preference. Works on all NPCs including vanilla followers (my male PC married Cass). Don't let the fact that the mod is based on Sexual Innuendo fool you, it's a RP mod aimed at those who want lore friendly marriage, dating and seduction in their game.
-
I'm guessing that some of the recent posters to this thread haven't seen this mod yet. Yes it's a Sexual Innuendo mod but I'm guessing married people have sex despite the jokes indicating otherwise ;)
-
any way to remove the breeze inventory items?
Astymma replied to TrueSaiko's topic in Fallout New Vegas's Discussion
In the bzBodySuits.esp there is a script named bzBodySuitsQS and contains the following code: scriptName bzBodySuitsQS begin gameMode if player.getItemCount bzBodySuitUnderwear == 0 player.addItem bzBodySuitUnderwear 1 endif if player.getItemCount bzBodySuitFlaccid == 0 player.addItem bzBodySuitFlaccid 1 endif if player.getItemCount bzBodySuitErect == 0 player.addItem bzBodySuitErect 1 endif end You would just need to comment out the player.additem lines by putting a semi-colon in front of them. Another option would be to do a StopQuest on the quest from that esp named bzBodySuitsQ like so from the console: StopQuest xx000EA9 With xx being the load order number of bzBodySuits.esp . -
Say Once flag doesn't seem to work as advertised
Astymma replied to Belthan's topic in Fallout New Vegas's GECK and Modders
Have you checked that the quest the topic is associated with has "Allow repeated conversation topics" checked? -
Lore Question - The Strip and Casinos
Astymma replied to Xaranth's topic in Fallout New Vegas's Discussion
Well, according to the framed newspaper clippings in the Gomorrah (and, iirc, the ones in the player suite area of the Lucky 38)... the Gomorrah, when it was built, was compared to the Ultra-Luxe and the Tops casinos. The Lucky 38 is for sure a pre-war casino. Given the newspaper clippings it would indicate that the other 3 main casinos also existed, with those names, pre-war. Other indicators like the playing cards, the signs (although Michael Angelo could have made those), the casino specific rugs with casino names on them, gambling table felt designs and such also indicate that these casinos were pre-war casinos under the current names. -
I'm assuming you made a quest to control the dialogue in your mod. If not, make a quest to hold the variable intCloseDialogueBranch (or whatever name you want to give it). Create a script and put the following in it (assuming your Dialogue quest is named DialogueQuest): scn DialogueQuestScript int intCloseDialogueBranch Then, in your dialogue conditions you'd choose GetQuestVariable, then choose DialogueQuest, then choose intCloseDialogueBranch, then choose EqualTo, then 0 (Zero). In the dialogue that , once displayed, makes the branch no longer available... place this in the end script: set DialogueQuest.intCloseDialogueBranch to 1 Make more sense?
-
Generally, in the quest used for the dialogue, add a variable such as intCloseDialogueBranch to the quest's script. Start it initially as 0. For that branch of dialogue, as a condition to display it, add the condition GetQuestVariable intCloseDialoguebranch == 0. When you want to close the branch off, set intCloseDialogueBranch to 1 and now that branch will fail to display.
-
animated .nif's in Blender
Astymma replied to chucksteel's topic in Fallout New Vegas's GECK and Modders
This thread has a discussion of the problem and fixes as far as I can tell. -
GECK Open Note Upon Activation in Script
Astymma replied to APNxRPG24's topic in Fallout New Vegas's Mod Troubleshooting
You should look up any functions you don't understand at the GECK site. GetStageDone NVDLC03MQ00 10 == 0 simply means this... return TRUE if the player has NOT completed stage 10 of the NVDLC03MQ00 quest. That code is basically checking to see if you've already used the satellite to travel to OWB before and if you haven't move you to the marker in OWB named MojaveDriveInHeadingMarkerREF and then it disables the satellite trigger. As for showing a note to players, you should look at the functions like AddNote and ShowMessage on the GECK site. p.s. You should use code tags around script code instead of using quote. Highlight your code and click the format symbol that looks like this: <> -
That will ONLY work in a condition... to use it in a script you need... if GameHour >= 20 || GameHour <= 6 ;do your stuff here endif Inside a script, global values are accessed simply by name. In conditions, they're accessed using GetGlobalValue. GetGlobalValue does not work in a script. However, if this is a condition, what you posted and I quoted is a correct condition for checking if the game hour is between 8pm and 6am.