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...

couriersgambit

Allies
  • Posts

    3
  • Joined

  • Last visited

Everything posted by couriersgambit

  1. Greetings everyone. I'm attempting to create script that will allow you to provide whatever equipment you place in a chest to npcs with a specific id. For example, you place exactly one sword and one set of armor into the chest and all npcs with this id will equip that sword and armor. Any help would be greatly appreciated.
  2. Got it fiqured out. Turns out that there was a conflict with another mod with more complicated scripts. Seems to work fine now. Thanks BrettM.
  3. Greetings everyone. I'm trying to create a script that will deposit 20 gold coins into a non-respawning container once every hour in game time. The script i have so far compiles correctly yet when I check the container in game the money fails to appear. Here is what I have so far: Scriptname CompanyProfits extends ObjectReference MiscObject Property Gold001 Auto Event OnInit () RegisterForUpdateGameTime(1.0) endevent Event OnUpdateGameTime() Additem(gold001, 20, true) endevent
×
×
  • Create New...