How to get an enum's description in bp

You can put stuff int he description. How would I reference that in bps? Could be useful for pulling additional data for names and such. Thanks

Do you mean a tooltip? That’s just metadata, you can’t use it in a BP. You can try using Maps as collections of variables, where you can put both a value and a description that’s usable in BPs.

Or embed an enumerator in a struct.

Big oof. Anyway to quickly copy paste the enum data somewhere? I have over 679 names for both genders.

Would I still be able to random pull the correct names/ descriptions for my npc?

Consider looking into DataTables instead.

Yes, use a DataTable. You can access an entry randomly by index or directly, by name.

You can load it up from an external file automagically. No need to manually punch things in. Apart from populating an Excel sheet.