1. Dashboard
  2. Forum
    1. Unerledigte Themen
  3. Downloads
  4. Galerie
    1. Alben
  5. Toolbox
    1. Passwort Generator
    2. Portchecker
  6. Mitglieder
    1. Mitgliedersuche
    2. Benutzer online
    3. Trophäen
    4. Team
Mo: 19 Mai 2025
  • Anmelden oder registrieren
  • Suche
Dieses Thema
  • Alles
  • Dieses Thema
  • Dieses Forum
  • Artikel
  • Forum
  • Dateien
  • Seiten
  • Bilder
  • Erweiterte Suche

Schön, dass du den Weg zu NodeZone.net gefunden hast! Aktuell bist du nicht angemeldet und kannst deshalb nur eingeschränkt auf unsere Community zugreifen. Um alle Funktionen freizuschalten, spannende Inhalte zu entdecken und dich aktiv einzubringen, registriere dich jetzt kostenlos oder melde dich mit deinem Account an.

Anmelden oder registrieren
    1. Nodezone.net Community
    2. Forum
    3. Gameserver & Hosting
    4. ArmA Series - ArmA 3 / Reforger
    5. Hilfeforum

    XM8 Settings Taste auf Seite 2 Fehlt Incl. Funktion

      • Exile Mod
    • Lord1385
    • 27. Januar 2020 um 13:03
    • Erledigt
    • Lord1385
      Frischling
      Trophäen
      6
      Beiträge
      9
      • 27. Januar 2020 um 13:03
      • #1

      Hallo Gemeinde,

      Ich habe einen Exile Server am Laufen x64 bit Dazu die Passende extDB3 die auch funktioniert. Allerdings funktioniert das XM8 nicht bzw nicht richtig es fehlt die Settings Taste auf Seite 2 Wo man sich für andere Spieler Sichtbar machen kann zum einladen. Jetzt habe ich gestern in der Config gesehen das unten die Zeilen für das XM8 fehlen.

      Xm8 Settings
      Code
       class CfgVirtualGarage
      {
          /*
              Enable or disable virtual garage on the server
              Options:
                  0: Disable virtual garage
                  1: Enable virtual garage
          */
          enableVirtualGarage = 1;    
          
          /*
              Enables or disables the ability to access virtual garage while in combat
              Options:
                  0: Players cannot access virtual garage while they are in combat
                  1: Players can access virtual garage when they are in combat
          */
          canAccessGarageInCombat = 0;
          
          /*
              When enabled, this will dump any items and money from the vehicle onto the ground where the car was.
              Options:
                  0: Do not clear inventory and money
                  1: Clear inventory and money
          */
          clearInventoryOnStore = 1;
          
          /*
              The maximum number of vehicles that can be stored in the VG for that territory.
              Use -1 to disable the ability to store vehicles at that level.
              Make sure to have the same number of levels here as you do in CfgTerritories!
          */
          numberOfVehicles[] = 
          {
              -1,            // Level 1
              5,             // Level 2 
              8,             // Level 3
              11,         // Level 4
              13,         // Level 5
              15,         // Level 6
              18,         // Level 7
              21,         // Level 8
              25,         // Level 9
              28             // Level 10
          };
          
          /*
              The allowed types of vehicles that can be stored in the garage    
              Available Types: "Car", "Tank", "Plane", "Air", "Ship", "Submarine"
          */
          allowedVehicleTypes[] = {"Car","Tank","Plane","Air","Ship","Submarine"};
      };
      class CfgXM8 
      {
          class settings
          {
              controlID = 4070;
              appID = "App01";
              title = "Settings";
          };
          
          class healthScanner
          {
              controlID = 4120;
              appID = "App02";
              title = "Health Scanner";
          };
          
          class slothMachine
          {
              controlID = 4140;
              appID = "App03";
              title = "Sloth Machine";
          };
      };
      /*
          XM8 Extra apps, the Exile way of doing it
          
          Here is an example app layout:
          class XM8_App01_Button: RscExileXM8AppButton1x1
          {
              textureNoShortcut = "";      // Path to picture. This can be via mission file or client side PBO
              text = "";                    // The name of the app to be display on the button
              onButtonClick = "";            // The code to fire when the app is clicked
              resource = "";                // The name of the resource to load for the app, leave as an empty string if you just want to run code without a GUI, like BOOM or spawning a bike
          };
      */
      
      class XM8_App01_Button: RscExileXM8AppButton1x1
      {
          textureNoShortcut = "\exile_assets\texture\ui\xm8_app_settings_ca.paa";
          text = "Settings";
          onButtonClick = "['settings', 0] call ExileClient_gui_xm8_slide";
          resource = "XM8SlideSettings";
      };
      
      class XM8_App02_Button: RscExileXM8AppButton1x1
      {
          textureNoShortcut = "\exile_assets\texture\ui\xm8_app_health_scanner_ca.paa";
          text = "Health Scanner";
          onButtonClick = "['healthScanner', 0] call ExileClient_gui_xm8_slide";
          resource = "XM8SlideHealthScanner";
      };
      
      class XM8_App03_Button: RscExileXM8AppButton1x1
      {
          textureNoShortcut = "\exile_assets\texture\ui\xm8_app_slothMachine_ca.paa";
          text = "Sloth Machine";
          onButtonClick = "['slothMachine', 0] call ExileClient_gui_xm8_slide";
          resource = "XM8SlideSlothMachine";
      };
      
      class XM8_App04_Button: RscExileXM8AppButton1x1
      {
          textureNoShortcut = "\exile_assets\texture\ui\xm8_app_boom_ca.paa";
          text = "BOOM!";
          onButtonClick = "call ExileClient_system_breaching_detonate";
          resource = "";
      };
      
      class XM8_App05_Button: RscExileXM8AppButton1x1
      {
          textureNoShortcut = "";
          text = "";
          onButtonClick = "";
          resource = "";
      };
      
      class XM8_App06_Button: RscExileXM8AppButton1x1
      {
          textureNoShortcut = "";
          text = "";
          onButtonClick = "";
          resource = "";
      };
      
      class XM8_App07_Button: RscExileXM8AppButton1x1
      {
          textureNoShortcut = "";
          text = "";
          onButtonClick = "";
          resource = "";
      };
      
      class XM8_App08_Button: RscExileXM8AppButton1x1
      {
          textureNoShortcut = "";
          text = "";
          onButtonClick = "";
          resource = "";
      };
      
      class XM8_App09_Button: RscExileXM8AppButton1x1
      {
          textureNoShortcut = "";
          text = "";
          onButtonClick = "";
          resource = "";
      };
      
      class XM8_App10_Button: RscExileXM8AppButton1x1
      {
          textureNoShortcut = "";
          text = "";
          onButtonClick = "";
          resource = "";
      };
      
      class XM8_App11_Button: RscExileXM8AppButton1x1
      {
          textureNoShortcut = "";
          text = "";
          onButtonClick = "";
          resource = "";
      };
      
      class XM8_App12_Button: RscExileXM8AppButton1x1
      {
          textureNoShortcut = "";
          text = "";
          onButtonClick = "";
          resource = "";
      };
      
      class XM8_App13_Button: RscExileXM8AppButton1x1
      {
          textureNoShortcut = "";
          text = "";
          onButtonClick = "";
          resource = "";
      };
      
      class XM8_App14_Button: RscExileXM8AppButton1x1
      {
          textureNoShortcut = "";
          text = "";
          onButtonClick = "";
          resource = "";
      };
      
      //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
      //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
      //                                               BELOW IS WHERE ALL THE XM8 APP RESOURCES CAN GO
      //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
      //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
      class XM8SlideSettings: RscExileXM8Slide 
      {
          idc = 4070;
          class Controls 
          {
              class GoBackButton: RscExileXM8ButtonMenu
              {
                  idc = 4071;
                  text = "GO BACK"; 
                  x = (30 - 3) * (0.025);
                  y = (19 - 2) * (0.04);
                  w = 6 * (0.025);
                  h = 1 * (0.04);
                  onButtonClick = "['extraApps', 1] call ExileClient_gui_xm8_slide";
              };
      
              class 8GDropDown: RscExileXM8Combo
              {
                  idc = 4072;
                  x = (5 - 3) * (0.025);
                  y = (5 - 2) * (0.04);
                  w = 7 * (0.025);
                  h = 1 * (0.04);
                  onLBSelChanged = "_this call ExileClient_gui_xm8_slide_settings_event_on8GSelectionChanged";
              };
      
              class 8GLabel: RscExileXM8Text
              {
                  idc = -1;
                  text = "Show my device in global 8G network."; 
                  x = (13 - 3) * (0.025);
                  y = (5 - 2) * (0.04);
                  w = 22 * (0.025);
                  h = 1 * (0.04);
                  shadow = 0;
              };
      
              class SoundDropDown: RscExileXM8Combo
              {
                  idc = 4075;
                  x = (5 - 3) * (0.025);
                  y = (7 - 2) * (0.04);
                  w = 7 * (0.025);
                  h = 1 * (0.04);
                  onLBSelChanged = "_this call ExileClient_gui_xm8_slide_settings_event_onSoundSelectionChanged";
              };
      
              class SoundLabel: RscExileXM8Text
              {
                  idc = -1;
                  text = "Play a beep sound on notifications."; 
                  x = (13 - 3) * (0.025);
                  y = (7 - 2) * (0.04);
                  w = 22 * (0.025);
                  h = 1 * (0.04);
                  shadow = 0;
              };
      
              class PartyEspDropDown: RscExileXM8Combo
              {
                  idc = 4076;
                  x = (5 - 3) * (0.025);
                  y = (9 - 2) * (0.04);
                  w = 7 * (0.025);
                  h = 1 * (0.04);
                  onLBSelChanged = "_this call ExileClient_gui_xm8_slide_settings_event_onPartyEspSelectionChanged";
              };
      
              class PartyEspLabel: RscExileXM8Text
              {
                  idc = -1;
                  text = "Color of 3D party icons and name tags."; 
                  x = (13 - 3) * (0.025);
                  y = (9 - 2) * (0.04);
                  w = 22 * (0.025);
                  h = 1 * (0.04);
                  shadow = 0;
              };
      
              class PartyEspSlider: RscExileXM8XSliderH
              {
                  idc = 4078;
                  x = (5 - 3) * (0.025);
                  y = (11 - 2) * (0.04);
                  w = 7 * (0.025);
                  h = 1 * (0.04);
                  onSliderPosChanged = "_this call ExileClient_gui_xm8_slide_settings_event_onPartyEspSliderChanged";
              };
      
              class PartyEspSliderLabel: RscExileXM8Text
              {
                  idc = -1;
                  text = "Opacity of 3D party icons and name tags."; 
                  x = (13 - 3) * (0.025);
                  y = (11 - 2) * (0.04);
                  w = 22 * (0.025);
                  h = 1 * (0.04);
                  shadow = 0;
              };
      
              class PartyMarkerSlider: RscExileXM8XSliderH
              {
                  idc = 4079;
                  x = (5 - 3) * (0.025);
                  y = (13 - 2) * (0.04);
                  w = 7 * (0.025);
                  h = 1 * (0.04);
                  onSliderPosChanged = "_this call ExileClient_gui_xm8_slide_settings_event_onPartyMarkerSliderChanged";
              };
      
              class PartyMarkerSliderLabel: RscExileXM8Text
              {
                  idc = -1;
                  text = "Opacity of 3D party markers."; 
                  x = (13 - 3) * (0.025);
                  y = (13 - 2) * (0.04);
                  w = 22 * (0.025);
                  h = 1 * (0.04);
                  shadow = 0;
              };
      
              class StreamModeDropDown: RscExileXM8Combo
              {
                  idc = 4077;
                  x = (5 - 3) * (0.025);
                  y = (15 - 2) * (0.04);
                  w = 7 * (0.025);
                  h = 1 * (0.04);
                  onLBSelChanged = "_this call ExileClient_gui_xm8_slide_settings_event_onStreamModeSelectionChanged";
              };
      
              class StreamModeLabel: RscExileXM8Text
              {
                  idc = -1;
                  text = "Masquerade PIN codes. Perfect for streamers."; 
                  x = (13 - 3) * (0.025);
                  y = (15 - 2) * (0.04);
                  w = 22 * (0.025);
                  h = 1 * (0.04);
                  shadow = 0;
              };
          };
      };
      
      class XM8SlideHealthScanner: RscExileXM8Slide
      {
          idc = 4120;
          class Controls 
          {
              class GoBackButton: RscExileXM8ButtonMenu
              {
                  idc = 4122;
                  text = "GO BACK"; 
                  x = (30 - 3) * (0.025);
                  y = (19 - 2) * (0.04);
                  w = 6 * (0.025);
                  h = 1 * (0.04);
                  onButtonClick = "['extraApps', 1] call ExileClient_gui_xm8_slide";
              };
      
              class HealthInfoControlGroup: RscExileXM8ControlsGroupNoHScrollbars
              {
                  idc = -1;
                  x = (5 - 3) * (0.025);
                  y = (5 - 2) * (0.04);
                  w = 30 * (0.025);
                  h = 15 * (0.04);
                  colorBackground[] = {0,0,0,0.25};
      
                  class controls
                  {
                      class HealthInfo: RscExileXM8StructuredText
                      {
                          idc = 4121;
                          x = 0;
                          y = 0;
                          w = 29 * (0.025); // minus 1!
                          h = 15 * (0.04);
                      };
                  };
              };
          };
      };
      
      class XM8SlideSlothMachine: RscExileXM8Slide
      {
          idc = 4140;
          class Controls 
          {
              class Background: RscExileXM8PictureKeepAspect
              {
                  idc = -1;
                  text = "\exile_assets\texture\ui\slothMachine\xm8_slothMachineBackground.paa";
                  x = -3.1 * (0.025) + (0);
                  y = -6 * (0.04) + (0);
                  w = 40 * (0.025);
                  h = 33 * (0.04);
              };
              
              class XM8SlothMachineSpinButton: RscExileXM8PictureButton
              {
                  idc = 4141;
                  style = 0x30;
                  x = 14.3 * (0.025) + (0);
                  y = 15.9 * (0.04) + (0);
                  w = 5.7 * (0.025);
                  h = 2 * (0.04);
                  text = "\exile_assets\texture\ui\slothMachine\button_off_ca.paa";
                  action = "[] call ExileClient_gui_xm8_slide_slothMachine_event_onSpinButtonClick;";
              };
              
              class GoBackButton: RscExileXM8ButtonMenu
              {
                  idc = 4148;
                  text = "GO BACK"; 
                  x = (30 - 3) * (0.025);
                  y = (19 - 2) * (0.04);
                  w = 6 * (0.025);
                  h = 1 * (0.04);
                  sizeEx = .9 * (0.04);
                  onButtonClick = "['extraApps', 1] call ExileClient_gui_xm8_slide";
              };
              
              class PopTabsLabel: RscExileXM8StructuredText
              {
                  idc = 4142;
                  text = "<t align='center'><t color='#e14141'><img image='\exile_assets\texture\ui\poptab_inline_ca.paa' size='1' shadow='true' /></t>";
                  x = 6.5 * (0.025) + (0);
                  y = 13 * (0.04) + (0);
                  w = 6 * (0.025);
                  h = 2 * (0.04);
              };
              
              class JackpotLabel: RscExileXM8StructuredText
              {
                  idc = 4143;
                  text = "<t align='center'><t color='#e14141'></t>";
                  x = 14 * (0.025) + (0);
                  y = 13 * (0.04) + (0);
                  w = 6 * (0.025);
                  h = 2 * (0.04);
              };
              
              class WinningsLabel: RscExileXM8StructuredText
              {
                  idc = 4144;
                  text = "<t align='center'><t color='#e14141'>0</t>";
                  x = 21.5 * (0.025) + (0);
                  y = 13 * (0.04) + (0);
                  w = 6 * (0.025);
                  h = 2 * (0.04);
              };
              
              class Symbol01: RscExileXM8PictureKeepAspect
              {
                  idc = 4145;
                  text = "";
                  x = 6.55 * (0.025) + (0);
                  y = 4 * (0.04) + (0);
                  w = 5.83 * (0.025);
                  h = 5 * (0.04);
              };
              
              class Symbol02: RscExileXM8PictureKeepAspect
              {
                  idc = 4146;
                  text = "";
                  x = 14.1 * (0.025) + (0);
                  y = 4 * (0.04) + (0);
                  w = 5.83 * (0.025);
                  h = 5 * (0.04);
              };
              
              class Symbol03: RscExileXM8PictureKeepAspect
              {
                  idc = 4147;
                  text = "";
                  x = 21.6 * (0.025) + (0);
                  y = 4 * (0.04) + (0);
                  w = 5.83 * (0.025);
                  h = 5 * (0.04);
              };
          };
      };
      Alles anzeigen

      Das ist aus meiner Config alles raus da läuft der Server.

      Wenn ich die einfüge Startet der Server nicht mehr mit Fehlermeldung class XM8_App01_Button: RscExileXM8AppButton1x1 nicht Konfiguriert. bei der extDB3 musste man ja die XM8.DLL und XM8.so Löschen. Gibt es Möglichkeiten das wieder Hinzubekommen?

      Vielen dank schonmal

    • Kuchenplatte
      Erleuchteter
      Reaktionen
      1.013
      Beiträge
      3.387
      Dateien
      7
      Bilder
      10
      • 27. Januar 2020 um 14:02
      • #2

      Du kannst nicht einfach die XM8.dll löschen - ja wir sprechen über Arma3 und 64Bit aber Exile auf 64Bit zu stellen war ein Fehler ( meine Meinung ) weil wenn man sich etwas durch fuchst und Beiträge ließt - wurde die Anpassung auf Exile 64 Bit weit verfehlt. Ja Exile läuft auf 64Bit aber die Scripte und die Ressourcen bleiben dafür auf der Strecke - wir hatten damals einen Exile Server 20-25 Spieler.
      Keinerlei Probleme mit 32Bit

      Shadow|Eagle: "Frag mich eher why ich dich nicht noch irgendwas gegeben hab als Vorschlag xD"

      !Acryl-Exile Server!

      195.201.148.155:2302

      Kuchenplatte On GitHub

      https://github.com/Kuchenplatte

      Kuchenplattes Backstube

      Kuchenplattes Discord

      Kuchenplatte On Twitch
      Come On and Follow Me! On Twitch.TV

    • Lord1385
      Frischling
      Trophäen
      6
      Beiträge
      9
      • 27. Januar 2020 um 15:43
      • #3

      In der Anleitung von extDB 3 Steht drin das man die Löschen soll... So an für sich läuft der Server... Nur das XM8 Läuft nicht rund das ist nervig also meinst das es keine Möglichkeit gibt das das es wieder Läuft

    • Kuchenplatte
      Erleuchteter
      Reaktionen
      1.013
      Beiträge
      3.387
      Dateien
      7
      Bilder
      10
      • 27. Januar 2020 um 19:17
      • #4

      Da ich Exile und extdb3 nie assoziiert habe leider nicht.

      Shadow|Eagle: "Frag mich eher why ich dich nicht noch irgendwas gegeben hab als Vorschlag xD"

      !Acryl-Exile Server!

      195.201.148.155:2302

      Kuchenplatte On GitHub

      https://github.com/Kuchenplatte

      Kuchenplattes Backstube

      Kuchenplattes Discord

      Kuchenplatte On Twitch
      Come On and Follow Me! On Twitch.TV

    • Lord1385
      Frischling
      Trophäen
      6
      Beiträge
      9
      • 30. Januar 2020 um 12:41
      • #5

      Es haben die ganzen Datein Gefehlt für das XM8 incl. den eintrag in die Description.sqf

    Registrieren oder Einloggen

    Du bist noch kein Mitglied von Native-Servers.com? Registriere dich kostenlos und werde Teil einer großartigen Community!

    Benutzerkonto erstellen

    Benutzer online in diesem Thema

    • 1 Besucher

    Wichtige Links & Informationen

    Server & Hosting-Ressourcen

      Server Administration & Hosting Basics

      Windows Server Support & Guides

      Linux Server Configuration & Help

      Setting up TeamSpeak 3 & VoIP Servers

      Domains & Web Hosting for Beginners & Professionals

      Cloud Hosting, Docker & Kubernetes Tutorials

    Gameserver & Modding-Ressourcen

      ArmA 3 Tutorials & Script Collection

      Renting & Operating Gameservers

      DayZ Server Management & Help

      FiveM (GTA V) Server & Script Development

      Rust Server Modding & Administration

      Setting up & Optimizing ARK Survival Servers

    NodeZone.net – Deine Community für Gameserver, Server-Hosting & Modding

      NodeZone.net ist dein Forum für Gameserver-Hosting, Rootserver, vServer, Webhosting und Modding. Seit 2015 bietet unsere Community eine zentrale Anlaufstelle für Server-Admins, Gamer und Technikbegeisterte, die sich über Server-Management, Hosting-Lösungen und Spielemodding austauschen möchten.


      Ob Anleitungen für eigene Gameserver, Hilfe bei Root- und vServer-Konfigurationen oder Tipps zu Modding & Scripting – bei uns findest du fundiertes Wissen und praxisnahe Tutorials. Mit einer stetig wachsenden Community findest du hier Antworten auf deine Fragen, Projektpartner und Gleichgesinnte für deine Gaming- und Serverprojekte. Schließe dich NodeZone.net an und werde Teil einer aktiven Community rund um Server-Hosting, Gameserver-Management und Modding-Ressourcen.

    Wer jetzt nicht teilt ist selber Schuld:
    1. Nutzungsbestimmungen
    2. Datenschutzerklärung
    3. Impressum
    4. Urheberrechts- oder Lizenzverstoß melden
  • Trimax Design coded & layout by Gino Zantarelli 2023-2025©
    Community-Software: WoltLab Suite™