bluemarvin Posted February 17, 2013 Share Posted February 17, 2013 Hey Guys - Trying to complie a script that uses SKSE function calls, specifically related to the ConstructibleObject functions. I'm being told the functions I'm calling do not exist. However, I confirmed the latest SKSE source files ARE in the right directory, and Skyrim has not recently "updated" them or anything sinister like that. So... stumped. For example: Int MyIngNum = MyRecipeList.GetAt(MyRecipeListIndex).GetNumIngredients() It claims "GetNumIndredients is not a function or does not exist" ... so annoying. :) Any wisdom? Link to comment Share on other sites More sharing options...
bluemarvin Posted February 17, 2013 Author Share Posted February 17, 2013 BTW, to add EXTRA annoyance, this DOES complile: Potion FoodCreated = MyAppleCabbageStewRecipe.GetResult() as Potion The GetResult() function did not work before I installed SKSE, meaning, SKSE should be installed just fine. I keep thinking I have a spelling error, or something... just can't find it. Link to comment Share on other sites More sharing options...
ScottyDoesKnow Posted February 17, 2013 Share Posted February 17, 2013 Do you need to cast it? (MyRecipeList.GetAt(MyRecipeListIndex) As ConstructibleObject).GetNumIngredients() Link to comment Share on other sites More sharing options...
bluemarvin Posted February 17, 2013 Author Share Posted February 17, 2013 Bingo, you rule. Thanks a bunch. Link to comment Share on other sites More sharing options...
Recommended Posts