Zorkaz Posted March 25, 2021 Share Posted March 25, 2021 I'm coming from Fallout 4 (Papyrus) and want to create some scripts for Morrowind, however it's a huge downgrade in terms of possibilities I thought about making a script attached to the cliffracers which would enable/disable them based on a random number, which is applied as soon as they are loaded The Fallout 4 Version would be Event Onload() Int Rando = Utility.randomint(1,5) If Rando == 1 Self.disable() Else Self.enable() Endif EndEventBut is this translateable into a Morrowind script?Is there some event akin to Onload() Link to comment Share on other sites More sharing options...
cyran0 Posted March 27, 2021 Share Posted March 27, 2021 Such a script might be as simple as: Begin CliffracerRoulette short doOnce if ( doOnce == 1 ) return endif set doOnce to 1 if ( Random100 < 33 ) ; one-third chance of disable Disable endif End Link to comment Share on other sites More sharing options...
Zorkaz Posted March 27, 2021 Author Share Posted March 27, 2021 Thank you Link to comment Share on other sites More sharing options...
Recommended Posts