How to store data in seeds?

Look at the linked post. It should be very obvious.

1 Like

I am not entirely sure how this works. I’ve read most of it but if i understanded it correctly its like remooving the variables and puttng them in a order (example), so the first 2 characters will be the id, the 3th to 4th will be the damage, etc…?

Whatever you use will have to be a reversible function mapping a table to a string and back, which means you will just end up recreating JSONEncode, which is also that. If you really need to save memory you could also JSONEncode and then do text compression on top of that, but you will need a compression algorithm that also outputs a string (as opposed to binary), so why bother.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.