Jump to content

fusronson

Members
  • Posts

    5
  • Joined

  • Last visited

Nexus Mods Profile

About fusronson

fusronson's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi, i actually didn't add any new meshes just used the vanilla resources to create the new cells, thanks both of you for the answers. I created the zip file with the scripts files and everything works fine by now.
  2. Hi everyone, may this question was already done but i couldn't find anything about. I created a mod were i added a new cell on the breezehome, but i don't understand how to export the bsa files for this new cell. I tried to find information on the CK page from bethesda but, this one is on maintenance. Any help will be appreciated.
  3. Hi guys, me again. I created the quest for the key script but i couldn't make work. BUT!, i could create an script directly to the Key and this work. I left the script if someone needs. Scriptname aaakeyscript extends ObjectReference Key Property aaaTestKey Auto Import Utility Event OnContainerChanged(ObjectReference akNewContainer, ObjectReference akOldContainer) Utility.WaitGameTime(10) ;-> this value will wait 10 game hours if akNewContainer == Game.GetPlayer() Game.GetPlayer().RemoveItem(aaaTestKey, 1) EndIf EndEvent
  4. Hi guys, thanks for the responses. I'm actually creating the quest to add the script, i'll let you know if works or not. Thanks to everyone (I edit the original message because i didn't create the SEQ file with the SSEEdit and the option now appears).
  5. Hi everyone, I'm working on a script to remove a key from the player's inventory after 1 hour, the code below is attached to the key. But after the hour the key still remain in the inventory. I added the message only to check if works but i haven't make it work. Am i missing something or there's a better way to do this?. Any help will be appreciated. Scriptname RemoveItem extends ObjectReference Key Property KeyDoor Auto Event OnContainerChanged(ObjectReference akNewContainer, ObjectReference akOldContainer) if akNewContainer == Game.GetPlayer() Debug.Messagebox("I just got put in the player's inventory!") RegisterForSingleUpdateGameTime(1.0) endIf endEvent Event OnUpdateGameTime() if (Game.GetPlayer().GetItemCount (KeyDoor) == 1) Debug.Messagebox("I just got removed from the player's inventory!") Game.GetPlayer().RemoveItem(KeyDoor, 1) endIf EndEvent
×
×
  • Create New...