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: 09 Juni 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

    Problem mit extDB3

    • ImprovedLife-RPG
    • 4. Januar 2019 um 06:35
    • Geschlossen
    • Erledigt
    • ImprovedLife-RPG
      Frischling
      Trophäen
      7
      Beiträge
      6
      • 4. Januar 2019 um 06:35
      • #1

      Wenn ich meinen Server starte bekomme ich Fehlermeldungen im Log. (siehe Anhang)
      Ich bitte um Hilfe und bedanke mich im Vorraus.

      Im Anhang meine extDB Conf.ini, mein extDB3 Log und meine Datenbank Datei die ich auf meinen MySQL Server eingespielt habe.

      Dateien

      6-27-35.log 1,89 kB – 168 Downloads conf_u_datenbank.zip 2,4 kB – 239 Downloads
    • Herr_Oster
      Amateur
      Reaktionen
      13
      Trophäen
      9
      Beiträge
      177
      Bilder
      28
      • 4. Januar 2019 um 07:07
      • #2

      Schau mal ob das funktioniert, habe die Procedure mal hinzugefügt (und alle CREATE TABLE in CREATE TABLE IF NOT EXISTS geändert (So kann die SQF auch mehrfach ausgeführt werden ohne dabei für fehler zu sorgen))

      Ganz wichtig: Ich habe das ganze nicht getestet und wenn dies funktioniert (oder eben nicht) gib bitte nochmal Rückmeldung unter diesem Post ;)

      MfG.

      Pascalo1233 ~ Herr_Oster

      Code: NICHT GETESTET!
      -- phpMyAdmin SQL Dump
      -- version 4.6.5.2
      -- https://www.phpmyadmin.net/
      --
      -- Host: localhost
      -- Erstellungszeit: 10. Jun 2018 um 06:21
      -- Server-Version: 5.7.17-log
      -- PHP-Version: 5.6.30
      
      SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
      SET time_zone = "+00:00";
      
      
      /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
      /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
      /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
      /*!40101 SET NAMES utf8mb4 */;
      
      --
      -- Datenbank: `altislife17_2`
      --
      -- Drop procedures to ensure no conflicts
      --
      DROP PROCEDURE IF EXISTS `resetLifeVehicles`;
      DROP PROCEDURE IF EXISTS `deleteDeadVehicles`;
      DROP PROCEDURE IF EXISTS `deleteOldHouses`;
      DROP PROCEDURE IF EXISTS `deleteOldGangs`;
      DROP PROCEDURE IF EXISTS `deleteOldContainers`;
      DROP PROCEDURE IF EXISTS `deleteOldWanted`;
      
      DELIMITER $$
      --
      -- Prozeduren
      --
      CREATE DEFINER=`root`@`localhost` PROCEDURE `deleteDeadVehicles`()
      BEGIN
        DELETE FROM `vehicles` WHERE `alive` = 0;
      END$$
      
      CREATE DEFINER=`root`@`localhost` PROCEDURE `deleteOldContainers`()
      BEGIN
        DELETE FROM `containers` WHERE `owned` = 0;
      END$$
      
      CREATE DEFINER=`root`@`localhost` PROCEDURE `deleteOldGangs`()
      BEGIN
        DELETE FROM `gangs` WHERE `active` = 0;
      END$$
      
      CREATE DEFINER=`root`@`localhost` PROCEDURE `deleteOldHouses`()
      BEGIN
        DELETE FROM `houses` WHERE `owned` = 0;
      END$$
      
      CREATE DEFINER=`root`@`localhost` PROCEDURE `resetLifeVehicles`()
      BEGIN
        UPDATE `vehicles` SET `active`= 0;
      END$$
      
      DELIMITER ;
      -- --------------------------------------------------------
      
      --
      -- Tabellenstruktur für Tabelle `containers`
      --
      
      CREATE TABLE IF NOT EXISTS `containers` (
        `id` int(6) NOT NULL,
        `pid` varchar(17) NOT NULL,
        `classname` varchar(32) NOT NULL,
        `pos` varchar(64) DEFAULT NULL,
        `inventory` text NOT NULL,
        `gear` text NOT NULL,
        `dir` varchar(128) DEFAULT NULL,
        `active` tinyint(1) NOT NULL DEFAULT '0',
        `owned` tinyint(1) DEFAULT '0',
        `insert_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
      
      -- --------------------------------------------------------
      
      --
      -- Tabellenstruktur für Tabelle `dynmarket`
      --
      
      CREATE TABLE IF NOT EXISTS `dynmarket` (
        `id` int(11) NOT NULL DEFAULT '1',
        `prices` text NOT NULL
      ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
      
      --
      -- Daten für Tabelle `dynmarket`
      --
      
      INSERT INTO `dynmarket` (`id`, `prices`) VALUES
      (1, '[]');
      
      -- --------------------------------------------------------
      
      --
      -- Tabellenstruktur für Tabelle `gangs`
      --
      
      CREATE TABLE IF NOT EXISTS `gangs` (
        `id` int(6) NOT NULL,
        `owner` varchar(32) DEFAULT NULL,
        `name` varchar(32) DEFAULT NULL,
        `members` text,
        `maxmembers` int(3) DEFAULT '8',
        `bank` int(100) DEFAULT '0',
        `active` tinyint(1) DEFAULT '1',
        `insert_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
      
      -- --------------------------------------------------------
      
      --
      -- Tabellenstruktur für Tabelle `houses`
      --
      
      CREATE TABLE IF NOT EXISTS `houses` (
        `id` int(6) NOT NULL,
        `pid` varchar(17) NOT NULL,
        `pos` varchar(64) DEFAULT NULL,
        `owned` tinyint(1) DEFAULT '0',
        `garage` tinyint(1) NOT NULL DEFAULT '0',
        `insert_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
      
      -- --------------------------------------------------------
      
      --
      -- Tabellenstruktur für Tabelle `players`
      --
      
      CREATE TABLE IF NOT EXISTS `players` (
        `uid` int(6) NOT NULL,
        `name` varchar(32) NOT NULL,
        `aliases` text NOT NULL,
        `pid` varchar(17) NOT NULL,
        `cash` int(100) NOT NULL DEFAULT '0',
        `bankacc` int(100) NOT NULL DEFAULT '0',
        `coplevel` enum('0','1','2','3','4','5','6','7') NOT NULL DEFAULT '0',
        `mediclevel` enum('0','1','2','3','4','5') NOT NULL DEFAULT '0',
        `civ_licenses` text NOT NULL,
        `cop_licenses` text NOT NULL,
        `med_licenses` text NOT NULL,
        `civ_gear` text NOT NULL,
        `cop_gear` text NOT NULL,
        `med_gear` text NOT NULL,
        `civ_stats` varchar(32) NOT NULL DEFAULT '"[100,100,0]"',
        `cop_stats` varchar(32) NOT NULL DEFAULT '"[100,100,0]"',
        `med_stats` varchar(32) NOT NULL DEFAULT '"[100,100,0]"',
        `arrested` tinyint(1) NOT NULL DEFAULT '0',
        `adminlevel` enum('0','1','2','3','4','5') NOT NULL DEFAULT '0',
        `donorlevel` enum('0','1','2','3','4','5') NOT NULL DEFAULT '0',
        `blacklist` tinyint(1) NOT NULL DEFAULT '0',
        `civ_alive` tinyint(1) NOT NULL DEFAULT '0',
        `civ_position` varchar(64) NOT NULL DEFAULT '"[]"',
        `playtime` varchar(32) NOT NULL DEFAULT '"[0,0,0]"',
        `insert_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
        `last_seen` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
        `adac_licenses` text NOT NULL,
        `adac_gear` text NOT NULL,
        `adaclevel` enum('0','1','2','3','4','5') NOT NULL DEFAULT '0',
        `adac_stats` varchar(11) NOT NULL DEFAULT '"[100,100]"'
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
      
      --
      -- Daten für Tabelle `players`
      --
      
      INSERT INTO `players` (`uid`, `name`, `aliases`, `pid`, `cash`, `bankacc`, `coplevel`, `mediclevel`, `civ_licenses`, `cop_licenses`, `med_licenses`, `civ_gear`, `cop_gear`, `med_gear`, `civ_stats`, `cop_stats`, `med_stats`, `arrested`, `adminlevel`, `donorlevel`, `blacklist`, `civ_alive`, `civ_position`, `playtime`, `insert_time`, `last_seen`, `adac_licenses`, `adac_gear`, `adaclevel`, `adac_stats`) VALUES
      (12, 'Kuchenplatte', '\"[`Kuchenplatte`]\"', '76561198066801550', 0, 3000, '0', '0', '\"[[`license_civ_driver`,0],[`license_civ_boat`,0],[`license_civ_pilot`,0],[`license_civ_trucking`,0],[`license_civ_gun`,0],[`license_civ_dive`,0],[`license_civ_home`,0],[`license_civ_oil`,0],[`license_civ_diamond`,0],[`license_civ_salt`,0],[`license_civ_sand`,0],[`license_civ_iron`,0],[`license_civ_copper`,0],[`license_civ_cement`,0],[`license_civ_medmarijuana`,0],[`license_civ_cocaine`,0],[`license_civ_heroin`,0],[`license_civ_marijuana`,0],[`license_civ_rebel`,0]]\"', '\"[]\"', '\"[]\"', '\"[`U_C_Poloshirt_tricolour`,``,``,``,``,[`ItemMap`,`ItemCompass`,`ItemWatch`],[],[],[],[],[],[],[],[],[``,``,``,``],[``,``,``,``],[]]\"', '\"[]\"', '\"[]\"', '\"[100,100,0]\"', '\"[100,100,0]\"', '\"[100,100,0]\"', 0, '0', '0', 0, 1, '\"[3476.17,13322.8,0.557089]\"', '\"[0,1,0]\"', '2018-06-10 00:01:08', '2018-06-10 03:50:38', '\"[]\"', '\"[``,``,``,``,``,[],[],[],[],[],[],[],[],[],[``,``,``,``],[``,``,``,``],[]]\"', '5', '\"[100,100,0');
      
      -- --------------------------------------------------------
      
      --
      -- Tabellenstruktur für Tabelle `vehicles`
      --
      
      CREATE TABLE IF NOT EXISTS `vehicles` (
        `id` int(6) NOT NULL,
        `side` varchar(16) NOT NULL,
        `classname` varchar(64) NOT NULL,
        `type` varchar(16) NOT NULL,
        `pid` varchar(17) NOT NULL,
        `alive` tinyint(1) NOT NULL DEFAULT '1',
        `blacklist` tinyint(1) NOT NULL DEFAULT '0',
        `active` tinyint(1) NOT NULL DEFAULT '0',
        `plate` int(20) NOT NULL,
        `color` int(20) NOT NULL,
        `inventory` text NOT NULL,
        `gear` text NOT NULL,
        `fuel` double NOT NULL DEFAULT '1',
        `damage` varchar(256) NOT NULL,
        `insert_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
      
      -- --------------------------------------------------------
      
      --
      -- Tabellenstruktur für Tabelle `wanted`
      --
      
      CREATE TABLE IF NOT EXISTS `wanted` (
        `wantedID` varchar(64) NOT NULL,
        `wantedName` varchar(32) NOT NULL,
        `wantedCrimes` text NOT NULL,
        `wantedBounty` int(100) NOT NULL,
        `active` tinyint(1) NOT NULL DEFAULT '0',
        `insert_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
      
      --
      -- Indizes der exportierten Tabellen
      --
      
      --
      -- Indizes für die Tabelle `containers`
      --
      ALTER TABLE `containers`
        ADD PRIMARY KEY (`id`,`pid`);
      
      --
      -- Indizes für die Tabelle `dynmarket`
      --
      ALTER TABLE `dynmarket`
        ADD PRIMARY KEY (`id`);
      
      --
      -- Indizes für die Tabelle `gangs`
      --
      ALTER TABLE `gangs`
        ADD PRIMARY KEY (`id`),
        ADD UNIQUE KEY `name_UNIQUE` (`name`);
      
      --
      -- Indizes für die Tabelle `houses`
      --
      ALTER TABLE `houses`
        ADD PRIMARY KEY (`id`,`pid`);
      
      --
      -- Indizes für die Tabelle `players`
      --
      ALTER TABLE `players`
        ADD PRIMARY KEY (`uid`),
        ADD UNIQUE KEY `pid` (`pid`),
        ADD KEY `name` (`name`),
        ADD KEY `blacklist` (`blacklist`);
      
      --
      -- Indizes für die Tabelle `vehicles`
      --
      ALTER TABLE `vehicles`
        ADD PRIMARY KEY (`id`),
        ADD KEY `side` (`side`),
        ADD KEY `pid` (`pid`),
        ADD KEY `type` (`type`);
      
      --
      -- Indizes für die Tabelle `wanted`
      --
      ALTER TABLE `wanted`
        ADD PRIMARY KEY (`wantedID`);
      
      --
      -- AUTO_INCREMENT für exportierte Tabellen
      --
      
      --
      -- AUTO_INCREMENT für Tabelle `containers`
      --
      ALTER TABLE `containers`
        MODIFY `id` int(6) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
      --
      -- AUTO_INCREMENT für Tabelle `gangs`
      --
      ALTER TABLE `gangs`
        MODIFY `id` int(6) NOT NULL AUTO_INCREMENT;
      --
      -- AUTO_INCREMENT für Tabelle `houses`
      --
      ALTER TABLE `houses`
        MODIFY `id` int(6) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
      --
      -- AUTO_INCREMENT für Tabelle `players`
      --
      ALTER TABLE `players`
        MODIFY `uid` int(6) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
      --
      -- AUTO_INCREMENT für Tabelle `vehicles`
      --
      ALTER TABLE `vehicles`
        MODIFY `id` int(6) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
      /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
      /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
      /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
      Alles anzeigen
    • ImprovedLife-RPG
      Frischling
      Trophäen
      7
      Beiträge
      6
      • 5. Januar 2019 um 01:43
      • #3

      Nein das hat meinen Fehler leider nicht behoben.

      Aktueller extDB3 Log im Anhang.

      Dateien

      1-39-30.zip 602 Byte – 168 Downloads
    • Herr_Oster
      Amateur
      Reaktionen
      13
      Trophäen
      9
      Beiträge
      177
      Bilder
      28
      • 5. Januar 2019 um 01:45
      • #4

      Also die Fehlermeldungen im Log sind weg, das Log zeigt keine Fehler mehr an :-?

      Woran scheitert es denn momentan?

    • Alice Kingsleigh
      Profi
      Reaktionen
      329
      Trophäen
      8
      Beiträge
      1.141
      • 5. Januar 2019 um 01:59
      • #5

      Und wie wäre es mit den anderen Logs? Client und Server?

    • ImprovedLife-RPG
      Frischling
      Trophäen
      7
      Beiträge
      6
      • 5. Januar 2019 um 23:00
      • #6

      Habe hier jetzt mal den logs Ordner des Server angehangen. Und ebenfalls den Client Log der Spielesitzung.

      Herr_Oster -> Immer wenn ich auf den Server joine und in der Lobby einen Slot auswähle, spawne ich aber direkt an der Position des NPCs und das Spawn Menu etc öffnet sich nicht.

      Dateien

      logs.zip 2,79 kB – 194 Downloads Arma3_x64_2019-01-04_06-13-06.rpt 186,45 kB – 169 Downloads

      Einmal editiert, zuletzt von ImprovedLife-RPG (5. Januar 2019 um 23:10)

    • Herr_Oster
      Amateur
      Reaktionen
      13
      Trophäen
      9
      Beiträge
      177
      Bilder
      28
      • 6. Januar 2019 um 00:43
      • #7

      Also was mir grad direkt ins Auge sticht, ist ein etlicher Fehler mit der Stringtable.xml. Ist die bei dir/euch vorhanden?

      Stringtable Fehler

      6:28:26 String STR_MAR_Open_Vault not found

      6:28:26 String STR_MAR_Fix_Vault not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_MAR_FED_Front not found

      6:28:26 String STR_MAR_FED_Side not found

      6:28:26 String STR_MAR_FED_Back not found

      6:28:26 String STR_MAR_FED_Vault not found

      6:28:26 String STR_MAR_FED_Off_display not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_MAR_Armament not found

      6:28:26 String STR_Shops_C_Gang not found

      6:28:26 String STR_Process_Marijuana not found

      6:28:26 String STR_NOTF_captureGangHideout not found

      6:28:26 String STR_Shops_Gang not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_MAR_Armament not found

      6:28:26 String STR_Shops_C_Gang not found

      6:28:26 String STR_Process_Cocaine not found

      6:28:26 String STR_NOTF_captureGangHideout not found

      6:28:26 String STR_Shops_Gang not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_MAR_Armament not found

      6:28:26 String STR_Shops_C_Gang not found

      6:28:26 String STR_Process_Heroin not found

      6:28:26 String STR_NOTF_captureGangHideout not found

      6:28:26 String STR_Shops_Gang not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_MAR_Rebel_Market not found

      6:28:26 String STR_MAR_Rebel_Clothing_Shop not found

      6:28:26 String STR_MAR_Rebel_Weapon_Shop not found

      6:28:26 String STR_NOTF_ATM not found

      6:28:26 String STR_MAR_Deliver_Package not found

      6:28:26 String STR_MAR_Get_Delivery_Mission not found

      6:28:26 String STR_MAR_Deliver_Package not found

      6:28:26 String STR_MAR_Get_Delivery_Mission not found

      6:28:26 String STR_MAR_Deliver_Package not found

      6:28:26 String STR_MAR_Get_Delivery_Mission not found

      6:28:26 String STR_Shops_Market not found

      6:28:26 String STR_MAR_Deliver_Package not found

      6:28:26 String STR_MAR_Get_Delivery_Mission not found

      6:28:26 String STR_Process_Oil not found

      6:28:26 String STR_MAR_Deliver_Package not found

      6:28:26 String STR_MAR_Get_Delivery_Mission not found

      6:28:26 String STR_MAR_Deliver_Package not found

      6:28:26 String STR_MAR_Get_Delivery_Mission not found

      6:28:26 String STR_MAR_Deliver_Package not found

      6:28:26 String STR_MAR_Get_Delivery_Mission not found

      6:28:26 String STR_Process_Iron not found

      6:28:26 String STR_MAR_Drug_Dealer not found

      6:28:26 String STR_MAR_Question_Dealer not found

      6:28:26 String STR_MAR_Get_Delivery_Mission not found

      6:28:26 String STR_MAR_Deliver_Package not found

      6:28:26 String STR_MAR_Get_Delivery_Mission not found

      6:28:26 String STR_MAR_Deliver_Package not found

      6:28:26 String STR_MAR_Get_Delivery_Mission not found

      6:28:27 String STR_MAR_Truck_Shop not found

      6:28:27 String STR_Process_Marijuana not found

      6:28:27 String STR_MAR_Deliver_Package not found

      6:28:27 String STR_MAR_Get_Delivery_Mission not found

      6:28:27 String STR_MAR_Helicopter_Shop not found

      6:28:27 String STR_MAR_Service_helicopter not found

      6:28:27 String STR_MAR_Drug_Dealer not found

      6:28:27 String STR_MAR_Question_Dealer not found

      6:28:27 String STR_MAR_Deliver_Package not found

      6:28:27 String STR_MAR_Get_Delivery_Mission not found

      6:28:27 String STR_MAR_Deliver_Package not found

      6:28:27 String STR_MAR_Get_Delivery_Mission not found

      6:28:27 String STR_MAR_Deliver_Package not found

      6:28:27 String STR_MAR_Get_Delivery_Mission not found

      6:28:27 String STR_MAR_Deliver_Package not found

      6:28:27 String STR_MAR_Get_Delivery_Mission not found

      6:28:27 String STR_MAR_Deliver_Package not found

      6:28:27 String STR_MAR_Get_Delivery_Mission not found

      6:28:27 String STR_Shops_Market not found

      6:28:27 String STR_MAR_Helicopter_Shop not found

      6:28:27 String STR_MAR_Deliver_Package not found

      6:28:27 String STR_MAR_Get_Delivery_Mission not found

      6:28:27 String STR_MAR_Deliver_Package not found

      6:28:27 String STR_MAR_Get_Delivery_Mission not found

      6:28:27 String STR_MAR_Deliver_Package not found

      6:28:27 String STR_MAR_Get_Delivery_Mission not found

      6:28:27 String STR_Shops_Market not found

      6:28:27 String STR_MAR_Deliver_Package not found

      6:28:27 String STR_MAR_Get_Delivery_Mission not found

      6:28:27 String STR_MAR_Clothing_Store not found

      6:28:27 String STR_MAR_Car_shop not found

      6:28:27 String STR_MAR_Deliver_Package not found

      6:28:27 String STR_MAR_Get_Delivery_Mission not found

      6:28:27 String STR_MAR_Deliver_Package not found

      6:28:27 String STR_MAR_Get_Delivery_Mission not found

      6:28:27 String STR_MAR_Fish_Market not found

      6:28:27 String STR_MAR_Medical_Assistance not found

      6:28:27 String STR_MAR_Boat_Shop not found

      6:28:27 String STR_Garage_Title not found

      6:28:27 String STR_MAR_Store_vehicle_in_Garage not found

      6:28:27 String STR_MAR_Clothing_Store not found

      6:28:27 String STR_MAR_Car_shop not found

      6:28:27 String STR_MAR_General_Store not found

      6:28:27 String STR_MAR_Diving_Shop not found

      6:28:27 String STR_MAR_Boat_Shop not found

      6:28:27 String STR_Garage_Title not found

      6:28:27 String STR_MAR_Store_vehicle_in_Garage not found

      6:28:27 Warning Message: Picture textures\cop_uniform.jpg not found

      6:28:27 String STR_MAR_Helicopter_Shop not found

      6:28:27 String STR_Garage_Title not found

      6:28:27 String STR_MAR_Store_vehicle_in_Garage not found

      6:28:27 Warning Message: Picture textures\cop_uniform.jpg not found

      6:28:27 String STR_MAR_W_E_Vehicle Shop not found

      6:28:27 String STR_Garage_Title not found

      6:28:27 String STR_MAR_Store_vehicle_in_Garage not found

      6:28:27 Warning Message: Picture textures\cop_uniform.jpg not found

      6:28:27 String STR_MAR_Cop_Item_Shop not found

      6:28:27 String STR_MAR_Cop_Clothing_Shop not found

      6:28:27 String STR_MAR_Cop_Weapon_Shop not found

      6:28:27 String STR_NOTF_ATM not found

      6:28:27 Warning Message: Picture textures\cop_uniform.jpg not found

      6:28:27 String STR_MAR_Clothing_Store not found

      6:28:27 String STR_MAR_Car_shop not found

      6:28:27 String STR_MAR_Deliver_Package not found

      6:28:27 String STR_MAR_Get_Delivery_Mission not found

      6:28:27 String STR_MAR_Cop_Item_Shop not found

      6:28:27 String STR_MAR_Helicopter_Shop not found

      6:28:27 String STR_Garage_Title not found

      6:28:27 String STR_MAR_Store_vehicle_in_Garage not found

      6:28:27 Warning Message: Picture textures\cop_uniform.jpg not found

      6:28:27 String STR_MAR_W_E_Vehicle Shop not found

      6:28:27 String STR_Garage_Title not found

      6:28:27 String STR_MAR_Store_vehicle_in_Garage not found

      6:28:27 Warning Message: Picture textures\cop_uniform.jpg not found

      6:28:27 String STR_MAR_W_E_Vehicle Shop not found

      6:28:27 String STR_Garage_Title not found

      6:28:27 String STR_MAR_Store_vehicle_in_Garage not found

      6:28:27 Warning Message: Picture textures\cop_uniform.jpg not found

      6:28:27 String STR_MAR_Deliver_Package not found

      6:28:27 String STR_MAR_Get_Delivery_Mission not found

      6:28:27 String STR_MAR_Drug_Dealer not found

      6:28:27 String STR_MAR_Question_Dealer not found

      6:28:27 String STR_MAR_General_Store not found

      6:28:27 String STR_MAR_Deliver_Package not found

      6:28:27 String STR_MAR_Get_Delivery_Mission not found

      6:28:27 String STR_MAR_General_Store not found

      6:28:27 String STR_Shops_Oil not found

      6:28:27 String STR_Process_Diamond not found

      6:28:27 String STR_MAR_Glass_Trader not found

      6:28:27 String STR_MAR_Iron_Copper_Trader not found

      6:28:27 String STR_Process_Copper not found

      6:28:27 String STR_MAR_Diamond_Trader not found

      6:28:27 String STR_MAR_Salt_Trader not found

      6:28:27 String STR_MAR_Process_Sand not found

      6:28:27 String STR_MAR_Cop_Item_Shop not found

      6:28:27 String STR_MAR_Cop_Clothing_Shop not found

      6:28:27 String STR_MAR_Cop_Weapon_Shop not found

      6:28:27 String STR_NOTF_ATM not found

      6:28:27 Warning Message: Picture textures\cop_uniform.jpg not found

      6:28:27 String STR_MAR_Cop_Item_Shop not found

      6:28:27 String STR_MAR_Cop_Clothing_Shop not found

      6:28:27 String STR_MAR_Cop_Weapon_Shop not found

      6:28:27 Warning Message: Picture textures\cop_uniform.jpg not found

      6:28:27 String STR_Process_Salt not found

      6:28:27 String STR_MAR_Clothing_Store not found

      6:28:27 String STR_Shops_W_Gun not found

      6:28:27 String STR_Shops_C_Gun not found

      6:28:27 String STR_MAR_Rebel_Market not found

      6:28:27 String STR_MAR_Rebel_Clothing_Shop not found

      6:28:27 String STR_MAR_Rebel_Weapon_Shop not found

      6:28:27 String STR_NOTF_ATM not found

      6:28:27 String STR_MAR_Rebel_Market not found

      6:28:27 String STR_MAR_Rebel_Clothing_Shop not found

      6:28:27 String STR_MAR_Rebel_Weapon_Shop not found

      6:28:27 String STR_NOTF_ATM not found

      6:28:27 String STR_MAR_General_Store not found

      6:28:27 String STR_Process_Heroin not found

      6:28:27 String STR_Garage_Title not found

      6:28:27 String STR_MAR_Store_vehicle_in_Garage not found

      6:28:27 String STR_Garage_Title not found

      6:28:27 String STR_MAR_Store_vehicle_in_Garage not found

      6:28:27 String STR_Garage_Title not found

      6:28:27 String STR_MAR_Store_vehicle_in_Garage not found

      6:28:27 String STR_Garage_Title not found

      6:28:27 String STR_MAR_Store_vehicle_in_Garage not found

      6:28:27 String STR_MAR_Cop_Item_Shop not found

      6:28:27 String STR_MAR_Cop_Clothing_Shop not found

      6:28:27 String STR_MAR_Cop_Weapon_Shop not found

      6:28:27 String STR_NOTF_ATM not found

      6:28:27 Warning Message: Picture textures\cop_uniform.jpg not found

      6:28:27 String STR_MAR_W_E_Vehicle Shop not found

      6:28:27 String STR_Garage_Title not found

      6:28:27 String STR_MAR_Store_vehicle_in_Garage not found

      6:28:27 Warning Message: Picture textures\cop_uniform.jpg not found

      6:28:27 String STR_Process_Cocaine not found

      6:28:27 String STR_MAR_Boat_Shop not found

      6:28:27 String STR_Garage_Title not found

      6:28:27 String STR_MAR_Store_vehicle_in_Garage not found

      6:28:27 String STR_MAR_Cement_Trader not found

      6:28:27 String STR_MAR_Process_Rock not found

      6:28:27 String STR_MAR_Diving_Shop not found

      6:28:27 String STR_Shops_W_Gun not found

      6:28:27 String STR_Shops_C_Gun not found

      6:28:27 String STR_MAR_Wong_Food_Cart not found

      6:28:27 String STR_MAR_Truck_Shop not found

      6:28:27 String STR_ChopShop_Title not found

      6:28:27 String STR_ChopShop_Title not found

      6:28:27 String STR_ChopShop_Title not found

      6:28:27 String STR_ChopShop_Title not found

      6:28:27 String STR_MAR_EMS_Item_Shop not found

      6:28:27 String STR_MAR_EMS_Clothing_Shop not found

      6:28:27 String STR_MAR_W_E_Vehicle Shop not found

      6:28:27 String STR_MAR_Helicopter_Shop not found

      6:28:27 String STR_MAR_W_Car_Garage not found

      6:28:27 String STR_MAR_Helicopter_Garage not found

      6:28:27 String STR_MAR_Store_vehicle_in_Garage not found

      6:28:27 String STR_Shops_Market not found

      6:28:27 Warning Message: Picture textures\medic_uniform.jpg not found

      6:28:27 String STR_MAR_EMS_Item_Shop not found

      6:28:27 String STR_MAR_EMS_Clothing_Shop not found

      6:28:27 String STR_MAR_W_E_Vehicle Shop not found

      6:28:27 String STR_MAR_Helicopter_Shop not found

      6:28:27 String STR_MAR_W_Car_Garage not found

      6:28:27 String STR_MAR_Helicopter_Garage not found

      6:28:27 String STR_MAR_Store_vehicle_in_Garage not found

      6:28:27 String STR_Shops_Market not found

      6:28:27 Warning Message: Picture textures\medic_uniform.jpg not found

      6:28:27 String STR_MAR_EMS_Item_Shop not found

      6:28:27 String STR_MAR_EMS_Clothing_Shop not found

      6:28:27 String STR_MAR_W_E_Vehicle Shop not found

      6:28:27 String STR_MAR_Helicopter_Shop not found

      6:28:27 String STR_MAR_W_Car_Garage not found

      6:28:27 String STR_MAR_Helicopter_Garage not found

      6:28:27 String STR_MAR_Store_vehicle_in_Garage not found

      6:28:27 String STR_Shops_Market not found

      6:28:27 Warning Message: Picture textures\medic_uniform.jpg not found

      6:28:27 String STR_MAR_W_E_Vehicle Shop not found

      6:28:27 String STR_MAR_W_E_Vehicle Shop not found

      6:28:27 String STR_MAR_Pay_Bail not found

      6:28:27 String STR_MAR_GoKart_Shop not found

      6:28:27 String STR_Shops_C_Kart not found

      6:28:27 String STR_MAR_Gold_Bars_Buyer not found

      6:28:27 String STR_MAR_Boat_Shop not found

      6:28:27 String STR_Garage_Title not found

      6:28:27 String STR_MAR_Store_vehicle_in_Garage not found

      6:28:27 String STR_MAR_Wong_Food_Cart not found

      6:28:27 String STR_MAR_Wong_Food_Cart not found

      6:28:27 String STR_Shops_Market not found

      6:28:27 String STR_MAR_Deliver_Package not found

      6:28:27 String STR_MAR_Get_Delivery_Mission not found

      6:28:27 String STR_Shops_Market not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Station_Shop not found

      6:28:27 String STR_Shop_Station_Coffee not found

      6:28:27 String STR_MAR_Car_shop not found

      6:28:27 String STR_MAR_Medical_Assistance not found

      6:28:27 String STR_MAR_Medical_Assistance not found

      6:28:27 String STR_News_AddAction not found

      6:28:27 String STR_NOTF_ATM not found

      Ebenfalls fehlen die Uniformen?

      Uniformen Fehler

      6:28:26 Warning Message: Cannot load texture mpmissions\altis_life.altis\textures\cop_uniform.jpg.

      6:28:26 Warning Message: Cannot load texture mpmissions\altis_life.altis\textures\cop_uniform.jpg.

      6:28:26 Warning Message: Cannot load texture mpmissions\altis_life.altis\textures\cop_uniform.jpg.

      6:28:26 Warning Message: Cannot load texture mpmissions\altis_life.altis\textures\cop_uniform.jpg.

      6:28:26 Warning Message: Cannot load texture mpmissions\altis_life.altis\textures\cop_uniform.jpg.

      6:28:26 Warning Message: Cannot load texture mpmissions\altis_life.altis\textures\cop_uniform.jpg.

      6:28:26 Warning Message: Cannot load texture mpmissions\altis_life.altis\textures\cop_uniform.jpg.

      6:28:26 Warning Message: Cannot load texture mpmissions\altis_life.altis\textures\cop_uniform.jpg.

      6:28:26 Warning Message: Cannot load texture mpmissions\altis_life.altis\textures\cop_uniform.jpg.

      6:28:26 Warning Message: Cannot load texture mpmissions\altis_life.altis\textures\cop_uniform.jpg.

      6:28:26 Warning Message: Cannot load texture mpmissions\altis_life.altis\textures\cop_uniform.jpg.

      6:28:26 Warning Message: Cannot load texture mpmissions\altis_life.altis\textures\medic_uniform.jpg.

      6:28:26 Warning Message: Cannot load texture mpmissions\altis_life.altis\textures\medic_uniform.jpg.

      6:28:26 Warning Message: Cannot load texture mpmissions\altis_life.altis\textures\medic_uniform.jpg.

      Zusätzlich wird 8 mal die Mission gestartet?

      1. mal Tanoa_Intro1.tanoa

      2. mal __CUR_MP.Altis

      3. mal __CUR_MP.Altis

      4. mal __CUR_MP.Altis

      5. mal introOrange.Altis

      6. mal __CUR_MP.Altis

      7. mal __CUR_MP.Altis

      8. mal introOrange.Altis

      9. mal ?? Unbekannt -Log Ende-

    • Herr_Oster
      Amateur
      Reaktionen
      13
      Trophäen
      9
      Beiträge
      177
      Bilder
      28
      • 6. Januar 2019 um 00:44
      • #8

      Ich kann bei bedarf die Tage mal drüber schauen?

    • ImprovedLife-RPG
      Frischling
      Trophäen
      7
      Beiträge
      6
      • 6. Januar 2019 um 13:42
      • #9

      Die stringtable.xml ist im Ordner der Mission und noch unverändert von der Version aus dem Download.

      Das die Uniformen fehlen ist mir auch schon aufgefallen. Aber sie sind in dem im Fehler besagten Ordner vorhanden.

    • Alice Kingsleigh
      Profi
      Reaktionen
      329
      Trophäen
      8
      Beiträge
      1.141
      • 6. Januar 2019 um 16:08
      • #10

      Pack doch einfach mal die Mission als PBO. Sie nicht zu packen kann einiges an Fehlern verursachen (wenn auch nicht alle, die grad bei dir angezeigt werden)

    • ImprovedLife-RPG
      Frischling
      Trophäen
      7
      Beiträge
      6
      • 7. Januar 2019 um 08:57
      • #11

      Alice Kingsleigh -

      Ich kann es mal Probieren. Aber bis jetzt hatte es auch immer mit Ordner geklappt.

    • Alice Kingsleigh
      Profi
      Reaktionen
      329
      Trophäen
      8
      Beiträge
      1.141
      • 7. Januar 2019 um 18:04
      • #12

      Ja bis jetzt :) Allerdings macht das immer irgendwelche Fehler in die Logs. Meist werden dann (laut Log) auf jeden Fall irgendwelche Texturen nicht gefunden usw. also von daher ja einfach mal machen ist auf jeden Fall nicht verkehrt.

    • blackfisch
      Legende
      Reaktionen
      2.944
      Trophäen
      10
      Beiträge
      5.966
      Dateien
      6
      Bilder
      63
      • 7. Januar 2019 um 18:17
      • #13
      Zitat von Alice Kingsleigh

      Ja bis jetzt :) Allerdings macht das immer irgendwelche Fehler in die Logs. Meist werden dann (laut Log) auf jeden Fall irgendwelche Texturen nicht gefunden usw. also von daher ja einfach mal machen ist auf jeden Fall nicht verkehrt.

      das sind diese blöden Pseudo-Fehler die durch die Konvertierung in paa entstehen. Who knows.

      Client Log ist sonst sauber. Server RPT und extDB Logs wären interessant

      #MakeArmaNotWar

      Kein Support via PN & Steam! / No Support via DM & Steam!


      Mit freundlichen Grüßen
      blackfisch
      ______________________

      Web: blackfisch.me

      GitHub: GitHub.com/blackfisch

      Mail: [email protected]

      ______________________
      Wichtige Links:
      [Erklärung|Leitfaden] Code Optimierung

      [Tutorial] life_fnc_MP zu remoteExec

      Ohne Logs & entsprechende Dateien kein Support!

      ______________________

    • ImprovedLife-RPG
      Frischling
      Trophäen
      7
      Beiträge
      6
      • 7. Januar 2019 um 22:22
      • #14

      blackfisch -> Das einzigste was ich an Serverlogs habe sind ein paar Textdatein. Die habe ich vor 2 Kommentaren schonmal im Anhang gehabt. (in der logs.zip)

      Alice Kingsleigh -> Ich habe meine Altis_Life.Altis jetzt mal zu einer PBO gepackt. Und da hat es funktioniert.

      Ich bedanke mich bei Allen für die Hilfe.

    Registrieren oder Einloggen

    Du bist noch kein Mitglied von NodeZone.net? Registriere dich kostenlos und werde Teil einer großartigen Community!

    Registrieren

    Ähnliche Themen

    • Server startet nicht.

      • TheRedPhynix
      • 17. November 2018 um 18:35
      • Hilfeforum
    • extdb3 Config Error: : No such node (.IP)

      • Joshua RaiN
      • 5. November 2018 um 16:06
      • Hilfeforum
    • Altis Life 5.0 extdb3 Error: No such node (.IP)

      • SirNo
      • 16. September 2018 um 20:38
      • Hilfeforum
    • Arma3 Einrichten des Clients

      • ShoxDRk
      • 17. August 2018 um 14:26
      • Hilfeforum
    • Gang erstellen bugt

      • Brandy Scotchland
      • 23. März 2018 um 12:04
      • Hilfeforum

    Benutzer online in diesem Thema

    • 4 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™