silhouett Posted September 8, 2016 Share Posted September 8, 2016 I have the following code Busy = True While (index < COB_OldBaseHome.GetSize()) ObjectReference MyObjReference = COB_OldBaseHome.GetAt(index) as ObjectReference Debug.Trace("Attempting Enable "+ index + " "+ MyObjReference ) MyObjReference.Enable() index += 1 EndWhile Busy = False I want to also display the name of the item in the form as it displays in the creation kit when you view the form. Link to comment Share on other sites More sharing options...
TummaSuklaa Posted September 8, 2016 Share Posted September 8, 2016 I don't believe it can..without F4SE. in Skryim it was only possible through SKSE's GetName() function which returns the name of the form(not the EditorID name but the name in the name column in the CK). And right now, there's no GetName() function. If you try casting the form to string, it will only show name of its type and the form ID. Link to comment Share on other sites More sharing options...
silhouett Posted September 8, 2016 Author Share Posted September 8, 2016 I don't believe it can..without F4SE. in Skryim it was only possible through SKSE's GetName() function which returns the name of the form(not the EditorID name but the name in the name column in the CK). And right now, there's no GetName() function. If you try casting the form to string, it will only show name of its type and the form ID.Yeah I see that in the code, but you would think by now they would have added that one feature as it is very useful to display an items name. Link to comment Share on other sites More sharing options...
registrator2000 Posted September 12, 2016 Share Posted September 12, 2016 If you shove your ObjectReference into an Alias (Stores Text flag must be checked), you can display the name of the base form via Text Replacement. Link to comment Share on other sites More sharing options...
silhouett Posted September 14, 2016 Author Share Posted September 14, 2016 If you shove your ObjectReference into an Alias (Stores Text flag must be checked), you can display the name of the base form via Text Replacement.Could I ask you to show me an example code of this ? :) Pretty Please Link to comment Share on other sites More sharing options...
Recommended Posts