mtrPermanentQuestCorpsesRandomizer OpenMW omwaddon - Randomizer for Location of Permanent Corpses of Imperial Taxman Processus Vitellius and Skooma Dealer Ernil Omoran Associated with Quests
mtrPermanentQuestCorpsesRandomizer OpenMW omwaddon - Randomizer for Location of Permanent Corpses of Imperial Taxman Processus Vitellius and Skooma Dealer Ernil Omoran Associated with Quests
I've had issues with this mod in OpenMW as Processus Vitellius is always in the same spot. Presumably Ernil Omoran is as well, but I've never found him.
Processus seems to always be in position 4. I think the issue is that the randomizer script runs too early, before the RNG gets seeded. I got it working by delaying the script until chargen is finished, like so:
I've made a version of this that modifies two of the spawn points to work better with Shipyards of Vvardenfell, would you mind adding that to the files for this mod? Thanks so much!
This is made in regular mwscript, so I assume it should work on any OpenMW version, but I tested it couple of times in 0.47 and it does work. Same for puzzle box randomizer, it's made in regular mwscript, so it should work in OpenMW and I have just tested it in 0.47 and it also does work. Apologies if it wasn't stated clear enough.
13 comments
Processus seems to always be in position 4. I think the issue is that the randomizer script runs too early, before the RNG gets seeded. I got it working by delaying the script until chargen is finished, like so:
if ( charGenState != -1 )
return
endif
edit: fixed, thanks for the correction