(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