ritualistik Posted December 30, 2017 Posted December 30, 2017 Does anyone know how to write an ID concealing script? I'm looking for a script to attach to a ring for my mod called The Real Dark Brotherhood. Any help would be appreciated.
Evangela Posted December 31, 2017 Posted December 31, 2017 (edited) Err do you mean conceal the FormID? (if you mean EditorID, there is no way to display that). For the ring you can put a script on the ring and try this code when it's equipped: Event OnEquipped(Actor akActor) if akActor == Game.GetPlayer() debug.notification("Equipped Item's Form ID: " +self.GetBaseObject().GetFormID()) endif EndEvent You'll need to convert the return value into hex(FormIDs will be returned as a decimal.). OS calculators can do this if they have a programmer mode. Edited December 31, 2017 by Rasikko
foamyesque Posted January 1, 2018 Posted January 1, 2018 I think they're after a ring to make the player be 'disguised', presumably for the purpose of murdering people without receiving a bounty.
Recommended Posts