zackdreaver / ROenglishRE

An unofficial english translation project for Korea Ragnarok Online (kRO).
144 stars 173 forks source link

New Line - Optimization #60

Closed Everade closed 5 years ago

Everade commented 5 years ago

My recommendation is to replace all new lines with the following. I've been using this since the earliest days for my custom items, it works perfectly fine.

Current Usage: "^FFFFFF_^000000",

Optimized: " ",

This reduces the sign count by times 15. It also allows people to use different UI background colors without being able to see the white line.

I understand that the white line might be the official way. But it's nonsense.

The only possible issues that can come out of it is that the color code which was used before the new line was different than ^000000.

But i haven't seen a single item using that yet.

Everade commented 5 years ago

" ^000000", Would of course solve the minor issue (most likely not even existant) mentioned above because space is invisible, thus any color coming before that can be ignored.

This is just a suggestion. It would save quite a lot of data and makes it easier to read.

zackdreaver commented 5 years ago

Noted for the next release. You can close this issue if you feel satisfied with it later.