Is it possible to write locationdata from an Actor into a Data Table?

Hey, is it possible to write locationdata from an Actor into a Data Table?
With an Timeloop or an KeyPress or Somthing like that?

No, Data Tables are static and read only. You’d need to rewrite them.

You can save data into an array of structs (which the DataTable is already using anyway). And then store the array in a SaveGame object.

from all ive seen its not possible to write data into a datatable at runtime. datatables are meant for referencing things only, what you would want to use is an array of structs. using an array of structs would allow you to have the same basic functionality as a datatable but would allow you to write and save data into it. you could also take the information from a datatable and use it to initialize the array at the beginning of the game.

still beating me to the punch haha 30 seconds faster this time

Thanks for the fast answer i try to save the Data into an Array of structs