PHP Code:
enum _skills { "blue", "red", "orange" }
Or string array
PHP Code:
new skills[][] =
{
"red",
"orange",
"blue"
}
Or string array
PHP Code:
new skills[][] =
{
"red",
"orange",
"blue"
}
I'd like to use that values in a hud message but I need to be multilang.
Maybe is not in enum/array definition where to put something to make it multilang. Maybe I should put there some tag that reference to the dictionary text but I'm not sure.
__________________