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

Ghaunadaur

Allies
  • Posts

    57
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Ghaunadaur

  1. Hi, I already posted a script for 2 on Nexus. In case you didn't see it: Scriptname SetStageOnDistance extends ObjectReference Quest Property myQuest auto int Property StageToSet auto int Property Distance = 140 auto auto State WaitingForPlayer Event OnCellAttach() RegisterForSingleUpdate(1.0) EndEvent Event OnUpdate() If self.GetDistance(Game.GetPlayer()) <= Distance myQuest.SetStage(StageToSet) GotoState("done") Else RegisterForSingleUpdate(1.0) Endif EndEvent Event OnCellDetach() UnregisterForUpdate() EndEvent EndState State done ;do nothing EndState
  2. I think the keywords need to be declared as properties. In most cases, default property values are assigned outside of a script. After the script is compiled, click on that 'Properties' button below the 'Remove' button. A window will pop up, where you can assign a value for the properties. I hope this helps. Bool Property AlreadyLoaded = FALSE auto Keyword Property HOTSEnable auto Keyword Property HOTSDisable auto ObjectReference EnableRef ObjectReference DisableRef Event OnCellLoad() if AlreadyLoaded == FALSE EnableRef = GetLinkedRef(HOTSEnable) DisableRef = GetLinkedRef(HOTSDisable) AlreadyLoaded = TRUE EndIf endEvent
  3. Thanks to all for the nice welcome...and for the tasty cookies of course!
  4. I'm not very good in introducing myself, so I'll keep it short and just say hello. I made some small mods for Skyrim so far and I'm always interested in learning new things. The TESA modding school is a great place to exchange knowledge with other new modders, I think. So I decided to join this nice community, I hope I can contribute to it. My apologies in advance for bad English as it is not my mother language (my German is better).
×
×
  • Create New...