Jump to content

DOWNLOAD MODS

Are you looking for something shiny for your load order? We have many exclusive mods and resources you won't find anywhere else. Start your search now...

LEARN MODDING

Ready to try your hand at making your own mod creations? Visit the Enclave, the original ES/FO modding school, and learn the tricks of the trade from veteran modders...

JOIN THE ALLIANCE

Membership is free and registering unlocks image galleries, project hosting, live chat, unlimited downloads, & more...

Altrunchen

Allies
  • Posts

    36
  • Joined

  • Last visited

About Altrunchen

  • Birthday February 15

Profile Information

  • Gender
    Not Telling

Altrunchen's Achievements

Apprentice

Apprentice (3/11)

0

Reputation

  1. Hello again guys, long time no see. I currently need a bit of help making a script that does the following: Activates when the player puts a piece of armor on. When activated, uses the SKSE function: SetGameSettingFloat (http://www.creationk...ingFloat_-_Game) to adjust whatever game setting I need. In this particular case it'd be the setting: fJumpHeightMin Deactivates and resets the game setting to it's original state when the player removes the piece of armor. What I need help with is how to exactly program using SKSE functions and such.
  2. Oh well thank you very much . I am fairly certain that the problem is within my own mod though, I don't know if un-installing everything is necessary just yet though...I think I'd rather rule out my mod first by checking it instead of changing everything else irrevocably only to find out that it was my mod after all. If you don't mind I'd rather send the file to you? And by the way, thank you for your support and help in this matter, it means a lot to me knowing that I can consult with such a helpful and friendly community here, you guys are awesome! EDIT: I WAS WRONG: Alright so I disabled the other mods and attempted a coc and sure enough my own mod is running just fine. I also remembered that recently I had installed both SKSE and ScriptDragon into Skyrim, AND that I had used some sort of idle generator by Fore from: http://skyrim.nexusmods.com/mods/11811#content. So I think that might have something to do with it as well. So yes, you were right and I was wrong, I am sorry. Apparently there is some kind of mod conflict.
  3. I did as you suggested but nothing changed. I really think that there is something wrong with the model, because it seems that the game crashes whenever it loads it.
  4. Yeah Skyrim updated on it's own, I may have added some new mods too, also this mod is still in development and so yes, I did change it a lot since then. By the looks of things, it seems that this could be any one thing in a sea of a ton of potential causes.
  5. Ok so I am making a dungeon that has unique items in it. Among these items is a sword called Archona. This sword is a one-handed sword that uses the nord hero greatsword model. I edited the model in Nifskope and it worked in Skyrim for a long time without any problems whatsoever. Also when I coc'd to the cell and used the item, there wasn't a problem. Now, suddenly, as soon as I equip Archona, the game crashes. As soon as I coc to MODfortuneslossb2, the game crashes. However, when I loaded up a saved game that already had Archona in it, I could equip it without any trouble. I have all the files and would greatly appreciate it if someone who knows a lot about meshes could inspect the nifs for the sword please?
  6. That was my first thought as well. But the problem with using the telekinesis spell is that it does not activate both actors and objects alike from afar, it merely picks up certain kinds of objects and either throws them away or adds them to your inventory. Basically what I am trying to do is make an enchantment that allows the player to activate anything from a door to an item all the way to an actor just like using the 'E' key up close.
  7. Hello, I am trying to make a staff that does the following: Enable the user to activate something from afar without being within normal activation range. Works when a magic effect is used, fire and forget. This would work as such: The player equips the staff. The player finds something far away to activate using their reticule. The player uses the staff while it is aimed at the object. The object is then activated. My theory is that: A script extending a magic effect could achieve this. Said script would need to somehow receive the information of what the player's reticule is aimed at. Said script would need to be versatile enough so that it could activate both an actor or an object. What I do not know is: How do I get a script to read the information that corresponds to what the player is aiming at? If I can get said information, how do I set up the script so that said information can be used to activate the target remotely? Any and all help would be appreciated.
  8. Ok so here is what I came up with: Scriptname MODTimeOfDayScript01 extends ObjectReference {A script intended to enable and disable specific linked references at certain times of the day.} GlobalVariable property GameHour auto Float property Time01 auto Float property Time02 auto Float property Time03 auto ObjectReference property subject1 auto ObjectReference property subject2 auto Event OnInit() RegisterForUpdate(18) GotoState ("ticking") EndEvent State ticking Event OnUpdate() if GameHour.GetValue() >= Time01 && GameHour.Getvalue() < Time02 subject1.enable(true) else subject1.disable(true) endif if GameHour.GetValue() >= Time02 && GameHour.GetValue() < Time03 subject2.enable(true) else subject2.disable(true) endif endevent endstate What is happening is that the first light turns off as it should but the second one doesn't turn on. EDIT: Okay so I figured using states might make things easier and I only now just set one to being an auto state, but I doubt this will work the way I want it to. This script is on a blank trap linker and the purpose is to enable and disable certain lights at certain times of the day, just in case you were wondering what this was for. Scriptname MODTimeOfDayScript01 extends ObjectReference {A script intended to enable and disable specific linked references at certain times of the day.} GlobalVariable property GameHour auto Float property Time01 auto Float property Time02 auto Float property Time03 auto ObjectReference property subject1 auto ObjectReference property subject2 auto Event OnInit() RegisterForUpdate(18) GotoState ("check") EndEvent auto State check Event OnUpdate() if GameHour.GetValue() >= Time01 && GameHour.Getvalue() < Time02 gotostate ("am") elseif GameHour.GetValue() >= Time02 && GameHour.GetValue() < Time03 gotostate ("pm") endif endevent endstate State am Event OnBeginState() if GameHour.GetValue() >= Time01 && GameHour.Getvalue() < Time02 subject1.enable() gotostate ("check") else subject1.disable() gotostate ("check") endif endevent endstate State pm Event OnBeginState() if GameHour.GetValue() >= Time02 && GameHour.GetValue() < Time03 subject2.enable() gotostate ("check") else subject2.disable() gotostate ("check") endif endevent endstate IT WORKS !!!!!!!!!!!!!!! I'm so happy, thank you so very much yet again WillieSea! Here's the working code: Scriptname MODTimeOfDayScript01 extends ObjectReference {A script intended to enable and disable specific linked references at certain times of the day.} GlobalVariable property GameHour auto Float property Time01 auto Float property Time02 auto Float property Time03 auto ObjectReference property subject1 auto ObjectReference property subject2 auto Event OnInit() RegisterForUpdate(18) GotoState ("check") EndEvent auto State check Event OnUpdate() if GameHour.GetValue() >= Time01 && GameHour.Getvalue() < Time02 gotostate ("am") elseif GameHour.GetValue() >= Time02 && GameHour.GetValue() < Time03 gotostate ("pm") endif endevent endstate State am Event OnBeginState() if GameHour.GetValue() >= Time01 && GameHour.Getvalue() < Time02 subject1.enable() subject2.disable() gotostate ("check") else subject1.disable() gotostate ("check") endif endevent endstate State pm Event OnBeginState() if GameHour.GetValue() >= Time02 && GameHour.GetValue() < Time03 subject2.enable() subject1.disable() gotostate ("check") else subject2.disable() gotostate ("check") endif endevent endstate
  9. Alright so the good news is that the AM light (subject01) was activated but it wouldn't switch over to the PM light (subject02) when the game time reached 12:00. I tried fiddling with the if statements but it still hasn't produced the results I'm looking for. I also changed the times from Int to Float because the Global Variable uses float and not int. Was this a good idea or should I have left them at int? Scriptname MODTimeOfDayScript01 extends ObjectReference {A script intended to enable and disable specific linked references at certain times of the day.} GlobalVariable property GameHour auto Float property Time01 auto Float property Time02 auto Float property Time03 auto ObjectReference property subject1 auto ObjectReference property subject2 auto Function StartChain() RegisterForSingleUpdate(1) EndFunction Event OnUpdate() if GameHour.GetValue() >= Time01 && GameHour.Getvalue() < Time02 subject1.enable() elseif GameHour.GetValue() >= Time02 subject1.disable() endif if GameHour.GetValue() >= Time02 && GameHour.GetValue() < Time03 subject2.enable() elseif GameHour.GetValue() == Time03 subject2.disable() endif endevent It occurs to me that I don't even need all those "elseifs" so I took them out, but it still isn't working, anyone have any ideas why? Scriptname MODTimeOfDayScript01 extends ObjectReference {A script intended to enable and disable specific linked references at certain times of the day.} GlobalVariable property GameHour auto Float property Time01 auto Float property Time02 auto Float property Time03 auto ObjectReference property subject1 auto ObjectReference property subject2 auto Function StartChain() RegisterForSingleUpdate(1) EndFunction Event OnUpdate() if GameHour.GetValue() >= Time01 && GameHour.Getvalue() < Time02 subject1.enable(true) else subject1.disable(true) endif if GameHour.GetValue() >= Time02 && GameHour.GetValue() < Time03 subject2.enable(true) else subject2.disable(true) endif endevent
  10. Thank you, I suppose I will just have to be more observant in the future. When I looked around I just looked at the bugs and was disheartened when I found that the one I was experiencing had no suggested solutions. Thank you again!
  11. Hello so I was trying to play the main questline when I came to the quest: diplomatic immunity. I got as far as the Thalmor Embassy. When I got off the cart and spoke to the guard, he simply just said "need something?" instead of initiating the quest dialogue. I could use the console to open up the locked door, but I remember that when I tried that that the distraction never happened even though I got through the necessary dialogue. Is there any way I can simply get into the embassy (I suppose I will have to use the 'unlock' command) and just advance the quest to the next stage? I know that there are console commands for this, I just don't know what they are unfortunately. Any help would be very much appreciated!
  12. I shut off all the other mods and to my surprise I was actually able to load up the maps using COC, I guess there were just too many mods being loaded, thank you everyone for being so helpful! If you ever need something, please just ask.
  13. Understood, and I managed to solve the problem. It turned out that the race had the "fly" ability ticked and that was the reason why the characters weren't moving, they were trying to use animations that they didn't have.
  14. Gotcha, I'll send it as soon as I can. Just as soon as I figure out how to export my mod. EDIT: esp sent
  15. Well here's something, Steam says that the creation kit is syncing so maybe the problem IS with the creation kit after all... First I want to let it sync and then I'll try to get my esp to you. Thanks for your help by the way
×
×
  • Create New...