Hey,
is there a way to rename the components that are needed for crafting?
for example, i defined "valve3" as a component, but most of the players dont know what this is.
Is there a way to rename them from "valve3" to "CarValve" (or german: Ventil) ?
Rename componentsNot An Issue
It's feeding the crafting items shortnames to the message, so the message does not go through the Lang API at all. The shortnames are not translatable easily, so one would have to have a section where it adds those items to a list of equivalent names and feeds that to the language API.
It's doable, I jus don't have the time to do it.
A hacky solution would be to copy the language file to the de folder, and simply replace the line :
"Craft": "For craft you need more resources:\n{0}",
with
"Craft": "Um einen Recycler herzustellen, benötigen Sie:\nVentile: 2\nKürbisse: 420\nHolz: 666",
and at least it will tell the pl;layer what they need in total.
ah okay, thanks. will try it that way
thankks for reply
Merged post
Hey, tried it and worked. Its a easy solution. Thank you!