EddieTheEagle Posted October 31, 2016 Share Posted October 31, 2016 (edited) Looking for a script that adds a perk whenever u read a book. I know its possible because i had it work before but i removed script somehow and forgot how i did it and now i can't get it too work i know im stupid.. Thanks Edited October 31, 2016 by Icrusher Link to comment Share on other sites More sharing options...
IsharaMeradin Posted November 3, 2016 Share Posted November 3, 2016 Since SSE papyrus should be identical to original papyrus... You probably want something like the following attached to the book. ScriptName SomeScript Extends ObjectReference Perk Property MyPerk Auto Event OnRead() If !(Game.GetPlayer().HasPerk(MyPerk)) Game.GetPlayer().AddPerk(MyPerk) EndIf EndEvent Link to comment Share on other sites More sharing options...
Recommended Posts