How to read specific content from file?

Hello guys!

I’ve been trying to work this out reading the manual and forums, but I’m stuck :stuck_out_tongue:
I have a conversation/story telling system. And I have a Struct, for instante, that is made of an ID (int), the Conversation content (string), and the Owner char (an Enum, but it could be a Text/Name/String).

The thing is that I’m trying to have, let’s say, a text file in wich I have ID: 1; Conv: Hello there; Owner: / ID: 2; Conv: How’re you… you get the idea. Is it possible to load the file and tell the engine to read the Conv field from ID 2? (after that setting it into a var wouldn’t seem so complicated).

Or do you suggest to use another aproach to get this done?

Thanks in advance!!

Oh! Just found the Data Table / Data Asset! That’ll solve my problem :3 Thanks anyway guys.