Jump to content

JoRakhar

Members
  • Posts

    18
  • Joined

  • Last visited

Nexus Mods Profile

About JoRakhar

JoRakhar's Achievements

Explorer

Explorer (4/14)

  • First Post
  • Collaborator
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. I followed Werikk's blog to a T. Even keeping the plt/flag names and everything else exactly the same. My custom item name is all that was changed. // ---- SCRIPT STARTS HERE ---- #include "utility_h" #include "plt_my_custom_plot" void main() { if ( WR_GetPlotFlag( PLT_MY_CUSTOM_PLOT, MY_ITEM_CHECK_FLAG ) == TRUE ) return; event ev = GetCurrentEvent(); int nEventType = GetEventType(ev); switch ( nEventType ) { case EVENT_TYPE_MODULE_LOAD: { UT_AddItemToInventory(R"dw_comm_axe.uti", 1); WR_SetPlotFlag( PLT_MY_CUSTOM_PLOT, MY_ITEM_CHECK_FLAG, TRUE ); break; } default: break; } } // ---- SCRIPT ENDS HERE ---- About a week ago, someone made a mod for me that does this same thing and that weapon doesn't appear in my inventory either. They both show up as enabled in the DLC list and when I compile I get no errors yet nothing is showing up in game. Toolset is 1.01 and game is 1.02
  2. So I made a little mod that puts a new weapon (2H Greatsword) in the Family chest in the Human Noble origin. Everything works but I decided I want to change the model, but now it's using the original model no matter which one I choose (under Item Variation). Do I need to just delete+create a new one or is there a way to change it through the current model?
  3. Hey, I was just curious where to look in the toolset if I was interested in changing the weapon(s) a specific character starts with? Like if I wanted to start a Casteless Dwarf warrior with a 2H axe instead of dual daggers.
  4. I do not know how possible it would be, but I always felt that warriors should be able to obtain full-size DWing at the second talent in the tree. Just feels kind of silly as a DW warrior having to stick with a dagger in the OH for 12 levels. Perhaps giving a steeper penalty to OH weapons, and making the fourth talent improve it.
  5. Haha I seriously have NO idea what happened but it suddenly started to work. Guess it had a mind of it's own. :P Thanks for the help. :D
  6. http://i38.tinypic.com/szy64k.jpg <--MQ01Script with added line & removed shorts http://i38.tinypic.com/2nqeh5e.jpg <--MQ01 with first 3 quest objectives removed (I have a backup with them still intact just in case) http://i35.tinypic.com/205oy6f.jpg <--Note object Other than that, nothing else I have to show.
  7. Yep, just tried it again (adding that line under gamemode in the quest script) and still no dice. I even removed all the now useless shorts for Megaton. Something's just not connecting. :huh:
  8. I tried to add it right to the MQ01 script but still had no luck. Also in case it matters, it's a paper note (so I'm not able to attach a script to it), not a datatape.
  9. This is a brand new character from the vault exit autosave. I haven't done anything yet. The one thing I haven't done is remove any of the references to the original quest triggers in the MQ01Script, since I disabled them directly. Also I did set the note's owner quest to MQ01 so I'm stumped heh.
  10. Hmm, still no dice. Seems like it'd be a pretty easy thing to do, heh. Guessing it's going to be more than creating a script to execute when I pick up the note. I originally thought putting the gethasnote line into the result script for stage 40 would work but no dice. :wacko:
  11. I changed the MQ so you no longer get the objective to go to Megaton upon leaving Vault 101. I also removed the quest from triggering if you read Moriarty's terminal or kill him. My goal is to have Quest Stage 40 "Find Galaxy News Radio" trigger if you pick a note up off the ground. Thought maybe doing something along the lines of: scn MQ01DirectionsScript begin OnAdd player if (player.getHasNote MQ01Directions == 1) setStage MQ01 40 endif end would suffice but apparently it's not that simple heh. I'm also going to put activators around the object to run when it gets picked up but if there are any other ways, I'm interested in knowing what they are.
  12. I was reading the readme from Fellout and it says to load Fellout after EWR if you only want rain in the urban areas... however it still rains everywhere? Is this from an older version of Fellout and no longer happens? Because even when I do that it still rains everywhere and I really liked the idea of rain localized to the the urban areas.
  13. That's what I did. I changed all the Wasteland climates to my custom climate. No dice.
  14. I'm having trouble getting the weather to change outside & inside of Megaton (and in the general vicinity of Springvale). I can go anywhere else and the weather will change (I can also walk back to Megaton and the weather will still be different). However the weather will not change if I wait at, or fast travel back TO the front gate of Megaton or Springvale. I've changed all the default climates to my custom climate in the World Spaces menu. Also, is there a way I can have the weather in Megaton the same as the weather outside? No matter the weather outside, it will always go to the Megaton default inside.
  15. So I need to set up a quest script to have an effect script run at random intervals. The effect script triggers a visual effect during chem withdrawal. I'm trying to set the effect to happen randomly until the addiction is cured. I just started messin' with scripts though and currently drawing a total blank. This is the effect script: ScriptName MorphineWithdrawalEffect begin ScriptEffectStart imod MorphineWithdrawal end
×
×
  • Create New...