Mittwoch: 08 Oktober 2025
  1. Home
  2. Blog
  3. Forum
    1. Unerledigte Themen
  4. Shop
    1. Mein Konto
    2. Bestellungen
    3. Downloads
    4. Lizenzen
    5. Abonnements
    6. Versandkosten
  5. Galerie
    1. Alben
    2. Karte
  6. Filebase
  7. Streamer
  8. Projekte
    1. Geocaching
  9. Ticket
    1. Ticket erstellen
    2. Alle Tickets
  10. Tools
    1. Steam
    2. Spieledatenbank
    3. Pi Hasher
    4. Paracord Rechner
  11. Gameserver
    1. Community Server
    2. Private Server
  12. Lexikon
  • Anmelden
  • Registrieren
  • Suche
Alles
  • Alles
  • Artikel
  • Forum
  • Seiten
  • Galerie
  • Produkte
  • Wiki
  • Dateien
  • FAQ
  • Erweiterte Suche
    1. Grischabock.ch
    2. Mitglieder
    3. Fabius Haselnuss

    Beiträge von Fabius Haselnuss

    • Schriftgröße des Ingame Chat.

      • Fabius Haselnuss
      • 27. Mai 2025 um 14:40

      ich füge mal meine ganze Datei ein

      wie gesagt in zeile 82 und 253 da ich die schon eingefügt habe


      Code
      //-----------------------------------------------------------------------------
      // Craftsman & Marksman: Life is feudal
      //-----------------------------------------------------------------------------
      
      $GlobalTextFontName = "Open Sans";
      $GlobalTextBoldFontName = "Open Sans Bold";
      $GlobalCaptionFontName = "PT Serif Bold";
      $GlobalTextItalicFontName = "Open Sans Italic";
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile (GuiBaseTextProfile)
      {
      	tab = false;
      	canKeyFocus = false;
      	hasBitmapArray = false;
      	mouseOverSelected = false;
      
      	// fill color
      	opaque = false;
      	fillColorSEL = "255 255 255 0";
      	fillColorNA = "255 255 255 0";
      	fillColorHL = "64 64 64 125";
      	fillColor = "64 64 64 125";
      
      	// border color
      	border = "none";
      	borderColor	= "255 255 255";
      	borderColorHL = "255 255 255";
      	borderColorNA = "255 255 255";
      
      	// font
      	fontType = $GlobalTextFontName;
      	fontSize = 14;
      	fontCharset = ANSI;
      
      	//fontColor
      	fontColor = "255 255 255";
      	fontColorHL = "255 255 255";
      	fontColorNA = "255 255 255";
      	fontColorSEL = "64 64 64 125";
      
      	// bitmap information
      	bitmap = "";
      	bitmapBase = "";
      	textOffset = "0 0";
      
      	// used by guiTextControl
      	modal = true;
      	justify = "left";
      	autoSizeWidth = false;
      	autoSizeHeight = false;
      	returnTab = false;
      	numbersOnly = false;
      	cursorColor = "0 0 0 255";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiBaseTextBoldProfile : GuiBaseTextProfile)
      {
      	fontType = $GlobalTextBoldFontName;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiBaseCaptionProfile : GuiBaseTextProfile)
      {
      	// font
      	fontType = $GlobalCaptionFontName;
      	fontSize = 14;
      	fontCharset = ANSI;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiChatTabBookProfile : GuiBaseTextProfile)
      {
      	border = "none";
      	globalImageIndex = "chat";
      	fontColor = "233 233 233";
      	fontColorHL = "255 255 255";
      	fontColorNA = "50 50 50";
      	fontColorSEL = "178 128 28";
      	fillColor = "255 0 0";
      	fontSize = 18;
      	textOffset = "6 2";
      	tab = false;
      	cankeyfocus = true;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiScrollProfile : GuiBaseTextProfile)
      {
      	opaque = true;
      	fillcolor = "255 255 255";
      	fontColor = "0 0 0";
      	fontColorHL = "150 150 150";
      	border = "none";
      	bitmap = "art/gui/images/scrollBar";
      	hasBitmapArray = true;
      	category = "Core";
      };
      
      singleton GuiControlProfile( GuiAtlas1ImageProfile : GuiBaseTextProfile ) {
         globalImageIndex = "atlas1";
      };
      singleton GuiControlProfile( GuiAtlas2ImageProfile : GuiBaseTextProfile ) {
         globalImageIndex = "atlas2";
      };
      singleton GuiControlProfile( GuiAtlas3ImageProfile : GuiBaseTextProfile ) {
         globalImageIndex = "atlas3";
      };
      singleton GuiControlProfile( GuiAtlas1TiledImageProfile : GuiAtlas1ImageProfile ) {
         border = "all_tiling";
      };
      singleton GuiControlProfile( GuiAtlas2TiledImageProfile : GuiAtlas2ImageProfile ) {
         border = "all_tiling";
      };
      singleton GuiControlProfile( GuiAtlas3TiledImageProfile : GuiAtlas3ImageProfile ) {
         border = "all_tiling";
      };
      
      singleton GuiControlProfile(GuiEagleScrollBarProfile : GuiScrollProfile) {
      	globalImageIndex = "eagleScrollBar";
      	border = "none";
      	opaque = false;
      	borderThickness = 0;
      };
      
      singleton GuiControlProfile(GuiHorizSliderProfile : GuiBaseTextProfile) {
      	globalImageIndex = "horizSlider";
      };
      
      singleton GuiControlProfile(GuiPopUpScrollBarProfile : GuiScrollProfile) {
      	globalImageIndex = "popUpScroll";
      	border = "none";
      	opaque = false;
      	borderThickness = 0;
      };
      
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiCmChatWindowScrollProfile : GuiScrollProfile)
      {
      	globalImageIndex = "chat";
      	border = "none";
      	opaque = false;
      	borderThickness = 0;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiCmChatWindowTransPanelProfile : GuiBaseTextProfile)
      {
      	fillColor = "28 28 28";
      	fillColorHL = "28 28 28";
      	fontColor = "255 255 255";
      	fontColorHL = "255 255 255";
      	border = "all_tiling";
      	globalImageIndex = "chat";
      	hasBitmapArray = true;
      };
      
      singleton GuiControlProfile(GuiCmMessageWindowProfile : GuiCmChatWindowTransPanelProfile)
      {
      	autoCursorMode = true;
      };
      
      singleton GuiControlProfile(GuiTabBookProfile : GuiBaseTextProfile)
      {
      	opaque = false;
      	fillColor = "59 47 34";
      	fillColorHL = "100 100 100";
      	fillColorNA = "150 150 150";
      	fontColor = "129 129 129";
      	fontColorHL = "255 255 255";
      	fontColorNA = "50 50 50";
      	fontSize = 16;
      	globalImageIndex = "chat";
      	border = "none";
      	textOffset = "6 2";
      	tab = false;
      	cankeyfocus = true;
      	category = "Core";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(HotBarTabBookProfile : GuiTabBookProfile)
      {
      	opaque = "false";
      	border = "none";
      	globalImageIndex = "hotbar";
      	textOffset = "0 0";
      	justify = "center";
      };
      
      singleton GuiControlProfile(HotBarCellTextCountProfile: GuiBaseTextProfile)
      {
      	fontColor = "178 128 28";
      	fontSize = 17;
      	textOffset = "0 0";
      	justify = "center";
      	globalImageIndex = "hotbar";
      	border = "all_tiling";
      	autoSizeWidth = true;
      	autoSizeHeight = false;
      };
      
      singleton GuiControlProfile(HotBarCellTextProfile : GuiBaseTextProfile)
      {
      	fontColor = "102 102 102";
      	fontSize = 16;
      	textOffset = "0 0";
      	justify = "center";
      	shadowText = "0";
      	shadowColor = "0 0 0";
      };
      
      singleton GuiControlProfile(HotBarCellImageProfile : GuiBaseTextProfile)
      {
      	globalImageIndex = "hotbar";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(HotBarCellButtonProfile : GuiBaseTextProfile)
      {
      	opaque = false;
      	fixedExtent = true;
      	justify = "center";
      };
      
      singleton GuiControlProfile(PlayersListNameProfile : GuiBaseTextProfile)
      {
      	fontColor = "203 203 203";
      	fontColorNA = "203 203 203";
      	fontSize = 24;
      	textOffset = "0 0";
      	justify = "left";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(PlayersListTitleProfile : GuiBaseTextProfile)
      {
      	fontType = $GlobalCaptionFontName;
      	fontColor = "171 159 111";
      	fontSize = 32;
      	textOffset = "0 0";
      	justify = "center";
      	globalImageIndex = "players_list";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiModelessDialogProfile : GuiBaseTextProfile)
      {
      	modal = false;
      	category = "Core";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiCursorModelessDialogProfile : GuiModelessDialogProfile)
      {
      	autoCursorMode = true;
      };
      
      singleton GuiControlProfile(GuiWindowProfile : GuiBaseCaptionProfile)
      {
      	opaque = false;
      	fillColor = "39 30 17";
      	fillColorHL = "221 221 221";
      	fillColorNA = "200 200 200";
      	fontSize = "27";
      	textOffset = "15 8";
      	fontColor = "255 255 255";
      	fontColorHL = "0 0 0";
      	bevelColorHL = "255 255 255";
      	bevelColorLL = "0 0 0";
      	justify = "left";
      	category = "Core";
      	border = "all_tiling";
      	globalImageIndex = "window";
      };
      
      singleton GuiControlProfile(GuiSmallWindowProfile : GuiBaseCaptionProfile)
      {
      	opaque = false;
      	border = "all_tiling";
      	globalImageIndex = "small_window";
      	fontSize = "20";
      	textOffset = "15 0";
      	fontColor = "255 255 255";
      	fontColorHL = "0 0 0";
      	bevelColorHL = "255 255 255";
      	bevelColorLL = "0 0 0";
      };
      
      singleton GuiControlProfile(GuiAutoCursorWindowProfile : GuiWindowProfile)
      {
      	autoCursorMode = true;
      };
      
      singleton GuiControlProfile(GuiCursorEscWindowProfile : GuiWindowProfile)
      {
      	autoCursorMode = true;
      	canEscCloseOnPlayGui = true;
      };
      
      singleton GuiControlProfile(GuiTabPageProfile : GuiBaseTextProfile)
      {
      	fontSize = 12;
      	justify = "center";
      	globalImageIndex = "chat";
      	border = "none";
      	fillColor = "59 47 34";
      	fontColor = "255 255 255";
      	category = "Core";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiCmChatSplitContainer : GuiBaseTextProfile)
      {
      	hasBitmapArray = true;
      	globalImageIndex = "chat";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiListBoxProfile : GuiBaseTextProfile)
      {
      	canKeyFocus = true;
      	fontColorSEL = "255 255 255";
      	fillColorSEL = "45 45 45";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiButtonBitmapProfile : GuiBaseTextProfile)
      {
      	globalImageIndex = "chat";
      	hasBitmapArray = true;
      };
      
      singleton GuiControlProfile(GuiMapCtrlProfile: GuiBaseTextProfile)
      {
      	opaque = false;
      	fontSize = "22";
      	textOffset = "-13 6";
      	justify = "right";
      	fontColor = "196 196 196";
      	globalImageIndex = "map";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(ChatTextEditProfile : GuiBaseTextProfile)
      {
      	globalImageIndex = "chat";
      	border = "all_tiling";
      	cursorColor = "196 196 196";
      	canKeyFocus = true;
      	fontSize = "18"; // Original = 14 gesetzt durch GuiBaseTextProfile //
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiHLineChatProfile : GuiBaseTextProfile)
      {
      	 globalImageIndex = "chat";
      	 border = "none";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiBarProfile : GuiBaseTextProfile)
      {
      	globalImageIndex = "bar";
      	border = "none";
      	fontSize = "35";
      };
      
      singleton GuiControlProfile(GuiSkillStatImageProfile: GuiBaseTextProfile)
      {
      	globalImageIndex = "skill_stat";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiSkillBackgroundProfile: GuiBaseTextProfile)
      {
      	opaque = "1";
      	fillColor = "13 13 12";
      	border = "rect1_color";
      	borderColor = "13 13 12";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiGrayTextureProfile : GuiBaseTextProfile)
      {
      	globalImageIndex = "chat";
      	border = "only_background_tiling";
      	opaque = false;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiNotModalGrayTextureProfile : GuiGrayTextureProfile)
      {
      	modal = false;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiBorderGrayTextureProfile : GuiBaseTextProfile)
      {
      	 globalImageIndex = "chat";
      	 border = "all_tiling";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiSkillStatNameProfile: GuiBaseCaptionProfile)
      {
      	fontSize = 27;
      	fontColor = "159 137 109";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiSkillStatTopBtnProfile: GuiBaseCaptionProfile)
      {
      	fontSize = 27;
      	fontColor = "115 100 79";
      	fontColorHL = "173 148 117";
      	fontColorSEL = "173 148 117";
      	globalImageIndex = "skill_stat";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiSkillStatBtnSkilsProfile: GuiBaseTextProfile)
      {
      	fontSize = 22;
      	fontColor = "115 100 79";
      	fontColorHL = "190 164 127";
      	fontColorSEL = "190 164 127";
      	globalImageIndex = "skill_stat";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiSkillStatLabelTextProfile: GuiBaseTextProfile)
      {
      	fontSize = 20;
      	fontColor = "109 95 77";
      	justify = "right";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiText7pxProfile: GuiBaseTextProfile)
      {
      	fontSize = 18;
      	fontColor = "159 137 109";
      	fontColorNA = "159 137 109";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiText9pxProfile: GuiText7pxProfile)
      {
      	fontSize = 22;
      	globalImageIndex = "skill_stat";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiSkillStatValProfile: GuiBaseTextProfile)
      {
      	fontSize = 20;
      	fontColor = "159 155 109";
      	justify = "right";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiScrollSkillInfoProfile : GuiScrollProfile)
      {
      	globalImageIndex = "skill_stat";
      	border = "none";
      	opaque = false;
      	borderThickness = 0;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiTextProfile : GuiBaseTextProfile)
      {
      	fontSize = 24;
      	fontColor = "188 163 130";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiTextEditBarProfile : GuiBaseTextProfile)
      {
      	fontSize = 26;
      	fontColor = "188 163 130";
      	canKeyFocus = true;
      };
      
      singleton GuiControlProfile(GuiCrosshairProfile : GuiBaseTextProfile)
      {
      	globalImageIndex = "cross_hair";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiMoveIndicatorImageProfile : GuiBaseTextProfile)
      {
      	globalImageIndex = "moveIndicator";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiPopUpBorder : GuiBaseTextProfile)
      {
      	globalImageIndex = "popUpPanel";
      	opaque = true;
      	fillColor = "0 0 0";
      	border = "all_tiling";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiDarkGreyProfile: GuiBaseTextProfile)
      {
      	globalImageIndex = "dark_grey";
      	border = "only_background_tiling";
      	opaque = false;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiSkillPopUpTextListProfile: GuiText9pxProfile)
      {
      	textOffset = "19 12";
      	fontColor = "159 137 109";
      	fontColorNA = "159 137 109";
      	fontColorHL = "159 137 109";
      	fontColorSEL = "159 137 109";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiSkillPopUpProfile: GuiText9pxProfile)
      {
      	profileForChildren = GuiSkillPopUpTextListProfile;
      	textOffset = "43 0";
      	fontColor = "203 203 203";
      	fontColorNA = "159 137 109";
      	fontColorHL = "159 137 109";
      	fontColorSEL = "159 137 109";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(CreateCharWindowPopUpTextListProfile: GuiBaseTextProfile)
      {
      	globalImageIndex = "popUpCtrl";
      	textOffset = "9 10";
      	fontSize = 24;
      	fontColor = "204 204 204";
      	fontColorNA = "204 204 204";
      	fontColorHL = "204 204 204";
      	fontColorSEL = "204 204 204";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(CreateCharWindowPopUpProfile: GuiSkillPopUpProfile)
      {
      	profileForChildren = CreateCharWindowPopUpTextListProfile;
      	textOffset = "32 -2";
      	globalImageIndex = "popUpCtrl";
      	border = "all_tiling";
      	fontSize = 24;
      	fontColor = "204 204 204";
      	fontColorNA = "102 102 102";
      	fontColorHL = "204 204 204";
      	fontColorSEL = "204 204 204";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(CreateWorldWindowPopUpProfile: GuiSkillPopUpProfile)
      {
      	textOffset = "32 0";
      	globalImageIndex = "popUpCtrl";
      	border = "all_tiling";
      	fontSize = 22;
      	fontColor = "170 147 116";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(optionsPopUpProfile : GuiSkillPopUpProfile)
      {
      	textOffset = "32 0";
      	globalImageIndex = "popUpCtrl";
      	border = "all_tiling";
      	fontSize = 24;
      	fontColor = "203 203 203";
      	fontColorNA = "65 64 64";
      };
      
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiSkillInfoLvlLabelProfile: GuiBaseTextProfile)
      {
      	fontSize = 20;
      	fontColor = "31 31 31";
      	justify = "center";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiSkillInfoLabelProfile: GuiBaseTextProfile)
      {
      	fontSize = 16;
      	fontColor = "77 77 77";
      };
      
      singleton GuiControlProfile(SelectionListSkillNameProfile: GuiBaseCaptionProfile)
      {
      	border = "none";
      	justify = "left";
      	fontSize = 26;
      	textOffset = "11 0";
      	fontColor = "190 163 126";
      };
      //----------------------------------------------------------
      
      singleton GuiControlProfile(CraftBtnProfile: SelectionListBaseProfile)
      {
      	justify = "center";
      	fontSize = 26;
      	fontColor = "170 147 116";
      	fontColorNA = "65 64 64";
      };
      //----------------------------------------------------------
      
      singleton GuiControlProfile(GuiShapeNameImageProfile : GuiBaseTextProfile)
      {
      	globalImageIndex = "shape_info";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiAlchemyImageProfile: GuiBaseTextProfile)
      {
      	globalImageIndex = "alchemy";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiEffectImageProfile: GuiBaseTextProfile)
      {
      	globalImageIndex = "effect";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiSmeltingButtonProfile: GuiBaseTextProfile)
      {
      	globalImageIndex = "furnace";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiTextBigProfile : GuiBaseCaptionProfile)
      {
      	fontSize = 29;
      	fontColor = "188 163 130";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(EquipmentBaseProfile: GuiBaseTextProfile)
      {
      	globalImageIndex = "equipment";
      	border = "none";
      };
      
      singleton GuiControlProfile(EquipmentDoubleValProfile: GuiBaseTextProfile)
      {
      	fontSize = 17;
      	fontColor = "159 137 109";
      	fontColorNA = "159 137 109";  //Второе значение
      	fontColorSEL = "159 137 109"; //Первое значение
      	fontColorHL = "159 137 109";  //Разделитель
      	globalImageIndex = "skill_stat";
      	justify = "right";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiComboImageProfile : GuiAtlas3ImageProfile)
      {
      	//globalImageIndex = "comboIndicator";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(CraftBaseProfile: GuiBaseTextProfile)
      {
      	border = "none";
      };
      
      singleton GuiControlProfile(GuiItemRecipeTextProfile: GuiText9pxProfile)
      {
      	fontSize = 20;
      };
      
      singleton GuiControlProfile(CraftDoubleValProfile: EquipmentDoubleValProfile)
      {
      	fontSize = 22;
      	justify = "center";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(CraftResourcesTextProfile: GuiBaseTextProfile)
      {
      	fontSize = 20;
      	fontColor = "133 121 106";
      	fontColorNA = "133 121 106";
      	justify = "center";
      };
      //-----------------------------------------------------------------------------
      singleton GuiControlProfile(CraftBlueprintsSwitchTextProfile: GuiBaseTextProfile)
      {
      	fontSize = 20;
      	fontColor = "72 132 133";
      	fontColorNA = "72 132 133";
      	justify = "center";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(SplitStackItemTextNameProfile: GuiBaseTextProfile)
      {
      	justify = "center";
      	fontSize = 21;
      	fontColor = "203 203 203";
      	border = "none";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(SplitStackItemRadiusTextProfile: GuiBaseTextProfile)
      {
      	justify = "left";
      	fontSize = 18;
      	fontColor = "153 153 153";
      	border = "none";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(NumericTextEditSliderProfile: GuiBaseTextProfile)
      {
      	fontSize = 20;
      	justify = "center";
      	fontColor = "255 255 255";
      	border = "none";
      	numbersOnly = true;
      	canKeyFocus = true;
      };
      
      singleton GuiControlProfile(ItemContainerCtrlProfile: GuiBaseTextProfile)
      {
      	border = "all_tiling";
      	globalImageIndex = "item_container";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(ItemContainerBackgroundCtrlProfile: GuiBaseTextProfile)
      {
      	border = "only_background_tiling";
      	globalImageIndex = "item_container";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MainMenuWindowImageProfile: GuiBaseTextProfile)
      {
      	globalImageIndex = "mainMenuWindow";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MainMenuTextSmallProfile: GuiBaseTextProfile)
      {
      	fontSize = 16;
      	fontColor = "155 125 90";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MainMenuStartupVideoProfile: GuiBaseTextProfile)
      {
      	canKeyFocus = true;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiMLMessageTextProfile: GuiBaseTextProfile)
      {
      	fontSize = 20;
      	fontColor = "153 153 153";
      	textOffset = "0 7";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiLoreMLMessageTextProfile: GuiMLMessageTextProfile)
      {
      	textOffset = "0 20";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiMLMessageBoxTextProfile: GuiMLMessageTextProfile)
      {
      	fontSize = 22;
      	textOffset = "0 0";
      	fontColor = "159 137 109";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiMLInputBoxTextProfile: GuiMLMessageBoxTextProfile)
      {
      	fontColor = "156 155 154";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiTextSettingsProfile : GuiBaseTextProfile)
      {
      	fontColor = "178 128 28";
      	fontSize = 24;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiTextEditSettingsBarProfile : GuiBaseTextProfile)
      {
         fontSize = 24;
         fontColor = "204 204 204";
         fontColorHL = "204 204 204";
         fontColorNA = "204 204 204";
         fontColorSEL = "204 204 204";
         justify = "center";
         textOffset = "0 0";
         border = "none";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiInventoryContainerProfile : GuiWindowProfile)
      {
      	fontSize = 20;
      	autoCursorMode = true;
      	canEscCloseOnPlayGui = true;
      	textOffset = "10 3";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(TargetBarImageProfile : GuiBaseTextProfile) {
      	globalImageIndex = "shape_info";
      };
      
      singleton GuiControlProfile(TargetBarBaseTextProfile : GuiBaseTextProfile) {
      	shadowText = "1";
      	shadowColor = "0 0 0";
      	autoSizeWidth = true;
      };
      
      singleton GuiControlProfile(TargetBarBorderProfile : TargetBarImageProfile) {
      	border = "all_tiling";
      };
      
      singleton GuiControlProfile(TargetBarObjectNameProfile : TargetBarBaseTextProfile) {
      	fontSize = "24";
      };
      
      singleton GuiControlProfile(TargetBarObjectTypeProfile : TargetBarBaseTextProfile) {
      	fontSize = "19";
      };
      
      singleton GuiControlProfile(TargetBarMouseActionProfile : TargetBarObjectTypeProfile) {
      	fontColor = $TargetBar::secondTextColor;
      };
      
      singleton GuiControlProfile(TargetBarExtraInfoProfile : TargetBarObjectTypeProfile) {};
      
      singleton GuiControlProfile(TargetBarObjectDistanceProfile : TargetBarObjectTypeProfile) {
      	fontColor = $TargetBar::secondTextColor;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(AlignmentBarImageProfile : GuiBaseTextProfile)
      {
      	globalImageIndex = "atlas3";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(AlignmentBarPositiveTextProfile : GuiBaseCaptionProfile)
      {
      	fontSize = "40";
      	fontColor = $AlignmentBar::positiveAlignmentColor;
      	shadowText = "1";
      	shadowColor = "0 0 0";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(AlignmentBarPositiveSmallTextProfile : AlignmentBarPositiveTextProfile)
      {
      	fontSize = "18";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(AlignmentBarNegativeTextProfile : GuiBaseCaptionProfile)
      {
      	fontSize = "40";
      	fontColor = $AlignmentBar::negativeAlignmentColor;
      	justify = "right";
      	shadowText = "1";
      	shadowColor = "0 0 0";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(AlignmentBarNegativeSmallTextProfile : AlignmentBarNegativeTextProfile)
      {
      	fontSize = "18";
      };
      
      singleton GuiControlProfile(Monument11pxTextProfile: GuiBaseTextProfile)
      {
      	fontSize = 24;
      	fontColor = "176 152 122";
      	fontColorNA = "176 152 122";
      	fontColorHL = "176 152 122";
      	fontColorSEL = "64 64 64 125";
      
      	canKeyFocus = true;
      	cursorColor = "176 152 122";
      
      	fillColorHL ="255 255 255 0";
      	fillColorSEL = "255 255 255 0";
      	fillColorNA = "255 255 255 0";
      	fillColor = "255 255 255 0";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MonumentLevelTextProfile: Monument11pxTextProfile)
      {
      	justify = "center";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MonumentInfoTextProfile: Monument11pxTextProfile)
      {
      	fontSize = 20;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MonumentInfoNumProfile: Monument11pxTextProfile)
      {
      	fontSize = 23;
      	justify = "right";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MonumentUserListPnlProfile: GuiBaseTextProfile)
      {
      	border = "only_background_tiling";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MonumentSacrificeTextProfile: GuiBaseTextProfile)
      {
      	justify = "center";
      	fontSize = 20;
      	fontColor = "105 92 75";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(BuildNameProfile: GuiBaseCaptionProfile)
      {
      	fontSize = 27;
      	fontColor = "159 137 109";
      	justify = "center";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(ComboWindowTextProfile: GuiBaseTextProfile)
      {
      	fontSize = 24;
      	fontColor = "200 0 0";
      	autoSizeWidth = "1";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(ComboWindowSmallTextProfile: GuiBaseTextProfile)
      {
      	fontSize = 18;
      	fontColor = "200 0 0";
      	autoSizeWidth = "1";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MainMenuWindowSubtitleProfile: GuiBaseTextProfile)
      {
      	fontSize = "24";
      	modal = false;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MainMenuWindowButtonBaseProfile: GuiBaseCaptionProfile)
      {
      	justify = "center";
      	autoSizeWidth = "1";
      	fontSize = 51;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MainMenuWindowButtonsProfile: MainMenuWindowButtonBaseProfile)
      {
      	fontColor = "50 60 72";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MainMenuWindowMouseOverButtonsProfile: MainMenuWindowButtonBaseProfile)
      {
      	fontColor = "83 100 120";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MainMenuWindowJoinButtonProfile: MainMenuWindowButtonsProfile)
      {
      	fontSize = 68;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MainMenuWindowOverJoinButtonProfile: MainMenuWindowMouseOverButtonsProfile)
      {
      	fontSize = 68;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiCmProgressBitmapProfile : GuiBaseTextProfile)
      {
      	border = "none";
      	globalImageIndex = "progress_bar";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MainMenuWindowBackgroundProfile: GuiBaseTextProfile)
      {
      	opaque = "1";
      	fillColor = "0 0 0";
      	border = "rect1_color";
      	borderColor = "0 0 0";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MainMenuWindowBackgroundVideoProfile: GuiBaseTextProfile)
      {
      	border = "rect1_color";
      	borderColor = "0 0 0";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MainMenuWindowOverlayProfile: GuiOverlayProfile)
      {
      	autoCursorMode = true;
      	border = "rect1_color";
      	borderColor = "0 0 0";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiOverlayAutoCursorProfile: GuiOverlayProfile)
      {
      	autoCursorMode = true;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiLoadingWindowProfile: GuiContentProfile)
      {
      	autoCursorMode = true;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(BuildPositionButtonProfile : GuiBaseTextProfile)
      {
      	globalImageIndex = "atlas2";
      	fontSize = 25;
      	justify = "center";
      	textOffset = "0 -2";
      	border = "none";
      	fontColor = "203 203 203";
      };
      
      singleton GuiControlProfile(CreateWorldWindowBtnProfile: BuildPositionButtonProfile)
      {
      	justify = "center";
      	fontColor = "203 203 203";
      	fontColorHL = "203 203 203";
      	fontColorNA = "203 203 203";
      	fontColorSEL = "203 203 203";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(CreateWorldWindowImageProfile: GuiBaseTextProfile)
      {
      	globalImageIndex = "createWorldWindow";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(CreateWorldWindowAttentionTextProfile: GuiBaseTextProfile)
      {
      	fontSize = 16;
      	fontColor = "203 203 203";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(CreateWorldWindowTextProfile: GuiBaseTextProfile)
      {
      	fontSize = 24;
      	fontColor = "178 128 28";
      };
      
      singleton GuiControlProfile(CreateWorldWindowEditBackProfile: GuiAtlas3TiledImageProfile)
      {
      	opaque = 1;
      	fillColor = "0 0 0";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(CreateWorldWindowLeftPanelTextProfile: CreateWorldWindowTextProfile)
      {
      	autoSizeWidth = "1";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(CreateWorldWindowCaptionProfile : GuiBaseTextProfile)
      {
      	//globalImageIndex = "createWorldWindow";
      	//border = "all_tiling";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(NewGuiTextEditProfile : GuiBaseTextProfile)
      {
      	fontColor = "203 203 203";
      	cursorColor = "203 203 203";
      	autoSizeWidth = false;
      	autoSizeHeight = false;
      	justify = "left";
      	tab = true;
      	canKeyFocus = true;
      	fontSize = 18;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(CreateWorldWindowTextEditProfile: NewGuiTextEditProfile)
      {
      	tab = true;
      	textOffset = "19 0";//22";
      	fontSize = 24;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(CreateWorldWindowCaptionTextProfile: GuiBaseCaptionProfile)
      {
      	fontSize = 36;
      	fontColor = "203 203 203";
      	autoSizeWidth = "1";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(CreateWorldWindowSmallTextProfile: GuiBaseTextProfile)
      {
      	fontSize = 18;
      	fontColor = "165 165 165";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(CreateWorldWindowJudgeTextProfile: GuiBaseTextProfile)
      {
      	fontSize = 18;
      	fontColor = "178 128 28";
      };
      
      singleton GuiControlProfile(CreateWorldWindowJudgeDayTextProfile: CreateWorldWindowJudgeTextProfile)
      {
      	justify = "center";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(CreateWorldWindowDefaultProfile: GuiBaseTextProfile)
      {
      	//globalImageIndex = "createWorldWindow";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(CreateWorldWindowNumbersTextEditProfile: NewGuiTextEditProfile)
      {
      	tab = "1";
      	//globalImageIndex = "createWorldWindow";
      	textOffset = "19 0";
      	//border = "all_tiling";
      	fontSize = 24;
      	fontColor = "203 203 203";
      	cursorColor = "203 203 203";
      	autoSizeHeight = "0";
      	autoSizeWidth = "0";
      	numbersOnly = "1";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiLoadingProgressTextProfile: GuiBaseTextProfile)
      {
      	fontSize = "24";
      	fontColor = "80 80 80";
      };
      //------------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiLoadingGameHintLabelProfile: GuiBaseCaptionProfile)
      {
      	fontSize = "36";
      	fontColor = "255 255 255";
      };
      //------------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiLoadingGameHintProfile: GuiBaseTextProfile)
      {
      	fontSize = "24";
      	fontColor = "208 208 208";
      };
      //------------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiBarterPlayerNameTextProfile: GuiBaseTextProfile)
      {
      	fontSize = "24";
      	fontColor = "178 128 28";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(BarterWindowWorkAreaProfile: GuiBaseTextProfile)
      {
      	globalImageIndex = "item_container";
      	border = "all_tiling";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(BarterWindowImageProfile: GuiBaseTextProfile)
      {
      	globalImageIndex = "atlas3";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(BarterWindowButtonProfile: GuiBaseTextProfile)
      {
      	justify = "center";
      	fontSize = 20;
      	fontColor = "170 147 116";
      	globalImageIndex = "barter_window";
      	border = "none";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiBarterLabelTextProfile: GuiBaseTextProfile)
      {
      	fontSize = "20";
      	fontColor = "171 171 171";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiBarterDoubleValueTextProfile: GuiBaseTextProfile)
      {
      	fontSize = "24";
      	fontColor = "164 164 164";
      	fontColorSEL = "164 164 164";
      	fontColorNA = "164 164 164";
      	justify = "right";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(BarterWindowAcceptedAreaProfile: GuiBaseTextProfile)
      {
      	opaque = "1";
      	fillColor = "0 0 0 50";
      	border = "none";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiTransparentTextProfile : GuiBaseTextProfile)
      {
      	fontColor = "255 255 255 1";
      };
      //------------------------------------------------------------------------------
      
      singleton GuiControlProfile(TrebuchetWindowWorkAreaProfile: GuiBaseTextProfile)
      {
      	globalImageIndex = "item_container";
      	border = "all_tiling";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(TrebuchetWindowImageProfile: GuiAtlas2ImageProfile)
      {
      	//globalImageIndex = "atlas2";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(TrebuchetWindowAttackAngleSliderProfile: GuiBaseTextProfile)
      {
      	globalImageIndex = "trebuchet_window";
      	border = "all_tiling";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(TrebuchetWindowLabelTextProfile: GuiBaseTextProfile)
      {
      	fontSize = "24";
      	fontColor = "178 128 28";
      	justify = "left";
      	fontName = $GlobalTextBoldFontName;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(TrebuchetWindowLabelRightTextProfile: GuiBaseTextProfile)
      {
      	fontSize = "22";
      	fontColor = "159 137 109";
      	justify = "right";
      	fontName = $GlobalTextBoldFontName;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(TrebuchetWindowRotateButtonProfile: GuiBaseTextProfile)
      {
      	globalImageIndex = "trebuchet_window";
      	border = "all_tiling";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(TrebuchetWindowAngleTextProfile: GuiBaseTextProfile)
      {
      	fontSize = "24";
      	fontColor = "178 128 28";
      	justify = "center";
      	fontName = $GlobalTextBoldFontName;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GroupUnitWindowDefaultProfile: GuiBaseTextProfile)
      {
      	globalImageIndex = "createWorldWindow";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GroupUnitWindowWidgetBackgroundProfile: GuiBaseTextProfile)
      {
      	globalImageIndex = "groupUnitWindow";
      	border = "all_tiling";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GroupUnitWindowNameTextProfile: GuiBaseTextProfile)
      {
      	fontSize = "16";
      	fontColor = "159 137 109";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiMessageBoxPasswordDlgButtonProfile: GuiBaseTextProfile)
      {
      	justify = "center";
      	fontSize = 22;
      	fontColor = "170 147 116";
      	globalImageIndex = "messageBoxPasswordDlg";
      	border = "none";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiInputBoxButtonProfile: GuiMessageBoxPasswordDlgButtonProfile)
      {
      	fontColor = "156 155 154";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiMessageBoxPasswordDlgTextEditProfile: NewGuiTextEditProfile)
      {
      	globalImageIndex = "messageBoxPasswordDlg";
      	textOffset = "19 0";//22";
      	border = "all_tiling";
      	fontSize = 18;
      	fontColor = "170 147 116";
      	cursorColor = "170 147 116";
      	autoSizeHeight = "0";
      	autoSizeWidth = "0";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiInputBoxTextEditProfile: GuiMessageBoxPasswordDlgTextEditProfile)
      {
      	fontColor = "156 155 154";
      	cursorColor = "156 155 154";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiMessageBoxPasswordDlgCheckBoxProfile : GuiBaseTextProfile)
      {
      	fontSize = 18;
      	fontColor = "182 182 182";
      	globalImageIndex = "joinWorldWindow";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiMessageBoxDirectConnectDlgTextProfile : GuiBaseTextProfile)
      {
      	fontSize = 19;
      	fontColor = "182 182 182";
      };
      //-----------------------------------------------------------------------------
      singleton GuiControlProfile(JoinWorldWindowImageProfile: GuiBaseTextProfile)
      {
      	globalImageIndex = "joinWorldWindow";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(JoinWorldWindowTabButtonTextProfile: GuiBaseTextProfile)
      {
      	fontSize = 20;
      	fontColor = "170 147 116";
      	justify = "center";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(JoinWorldWindowHeaderButtonTextProfile: GuiBaseTextProfile)
      {
      	fontSize = 18;
      	fontColor = "132 132 132";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(JoinWorldWindowBtnProfile: GuiBaseTextProfile)
      {
      	justify = "center";
      	fontSize = 22;
      	fontColor = "170 147 116";
      	globalImageIndex = "joinWorldWindow";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(JoinWorldWindowButtonProfile: GuiBaseTextProfile)
      {
      	globalImageIndex = "joinWorldWindow";
      	border = "all_tiling";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(JoinWorldWindowButtonTextProfile: GuiBaseTextProfile)
      {
      	fontSize = "22";
      	fontColor = "159 137 109";
      	justify = "center";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(JoinWorldWindowServerNameLabelTextProfile: GuiBaseTextProfile)
      {
      	fontSize = "22";
      	fontColor = "145 145 145";
      	autoSizeWidth = "1";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(JoinWorldWindowServerMainSettingsLabelProfile: GuiBaseTextProfile)
      {
      	fontSize = "20";
      	fontColor = "145 145 145";
      	autoSizeWidth = "1";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(JoinWorldWindowServerMainSettinsTextProfile: GuiBaseTextProfile)
      {
      	fontSize = "20";
      	fontColor = "224 224 224";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(JoinWorldWindowServerSettingsLabelProfile: GuiBaseTextProfile)
      {
      	fontSize = "19";
      	fontColor = "145 145 145";
      	autoSizeWidth = "1";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiScrollServerListProfile: GuiScrollSkillInfoProfile)
      {
      	globalImageIndex = "joinWorldWindow";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(JoinWorldWindowHeaderButtonLatencyTextProfile: JoinWorldWindowHeaderButtonTextProfile)
      {
      	justify = "right";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(JoinWorldWindowDialogButtonProfile: JoinWorldWindowRubberButtonProfile)
      {
      	fontSize = "22";
      	fontColor = "159 137 109";
      	justify = "center";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiTileLegendDescrProfile: GuiAtlas3ImageProfile)
      {
      	fontSize = 18;
      	fontColor = "153 153 153";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiInputCtrlProfile : GuiBaseTextProfile)
      {
      	tab = false;
      	canKeyFocus = true;
      	category = "Core";
      };
      
      singleton GuiControlProfile(optionsVideoTextProfile : GuiBaseTextProfile)
      {
      	fontColor = "178 128 28";
      	fontSize = 24;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(optionsVideoCheckBoxTextProfile: optionsVideoTextProfile)
      {
      	fontSize = 22;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(VideoTextEditProfile: optionsVideoTextProfile)
      {
      	tab = false;
      	canKeyFocus = true;
      	justify = "center";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiTextVideoDlgProfile: optionsVideoTextProfile)
      {
      	fontSize = 24;
      	autoSizeWidth = true;
      	fontColor = "153 153 153";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiTextVideoCommentProfile: optionsVideoTextProfile)
      {
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(VideoBtnProfile: optionsVideoTextProfile)
      {
      	justify = "center";
      	fontColorHL = "178 156 127";
      	fontColorSEL= "151 143 132";
      
      	globalImageIndex = "createWorldWindow";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(CmComboStackButtonDef: GuiBaseTextProfile)
      {
      	fontColor = "204 204 204";
      	fontSize = 26;
      	textOffset = "10 5";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(CharPanelColorProfile: GuiBaseTextProfile)
      {
      	opaque = true;
      	border = "none";
      	fillColor = "197 177 144";
      	globalImageIndex = "atlas3";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiCharDescProfile: GuiBaseTextProfile)
      {
      	fontSize = 16;
      	fontColor = "175 175 175";
      	textOffset = "0 0";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(optionsAudioMicTextProfile: optionsVideoTextProfile)
      {
      	fontSize = 22;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(optionsAudioDiscMicTextProfile: optionsAudioMicTextProfile)
      {
      	fontColor = "147 147 147";
      	fontSize = 20;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MixerRightText1Profile : GuiBaseTextProfile)
      {
      	fontColor = "203 203 203";
      	fontColorNA = "178 128 28";
      	fontColorSEL = "199 188 165";
      	fontColorHL = "190 160 125";
      	fontSize = 18;
      	textOffset = "15 0";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MixerRightText2Profile : MixerRightText1Profile)
      {
      	fontColor = "199 188 165";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MixerCountProfile : MixerRightText2Profile)
      {
      	fontColor = "203 203 203";
      	fontSize = 15; 
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MixerCaptionBigTextProfile : GuiBaseCaptionProfile)
      {
      	fontColor = "178 128 28";
      	fontSize = 34;
      	justify = "center";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MixerCaptionTextProfile : MixerCaptionBigTextProfile)
      {
      	fontSize = 24;
      	fillColor = "0 0 0";
      	opaque = true;
      	border = "none";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MixerBackgroundProfile : MixerCaptionTextProfile)
      {
      	fillColor = "0 0 0 128";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MixerEffectsTextProfile : GuiBaseTextProfile)
      {
      	fontColor = "203 203 203";
      	fontColorNA = "102 102 102";
      	fontSize = 18;
      	textOffset = "15 0";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MixerEffectsCaptionProfile : MixerEffectsTextProfile)
      {
      	fontColor = "178 128 28";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(MixerEffectMagnitudeProfile : MixerEffectsTextProfile)
      {
      	textOffset = "0 0";
      	justify = "center";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiSmeltingContainerLabelProfile : GuiBaseTextProfile) {
      	fontSize = 19;
      	fontColor = "255 255 255";
      };
      
      singleton GuiControlProfile(GuiSmeltingContainerInventoryButtonProfile : GuiBaseTextProfile ) {
      	globalImageIndex = "atlas2";
      	fontSize = 24;
      	fontColor = "204 204 204";
      	fontColorHL = "204 204 204";
      	fontColorNA = "204 204 204";
      	fontColorSEL = "204 204 204";
      	justify = "center";
      	textOffset = "0 -2";
      	border = "none";
      };
      
      singleton GuiControlProfile(GuiSmeltingContainerTemperatureProfile : GuiBaseTextProfile) {
      	fontSize = 18;
      	fontColor = "204 204 204";
      	fontColorNA = "102 102 102";
      };
      
      singleton GuiControlProfile(GuiHeraldryColorTextProfile: GuiText7pxProfile)
      {
      	fontSize = 20;
      	justify = "center";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(GuiHeraldryImageProfile : GuiBaseTextProfile)
      {
      	globalImageIndex = "heraldrySlices";
      };
      
      singleton GuiControlProfile(GuiHeraldryTabProfile: GuiBaseCaptionProfile)
      {
      	globalImageIndex = "heraldrySlices";
      	justify = "center";
      	fontColorNA = "94 82 68";
      	fontColor = "178 156 127";
      	fontColorHL = "178 156 127";
      	fontColorSEL= "159 137 109";
      
      	fontSize = 22;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(OptionsHeaderTextProfile: GuiBaseCaptionProfile)
      {
      	fontColor = "102 102 102";
      	fontSize = 32;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(OptionsHeaderKeyProfile: OptionsHeaderTextProfile)
      {
      	justify = "center";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(ControlsSubMenuTextProfile: GuiBaseCaptionProfile)
      {
      	fontColor = "178 128 28";
      	fontSize = 30;
      	textOffset = "13 0";
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(ControlsTextProfile: GuiBaseTextProfile)
      {
      	fontColor = "176 152 122";
      	fontSize = 26;
      };
      //-----------------------------------------------------------------------------
      
      singleton GuiControlProfile(BindTextProfile: ControlsTextProfile)
      {
      	autoSizeWidth = true;
      };
      
      
      singleton GuiControlProfile(HeraldrySetingTextProfile : GuiBaseTextProfile)
      {
      	fontSize = 22;
      	fontColor = "188 163 130";
      };
      
      singleton GuiControlProfile(GuiPersonalClaimCellsProfile: GuiBaseCaptionProfile)
      {
      	fontSize = 22;
      	fontColor = "178 128 28";
      	justify = "Left";
      };
      
      singleton GuiControlProfile(GuiPersonalClaimColNameProfile: GuiBaseTextProfile)
      {
      	fontSize = 16;
      	fontColor = "103 103 103";
      	justify = "center";
      };
      
      singleton GuiControlProfile(GuiPersonalClaimParamNameProfile: GuiBaseTextProfile)
      {
      	fontSize = 22;
      	fontColor = "153 153 153";
      };
      
      singleton GuiControlProfile(GuiPersonalClaimParamValProfile: GuiPersonalClaimParamNameProfile)
      {
      	fontColor = "255 255 255";
      	justify = "Center";
      };
      
      singleton GuiControlProfile(GuiPersonalClaimDiscProfile: GuiBaseTextProfile)
      {
      	fontSize = 16;
      	fontColor = "103 103 103";
      };
      
      singleton GuiControlProfile(GuiPersonalClaimDaysTxtProfile: GuiBaseTextProfile)
      {
      	fontSize = 16;
      	fontColor = "103 103 103";
      };
      
      singleton GuiControlProfile(GuiPersonalClaimDayslblProfile: GuiBaseTextProfile)
      {
      	fontSize = 20;
      	fontColor = "153 153 153";
      	autoSizeWidth = true;
      };
      
      singleton GuiControlProfile(GuiPersonalClaimDaysValProfile: GuiBaseTextProfile)
      {
      	fontSize = 20;
      	fontColor = "255 255 255";
      	autoSizeWidth = true;
      };
      
      singleton GuiControlProfile(GuildCtrlCreateGuildTextProfile: GuiBaseTextProfile)
      {
      	fontSize = 20;
      	fontColor = "154 154 154";
      };
      
      singleton GuiControlProfile(GuildHeraldryBackProfile: GuiBaseTextProfile)
      {
      	opaque = true;
      	fillColor = "105 105 105";
      };
      
      singleton GuiControlProfile(GuildUsersBackProfile: GuiBaseTextProfile)
      {
      	opaque = true;
      	fillColor = "0 0 0 140";
      };
      
      singleton GuiControlProfile(GuildLabelTextProfile: GuiBaseTextProfile)
      {
      	fontSize = 20;
      	fontColor = "106 96 80";
      };
      
      singleton GuiControlProfile(GuildBlackVertLineProfile: GuiBaseTextProfile)
      {
      	opaque = true;
      	fillColor = "0 0 0";
      };
      
      singleton GuiControlProfile(GuildCountTextProfile: GuiBaseTextProfile)
      {
      	fontSize = 23;
      	fontColor = "255 255 255";
      };
      
      singleton GuiControlProfile(GuildCountNumProfile: GuildCountTextProfile)
      {
      	fontSize = 24;
      };
      
      singleton GuiControlProfile(GuildLeaderNameTextProfile: GuiBaseTextBoldProfile)
      {
      	fontSize = 20;
      	fontColor = "194 178 152";
      };
      
      singleton GuiControlProfile(GuildUserListTextProfile : GuiBaseTextProfile)
      {
      	fontSize = 20;
      	fontColor = "159 137 109";
      };
      
      singleton GuiControlProfile(GuildYuoAsMemberTextProfile : GuiBaseTextBoldProfile)
      {
      	fontSize = 20;
      	fontColor = "153 153 153";
      };
      
      singleton GuiControlProfile(GuildHeraldryBtnTextProfile: SelectionListBaseProfile)
      {
      	justify = "center";
      	fontSize = 22;
      	fontColor = "159 137 109";
      };
      
      singleton GuiControlProfile(SelectWorldWindowCaptionTextProfile: GuiBaseTextProfile)
      {
      	fontSize = 30;
      	fontColor = "170 147 116";
      	autoSizeWidth = "1";
      };
      
      singleton GuiControlProfile(SelectWorldNameTextProfile: GuiBaseTextProfile)
      {
      	fontSize = 20;
      	fontColor = "170 147 116";
      	autoSizeWidth = "0";
      };
      
      singleton GuiControlProfile(GuiMLTextTooltipProfile: GuiBaseTextProfile)
      {
      	fontSize = 19;
      	fontColor = "204 204 204";
      	autoSizeWidth = true;
      };
      
      singleton GuiControlProfile(GuiGrayMLTextTooltipProfile: GuiMLTextTooltipProfile)
      {
      	fontColor = "102 102 102";
      };
      
      singleton GuiControlProfile(GuiMLDescrTextTooltipProfile: GuiMLTextTooltipProfile)
      {
      	fontType = $GlobalTextItalicFontName;
      	fontColor = "153 153 153";
      };
      
      singleton GuiControlProfile(GuiTextTooltipProfile: GuiBaseTextProfile)
      {
      	fontSize = "19";
      	autoSizeWidth = true;
      };
      
      singleton GuiControlProfile(GuiGrayTextTooltipProfile: GuiTextTooltipProfile)
      {
      	fontColor = "102 102 102";
      };
      
      singleton GuiControlProfile(GuiGoldTextTooltipProfile: GuiTextTooltipProfile)
      {
      	fontColor = "255 215 0";
      };
      
      singleton GuiControlProfile(GuiLightTextTooltipProfile: GuiTextTooltipProfile)
      {
      	fontColor = "204 204 204";
      };
      
      singleton GuiControlProfile(GuiPositiveTextTooltipProfile: GuiTextTooltipProfile)
      {
      	fontColor = "120 196 121";
      };
      
      singleton GuiControlProfile(GuiStatBonusTextTooltipProfile: GuiPositiveTextTooltipProfile)
      {
      	justify = "Right";
      };
      
      singleton GuiControlProfile(GuiNegativeTextTooltipProfile: GuiTextTooltipProfile)
      {
      	fontColor = "211 87 74";
      };
      
      singleton GuiControlProfile(GuiCaptionTextTooltipProfile: GuiBaseCaptionProfile)
      {
      	fontSize = "22";
      	fontColor = "178 128 28";
      	autoSizeWidth = true;
      };
      
      singleton GuiControlProfile(GuiBoldTextTooltipProfile: GuiBaseTextBoldProfile)
      {
      	fontSize = "19";
      	autoSizeWidth = true;
      	fontColor = "178 128 28";
      };
      
      singleton GuiControlProfile(GuiMLCaptionTextTooltipProfile: GuiBaseCaptionProfile)
      {
      	fontSize = 22;
      	fontColor = "204 204 204";
      	autoSizeWidth = true;
      };
      
      singleton GuiControlProfile (InvItemGui: GuiBaseTextProfile)
      {
      	fontSize = 16;
      	fontColor = "201 178 148";
      	fontColorNA = "128 128 128";
      };
      
      singleton GuiControlProfile(GuiContextMenuProfile : GuiBaseTextProfile)
      {
      	autoCursorMode = true;
      };
      
      singleton GuiControlProfile(EscMenuButtonProfile : GuiBaseCaptionProfile)
      {
      	globalImageIndex = "atlas2";
      	fontSize = 30;
      	justify = "center";
      	textOffset = "0 -2";
      	border = "none";
      	fontColor = "203 203 203";
      	fontColorNA = "102 102 102";
      };
      
      singleton GuiControlProfile(GuiBarValProfile: GuiBaseCaptionProfile)
      {
      	fontSize = 21;
      	fontColor = "255 255 255";
      	justify = "center";
      };
      
      singleton GuiControlProfile(MessageBoxTextProfile : GuiBaseCaptionProfile)
      {
      	fontSize = 21;
      	fontColor = "178 128 28";
      	fontColorHL = "178 128 28";
      	fontColorSEL = "178 128 28";
      	justify = "center";
      };
      
      singleton GuiControlProfile(MessageBoxButtonProfile : GuiAtlas2ImageProfile)
      {
      	fontSize = 24;
      	fontColor = "204 204 204";
      	fontColorHL = "204 204 204";
      	fontColorSEL = "204 204 204";
      	justify = "center";
      	textOffset = "0 -2";
      };
      
      singleton GuiControlProfile(GuildCtrlNotGuildCaptionProfile: GuiBaseCaptionProfile)
      {
      	fontSize = 22;
      	fontColor = "192 129 0";
      	justify = "center";
      };
      
      singleton GuiControlProfile(GuildCtrlNotGuildTextProfile: GuiBaseTextProfile)
      {
      	fontSize = 20;
      	fontColor = "154 154 154";
      };
      
      singleton GuiControlProfile(GuildCtrlTextValueProfile: GuiBaseTextProfile)
      {
      	fontSize = 24;
      	fontColor = "204 204 204";
      	fontColorHL = "204 204 204";
      	fontColorNA = "204 204 204";
      	fontColorSEL = "204 204 204";
      	canKeyFocus = true;
      	cursorColor = "204 204 204 255";
      };
      
      singleton GuiControlProfile(GuildCtrlTextMemberProfile: GuildCtrlTextValueProfile)
      {
      	fontSize = 20;
      };
      
      singleton GuiControlProfile(GuildCtrlTextYourProfile: GuildCtrlTextMemberProfile)
      {
      	fontColor = "178 128 28";
      };
      
      singleton GuiControlProfile(GuildCtrlTextLeaderProfile: GuiBaseTextBoldProfile)
      {
      	fontColor = "178 128 28";
      	fontSize = 22;
      };
      
      singleton GuiControlProfile(GuildCtrlTextMemberCountProfile: GuiBaseCaptionProfile)
      {
      	fontColor = "178 128 28";
      	fontSize = 26;
      };
      
      singleton GuiControlProfile(GuildBtnProfile: GuiAtlas2ImageProfile)
      {
      	fontSize = 24;
      	fontColor = "204 204 204";
      	fontColorHL = "204 204 204";
      	fontColorNA = "204 204 204";
      	fontColorSEL = "204 204 204";
      	justify = "center";
      	textOffset = "0 -2";
      	border = "none";
      };
      
      singleton GuiControlProfile(SocialTitlePopUpProfile: GuiSkillPopUpProfile)
      {
      	profileForChildren = CreateCharWindowPopUpTextListProfile;
      	textOffset = "15 0";
      	globalImageIndex = "popUpCtrl";
      	border = "none";
      	fontSize = 24;
      	fontColor = "204 204 204";
      	fontColorNA = "204 204 204";
      	fontColorHL = "204 204 204";
      	fontColorSEL = "204 204 204";
      };
      
      singleton GuiControlProfile( GuiGuildRankLabelProfile : GuiBaseTextProfile) 
      {
      	fontSize = 20;
      	justify = "left";
      	fontColor = "104 104 104";
      };
      
      singleton GuiControlProfile(MessageBoxInputLabelProfile: GuiBaseCaptionProfile)
      {	
      	fontSize = 24;
      	fontColor = "270 147 116";
      	fontColor = "178 128 28";
      	fontColorHL = "178 128 28";
      	fontColorSEL = "178 128 28";    
      };
      
      singleton GuiControlProfile(MessageBoxInputTextProfile: GuiBaseTextProfile)
      {	
      	fontColor = "170 147 116";
      	fontSize = 24;
      	fontColor = "255 255 255";
      	textOffset = "15 0";
      	cursorColor = "255 255 255";
      	opaque = false;
      	border = "none";
      	tab = "1";
      	canKeyFocus = true;
      };
      Alles anzeigen
    • Schriftgröße des Ingame Chat.

      • Fabius Haselnuss
      • 27. Mai 2025 um 13:24

      Hey gerne helfe ich dir weiter und schreibe einmal nieder für andere auch wie man die Chat Schrift vergrößert

      Beide Änderungen die dafür gebraucht werden sind in der Datei profiles.cs im ordern Gamefolder\gui\profiles

      Die Chat Schrift wird vergrößert in dem der wert 18 angepasst wird in Zeile 82

      Code
      	fontSize = 20; Original = 18 //

      Die Cursor Schrift kann vergrößert werden in dem folgendes unter Zeile 352 hinzugefügt wird

      Code
      	fontSize = "20"; // Original = 14 gesetzt durch GuiBaseTextProfile //

      ich hoffe ich konnte dir und anderen weiter helfen

      Bei bedarf kann ich daraus auch ein mod schreiben der es einfacher macht die sachen raus zu suchen.

      Mit freundlichen Grüßen
      Fabius Haselnuss

    • Erweiterung der Stadt Kattegatt

      • Fabius Haselnuss
      • 27. Mai 2025 um 12:44

      hallo Sunniva kannst du uns bitte einmal schildern was du geplant hast noch zu machen?

      theoretisch spricht nichts dagegen nur würden wir vorher gerne wissen was du planst


      Mit freundlichen Grüßen
      Fabius Haselnuss

    • Claim auf Stufe 4

      • Fabius Haselnuss
      • 27. Mai 2025 um 12:43

      Hallo Marcel zum aktuellen Zeitpunkt lehne ich dein Antrag ab wegen folgendem Grund Dein Claim ist noch fast ganz leer (Siehe Bild)

      Der Inhalt kann nicht angezeigt werden, da Sie keine Berechtigung haben, diesen Inhalt zu sehen.


      Du darfst gerne später nochmal einen Antrag stellen wenn dein Claim ausgebaut ist und du die Sachen die du dafür brauchst zusammen hast

      Mit freundlichen Grüßen
      Fabius Haselnuss

    • Kasis Wünsch dir was Posting ^^

      • Fabius Haselnuss
      • 24. Mai 2025 um 13:34

      Danke für eure Vorschläge

      Wir erden sie uns ansehen und halten euch auf den laufenden solltet ihr weitere Vorschläge haben gebt sie gerne an uns weiter

    • Was wären deine wünsche für den Drachenplateau Server?

      • Fabius Haselnuss
      • 21. Mai 2025 um 01:35

      Hallo Viktorius leider hast du immer noch nicht verstanden was hier die ganze zeit versucht wird zu sagen ich sage es jetzt nochmal gerne eindeutig für dich
      eine Geschichte die sich keiner durchliest ist nichts wert am ende des Tages und Events dafür brauchst du erstmal Spieler und was ist ein Event wo der Spieler nur liefert und nichts bekommt kein Event sondern Ausbeutung aber fertig das Thema Event ist mittlerweile mehrfach geschlossen worden nimm das bitte jetzt hin zu deiner Lore möchte ich einfach nur mal zu sagen das die Spieler die noch da wahren und sind sagen sie können damit nichts anfangen also bitte höre auf immer von den selben Sachen zu reden wir werden dir immer wieder das selbe sagen mal deutlicher mal undeutlicher wie es scheint ich hoffe es wahr jetzt deutlich genug

      Zu deiner adminshop Sache sage ich hier nichts bis dein ganzes Konzept fertig ist aber dafür verlange ich auch das du darüber erst wieder redest wenn es fertig ist weil so wie du es grade machst kann keiner was dazu sagen nicht mal wir und wenn es fertig ist und die Leute und wir sagen ne ist nicht versucht du es wie jetzt mit Lore und Event auf zu zwingen von daher kann ich dir nur sagen gib dazu doch einblicke im passenden beitrag um zu sehen ob es in die richtige richtung geht oder nicht

    • Was wären deine wünsche für den Drachenplateau Server?

      • Fabius Haselnuss
      • 20. Mai 2025 um 19:29

      Das doch mal ne guter Vorschlag das man an gewissen stellen sagt wann der letzte refresh wahr bzw. das sie in gewissen abständen kommen den Vorschlag sehen wir uns gerne an wie wir den umsetzen können

    • Was wären deine wünsche für den Drachenplateau Server?

      • Fabius Haselnuss
      • 20. Mai 2025 um 19:11

      Das Ding dabei ist, dass wir das mit ihm bereits in einem Ticket ausführlich besprochen haben. Mehr möchte ich zu diesem Ticket an dieser Stelle nicht sagen.

      Ein weiterer Punkt ist, dass er bereits eine Lore angefangen hat, bei der kein Spieler mitgemacht hat. Er versucht immer wieder zu betonen, dass wir Events machen müssen, was aber nichts bringt, wenn niemand teilnimmt.

      Zum Thema Adminshop hätte er jederzeit, beziehungsweise kann er ja auch jetzt noch, seine Gedanken dazu einbringen. Im Passenden Forum Beitrag Das haben wir ihm auch mitgeteilt. Meine Frage ist nun: Warum macht er das nicht und will uns immer seine Geschichte aufzwingen?

      Wir sind momentan nicht bereit, eine Geschichte vorzugeben, da wir eher der Meinung sind, dass der Server seine eigene Geschichte schreiben sollte. Es bringt nichts, wenn wir eine Geschichte erfinden, zu der keiner ein RP aufbauen kann oder will, weil er andere Pläne hat. Man könnte eine Geschichte schreiben, wie es vor Jahren war, und sie dann enden lassen. Nach dem Motto: "Macht das Beste aus der heutigen Zeit und lasst Fehler nicht wiederholen." Das ist am Ende auch eine Geschichte. Aber muss man das machen? Von zwölf Spielern lesen sich das vielleicht drei durch – viel Arbeit für wenig Interessenten.

      Wir sollten eher berücksichtigen, was wir uns erhofft haben: Wir haben uns erhofft, Vorschläge zu bekommen, wie wir den Server anders gestalten können, damit er wieder interessanter wird. Und das sind keine Events, denn die kommen sowieso, wenn wieder mehr auf dem Server los ist. Deswegen haben wir das auch gleich im ersten Beitrag klargestellt, dass wir das nicht als Vorschlag meinen.
      Und Da frage ich mich eher, warum wir darüber diskutieren müssen, weil es von vorne rein im ersten Thread stand.

    • Wichtige Ankündigung: Map Refresh auf dem Life is Feudal Server (Drachenplateau) am Montag den 19.05.2025!

      • Fabius Haselnuss
      • 20. Mai 2025 um 10:43

      der Refresh wahr irgendwann zwischen 2 und 3 Uhr erledigt ohne Probleme

    • Was wären deine wünsche für den Drachenplateau Server?

      • Fabius Haselnuss
      • 20. Mai 2025 um 01:00

      Leider hast du immer noch nicht verstanden das der Weg einer lore kein Erfolg bringt genau so wie Events. Bei dir dreht sich leider immer alles darum, aber nicht um aktives in game, darum kann ich nur für mich sagen: schade das du damit aussagst das du gehst, aber ich kann es nicht verhindern. Möchte ich auch nicht, wir wollen nichts an der Geschichte ändern. Wir müssen alle zugeben: lif ist tot, death, ja es ist so, es gibt nicht mehr viele Server, aber die die es gibt haben alle die selbe Geschichte, Events punkt. Sag mir einen Server, der das nicht hat. Ja, wir macht uns das anders, ja sind wir dadurch schlechter laut dir. Ja, ich sage: nein wir wollen Motivation ins game bringen und wenn sich dadurch eine Geschichte entwickelt ist das genial aber keine 0816 Geschichte (lore), die auf einer Geschichte aufbaut klar das Zeitalter des games ist Gesichte aber muss man an allem festhalten, nein leider hast du den Ansporn des Themas noch immer nicht verstanden das es um Neuerungen gehen sollte

    • Wichtige Ankündigung: Map Refresh auf dem Life is Feudal Server (Drachenplateau) am Montag den 19.05.2025!

      • Fabius Haselnuss
      • 19. Mai 2025 um 23:34

      Mit Verspätung aber dennoch heute beginnt der refresh jetzt

    • Was wären deine wünsche für den Drachenplateau Server?

      • Fabius Haselnuss
      • 19. Mai 2025 um 15:51

      Leider ist das Thema nicht richtig aufgenommen wurden wir haben und Vorschläge für den Server gewünscht und nicht um das drum herum des weiteren wurde auch explizite gesagt das es hier nicht um Events geht Ja auch die Gewischte Lore zum Server wie er erstanden ist etc. ist ein Event.

      Unsere Vorstellung wahr es das Vorschläge dabei rum kommen wie zum Beispiel ein Skill Cap

      Den Skill Cap bringen wir als Team des Drachenplateau Servers damit als idee ein was haltet ihr von einem Skill Cap

      Mit freundlichen Grüßen
      Dein Grischabock.ch Team

    • Antrag auf Regeländerung /Sondergenehmigung

      • Fabius Haselnuss
      • 16. Mai 2025 um 15:55

      Ok das ist schade zu hören aber können wir nichts dran ändern aber um nochmal drauf zurück zu kommen klar kannst du vom skill her alles machen aber von der Größe her nicht musst dich da halt auf das speziell ausrichten was du machen möchtest und grade als rp Spieler müsstest du ja das auch befürworten um dadurch die rp Situationen mit anderen zu fördern

    • Wichtige Ankündigung: Map Refresh auf dem Life is Feudal Server (Drachenplateau) am Montag den 19.05.2025!

      • Fabius Haselnuss
      • 14. Mai 2025 um 10:51

      Hallo liebe Grischabock-Community,

      wir möchten euch über einen wichtigen Map Refresh informieren, der am kommenden Mittwoch auf unserem Life is Feudal Server „Drachenplateau“ stattfinden wird.

      Wichtige Details zum Map Refresh:

      • Teilweiser Refresh:
        • Es werden ausschließlich die ungeclaimten Bereiche der Karte zurückgesetzt.
        • Eure bestehenden Claims bleiben unverändert.
      • Unwiderrufliche Löschung von Gegenständen und Gebäuden:
        • Alle Gegenstände, Gebäude, Tiere und sonstigen Objekte, die sich außerhalb von Claims befinden, werden unwiderruflich gelöscht.
        • Bitte stellt sicher, dass alles, was ihr behalten möchtet, innerhalb eurer Claims platziert ist.
        • Es wird keine Erstattung für verlorene Gegenstände geben.
      • Straßen-Reset:
        • Alle Straßen, die nicht offiziell zur Sicherung angemeldet wurden, werden zurückgesetzt.
        • Nur Straßen, die einen Admin-Claim besitzen, bleiben erhalten.
        • Um eine Straße zu sichern, muss ein Antrag im Forum im Bereich Drachenplateau erstellt werden.
      • Datum: Montag, [19.05.2025]
      • Server: Life is Feudal – Drachenplateau
      • Uhrzeit: [22:00 uhr]

      Was bedeutet das für euch?

      • Überprüft eure Claims und stellt sicher, dass alle eure wichtigen Gegenstände und Gebäude darin enthalten sind.
      • Beachtet, dass alle ungeclaimten Gebiete und nicht gesicherten Straßen nach dem Refresh zurückgesetzt werden.
      • Um eine Straße zu sichern, muss ein Antrag im Forum im Bereich Drachenplateau erstellt werden.

      Wir bitten euch, diese Informationen aufmerksam zu lesen und eure Vorkehrungen rechtzeitig zu treffen.

      Bei Fragen stehen wir euch wie immer im Forum zur Verfügung.

      Wir freuen uns auf ein spannendes neues Kapitel auf dem Drachenplateau!

      Euer Grischabock-Team

    • Antrag auf Regeländerung /Sondergenehmigung

      • Fabius Haselnuss
      • 7. Mai 2025 um 00:11

      Hallo Andre deinen Antrag auf Regelaussetzung bzw. Anpassung kann ich wir nicht zustimmen da wir ja ein rp fördern wollen und nicht das jeder alles kann daher bitten wir dich, dich auf eine Sache zu spezialisieren
      Da wir wie erwähnt das rp fördern wollen.

    • Straßen claimen von Haitabu zu Handwerkergilde

      • Fabius Haselnuss
      • 20. April 2025 um 01:15

      Ist erldedigt

    • Drachenplateau-Server Pack

      • Fabius Haselnuss
      • 18. April 2025 um 03:14

      Fabius Haselnuss hat eine neue Version hinzugefügt:

      Datei

      Drachenplateau-Server Pack 2.0.2

      Hinzugefügt:
      Main Menü Hintergrund
      Lade Bilder
      Fabius Haselnuss
      18. April 2025 um 03:14
      Zitat

      Hinzugefügt:
      Main Menü Hintergrund
      Lade Bilder

    • Vorschläge für den Handelsposten

      • Fabius Haselnuss
      • 15. April 2025 um 23:36

      der vorschlag zum cider wurde angenommen

    • SF GM Tools

      • Fabius Haselnuss
      • 14. April 2025 um 00:05

      Fabius Haselnuss hat eine neue Datei hinzugefügt:

      Der Inhalt kann nicht angezeigt werden, da Sie keine Berechtigung haben, diesen Inhalt zu sehen.
      Zitat

      ACHTUNG: Dieser Mod ist nur für GameMaster nützlich und bringt dir als Spieler nichts ohne den Zugang zu den GM Tools.

      Features

      Ein/Aus schalten von GM (Game Master)

      Starter Pack -> Eine Reihe von Gegenständen für Startspieler hervorbringen

      Remove Effects -> Entfernt alle Effekte von deinem Spieler (Gift, Wiederbelebung, etc.)

      Spawn Items -> Gegenstände basierend auf ihrer ID, Menge, Qualität und Haltbarkeit erzeugen

      List Items -> Eine Schaltfläche, die die Seite Life is Feudal Items List aufruft

      TP to Player -> Geben Sie den Vornamen des Spielers ein und teleportieren Sie sich zu ihm

      Spawn Animals -> Spawnt das ausgewählte tier an deiner Position


      Tasten-Kombinationen

      • Drück ‘Alt + G’ GM Tools öffnen
      • Drück ‘Alt + T’ Ein und Aus schalten des GM Modes
      • Drück ‘Alt + F’ in Flug Modus Wechseln

      Installation

      1. Kopiere Alles aus der ZIP in dein Game Verzeichnis
      Alles anzeigen
    • Kräuterzahlen

      • Fabius Haselnuss
      • 11. April 2025 um 23:45

      >Der fix ist im Update 2.0.1 Des Server Packs enthalten

    Community Gameserver

    1. Drachenplateau

      Online 1/64 Spieler online
      Adresse
      drachenplateau.grischabock.ch
      Skillcap
      3000/3000/800
      Version
      yo_1.4.4.5
      Server beitreten
    2. Crazy Cow

      Online 0/16 Spieler online
      Adresse
      Crazy Cow by Grischabock.ch
      Karte
      Zielonka
      Version
      1.11.0.0

    Discord Server

    zum Grischabock Community
    Discord Server verbinden

    Deine Community

    Grischabock.ch

      Nutzungsbedingungen

      Datenschutzerklärung

      Impressum

      Kontakt

    Social Media

      Facebook

      Twitch

      Youtube

      Instagram

      Steam

    Über uns

      Grischabock.ch ist seit 2007 als Blog Online. Aktuell bietet die Plattform ein Forum, Shop, Lexikon, Blog, Testberichte sowie Bereiche für Geocacher, Dampfer, Streamer, Youtuber und Gamer an. Die Teilnahme ist kostenlos und bringt dir viele Vorteile um bei der Community aktiv mitzuwirken. Du hast zudem als Gast oder auch als Community Member die Möglichkeit dich auf dem eigenen Discord Server einzufinden und da zu schreiben oder auch mit anderen dich in eine Unterhaltung zu vertiefen. Grischabock selbst ist Streamer auf Twitch und alle Follower sowie Natürlich auch Subscriber haben hier die Möglichkeit auf den Stream einzuwirken.

    Wer jetzt nicht teilt ist selber Schuld:
    Shady Design coded & layout by Gino Zantarelli 2024-2025©
    Benutzergruppenrechte für alle Gruppen einstellen von norse
    Beschränkung letzte Aktivitäten von norse
    Hosting & Design by GrischaMedia.ch