nakano15 Posted March 7, 2023 Share Posted March 7, 2023 I'm in need of knowing about this for one of my mods.Knowing the number of times the skills turned to legendary will be extremelly handy. Link to comment Share on other sites More sharing options...
IsharaMeradin Posted March 8, 2023 Share Posted March 8, 2023 SKSE provides GetSkillLegendaryLevel on the ActorValueInfo script. Having not used it, my best guess at a quick and dirty reusable function ( read that as test for compilation and function before committing to it. ) Int Function ModPrefix_GSLL(String SkillName) ActorValueInfo AVI = ActorValueInfo.GetActorValueInfoByName(SkillName) Return AVI.GetSkillLegendaryLevel() EndFunction Link to comment Share on other sites More sharing options...
nakano15 Posted March 9, 2023 Author Share Posted March 9, 2023 It works!Thank you. Link to comment Share on other sites More sharing options...
Recommended Posts