slarur Posted January 23, 2017 Share Posted January 23, 2017 Scriptname Test_MCM extends SKI_ConfigBase Actor Property PlayerRef Auto Event OnConfigInit() Pages = new string[1] Pages[0] = "Testpage" EndEvent Event OnPageReset(string page) float alch = Alchemist00.GetNthEntryValue(0,0) if(page == "Testpage") SetCursorFillMode(TOP_TO_BOTTOM) AddHeaderOption("Test") AddTextOption("AlchEntryPointValue", alch) endif EndEvent According to this page I can get the entry point value for the specified perk, in this case Alchemist00 perk. How do i actually return the value? Link to comment Share on other sites More sharing options...
lofgren Posted January 23, 2017 Share Posted January 23, 2017 I don't understand the question. What does "return" mean in this context? Link to comment Share on other sites More sharing options...
slarur Posted January 23, 2017 Author Share Posted January 23, 2017 I don't understand the question. What does "return" mean in this context?I mean, how to get the current value of the entry point which is the return value of GetNthEntryValue. Link to comment Share on other sites More sharing options...
lofgren Posted January 23, 2017 Share Posted January 23, 2017 Exactly like you have it above. Link to comment Share on other sites More sharing options...
Recommended Posts