Jeżeli nie chcecie mieć napisów noobków np wilków lub bandytów na czerwono czy tam pomarańczowo, już nie pamiętam
to przeczytaj ten tutorial.
Aby zmienić kolor tekstów noobków należy wejść
_Work\data\Scripts\Content\LeGo
i wchodzimy w plik focusnames.d
i tutaj nie ma co szukać bo jest na samym początku.
zamieniamy te linijki:
func int Focusnames_Color_Friendly() {
return RGBA(0, 255, 0, 255); // Grün
};
func int Focusnames_Color_Neutral() {
return RGBA(255, 255, 255, 255); // Weiß
};
func int Focusnames_Color_Angry() {
return RGBA(255, 180, 0, 255); // Orange
};
func int Focusnames_Color_Hostile() {
return RGBA(255, 0, 0, 255); // Rot
};
na:
func int Focusnames_Color_Friendly() {
return RGBA(255, 255, 255, 255); // weiß
};
func int Focusnames_Color_Neutral() {
return RGBA(255, 255, 255, 255); // Weiß
};
func int Focusnames_Color_Angry() {
return RGBA(255, 255, 255, 255); // weiß
};
func int Focusnames_Color_Hostile() {
return RGBA(255, 255, 255, 255); // weiß
};