Jump to content

Multigunz

Supporter
  • Posts

    3
  • Joined

  • Last visited

Nexus Mods Profile

About Multigunz

Multigunz's Achievements

Newbie

Newbie (1/14)

  • First Post
  • Week One Done
  • One Month Later
  • One Year In
  • Conversation Starter

Recent Badges

0

Reputation

  1. Here here! Bran new to Skyrim, and am blown away at all the user created content and the quality of it all. Now I understand why people enjoy the Skyrim modding community so much. Thank you modders!
  2. (NOTE: I left everything in as I wrote it. Fixed the problem, but you'll see what I mean if you read the whole post ha ha). Holy mother of god, that's a big response. Just posting to let you know that I see your response. I'll be spending the next couple hours digesting it all ha ha :) You may have answered this in your response, but just in case I had another question. Why is it that I copy and paste an object from one mod/cell and place it into my own, that when I run the game and load up my cell I don't see the item. Take in for example, the shower I have been trying to get to work. It works fine in the Shower cell of course, I copy and paste everything from that cell to my own cell and coc my cell. But when I run over to the location of where the shower SHOULD be, the switch for the shower is invisible. Though it shows up in geck. Another example would be I was trying to use a mirror object from Dan's underground hideout mod, same scenario. Can see it in geck, but not in the actual game. Thoughts on that? Other then that, I shall be reading your full length response right now ha ha. Edit1: OK so I read the whole thing and studied it a bunch ha ha. First I typed up my own script and it kept giving me an error that I needed a Begin in order to have an End statement....except I did. So I threw up my hands finally after sitting there for half an hour switching around end if's and if's and all sorts of stuff and copy and pasted yours in. No more error about a begin or end statement, but now it really doesn't like the line "Enable Xmarker1" and "disable Xmarker1." It says "Unknown variable XMarker 1 for parameter integer (optional). If that's funny language for saying I don't have an XMarker 1 I can assure you, I do. Just for the hell of it, I changed the Enable Xmarker1 to marker.enable and marker.disable and added in a ref marker and I got the code saved. But of course testing results was negative. Here's the code with the error Scn Vault609ShowerScript Short Waterflow Begin OnActivate If Waterflow == 0 Enable XMarker1 Activate Set Waterflow to 1 ElseIf Waterflow ==1 Disable XMarker1 Activate Set Waterflow to 0 EndIf End Edit 2: Figured it out. Helps if I read your statement about ref marker more thoroughly, or at least refresh it in my mind. The correct code came from a hunch with regards to the ref marker. Instead of Enable XMarker1, I put Xmarker1.enable Scn Vault609ShowerScript Short Waterflow Begin OnActivate If Waterflow == 0 XMarker1.enable Activate Set Waterflow to 1 ElseIf Waterflow ==1 XMarker1.disable Activate Set Waterflow to 0 EndIf End Water turns off and on as its commanded now finally. However, now I get to go about figuring out how to do it with multiple shower markers. You said I don't need 30 showers well.....heh. With what I have in mind, it won't be 30, but a good dozen or so will be needed. I'm assuming I could put my code in and change it from Xmarker1 to Xmarker2 or something and do it over and over, but that seems like a loooonnnnggg string of code and I have a feeling there's a shorter way to do it. Edit 3: OK ya NO idea why the original code didn't work before with the ref marker and getlinkedref (now that I know what they mean at least). I replaced the Xmarker1.enable/disable with marker.enable/disable added in the getlinkedref and ref maker and poof, code is working JUST fine. *Blinks* Guess you're right, keep it freaken simple indeed. Next project is to add in the refreshed message and stuff. At this point I'm mostly doing this for experience so I can add in code for more complicated things like a healing station or remove rad station or whatever the heck my brain thinks is cool. Still, awesome stuff man thanks! Edit 4: Well I'm almost done completing the script and run into a hurdle. I'm creating a Base Effect that runs a simply script saying that you are clean and refreshed. Basically, I could load up the Shower mod everytime I wanted to play with my own mod/play the game, but I rather keep my mod list as clean as possible in case I cause any weird conflicts. So I am creating the Clean and Refreshed spell from scratch. I am able to make the spell just fine, but when I go to create an effect for the spell is where I run into my wall. I can make an effect titled "CleanandRefrshedMessage" just fine, then I go to effect archetype and select script. That's when it gets all jacked up, when I go into the assoc. Item list and look for my custom script I created (got from the Shower mod), it's not listed and I can't select it. If I load up the Shower mod and edit it's version of "CleanandRefreshedMessage" I see two scripts the author created in the assoc. item field, but mine isn't there. Yes, just to be sure, I doubled checked to make sure I actually created it, and I did. Here's the script just in case, but its a very simply script with no errors (I even created the Message's...man I feel like this thing is endless!). So um, any idea's? scn CleanRefreshedMessageEffectSCRIPT ; effect's job is to simply give a message when the effect starts and ends begin ScriptEffectStart showMessage AbilityCleanStartMsg player.resetHealth ; completely heal the player and limbs EndIf end begin ScriptEffectFinish showMessage AbilityCleanEndMsg end
  3. I am creating my own vault for my personal use and I am trying to get a shower mod that is hosted here to work correctly. Link to the mod is here http://fallout3.nexusmods.com/mods/7824 It doesn't look like the author has posted since 2009, but I went ahead and posted a comment there just in case. But I am going to assume I won't get a response since the author only responded once to another poster. Here is a copy and paste of my question to the author. Any help would be great because I'm stumped. I am having issue's getting it to work in my own mod. I set up an xmarker, waterspray, waterspoutsplash, and the TableRoundVault01 along with a trigger switch. I tried using the ivaultshowerbutton you provided, but when I launch the game, even though it shows in geck, it doesn't show up in game. So I created an identical switch, using your script (unedited) as well. My links setup is as follows: Shower button Linked Ref to XMarker FxWaterSpray01 Enable Parent to XMarker FxWaterSpoutSplash01 Linked Ref to XMarker, Enable Parent to XMarker Right clicking XMarker and going to Use info shows it is being used by Shower button, FXWaterspray01, and FxWaterSpoutSplash01 XMarker is initially disabled (unchecking this box on testing with show the water effects, so at least I know they are linked together correctly with the XMarker) As far as I can tell, I have set everything up identically to what your setup is in your ShowerCell. But yet when I push the button, nothing happens. I even copy and paste everything from Showercell to my cell just to be sure I have nothing different. The button once again dissapears (though it shows up in GECK) so its impossible to test. I replace the ivaultshowerbutton with my own button that has the exact same script, the game see's the button, but I press it and nothing happens. Any ideas? In case you don't want to download the file and see for yourself what the script is, here is a copy and paste the author uses. scn IVaultShowerButtonScript ;Hi ref marker short Toggle float timer begin onactivate set marker to getlinkedref if toggle == 0 marker.enable activate set timer to 10 set toggle to 1 elseif toggle == 1 marker.disable activate set timer to 0 set toggle to 0 endif end begin gamemode set marker to getlinkedref if player.getdistance marker <= 30 && toggle == 1 player.restoreactorvalue health 0.5 player.restoreav ActionPoints 0.5 player.restoreav Fatigue 0.5 if timer >= 3 set timer to timer - getsecondspassed elseif timer >= 1 && timer < 3 player.cios CleanRefreshedSpell set timer to 0 endif endif end
×
×
  • Create New...