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
Do: 17 Juli 2025
  • Anmelden oder registrieren
  • Suche
Alles
  • Alles
  • 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. Mitglieder
    3. PrideGame

    Beiträge von PrideGame

    • Garage Error Datenbank Fehler

      • PrideGame
      • 16. Juni 2016 um 20:19

      @Shinji extDB3?
      Kannst du mir nen Link schicken wo ich diese runterladen kann?

    • Garage Error Datenbank Fehler

      • PrideGame
      • 16. Juni 2016 um 15:50

      Achso, owee.. sorry ^^
      Ich hab die Datei aus irgendein Tutorial gezogen... ist offenbar doch nicht das von nox.

      EDIT:
      Aus diesem hier hab ich meine Datei:
      https://native-network.net/wsif/entry/60-…altis-life-4-0/
      Dachte das wäre alles richtig und korrekt weil es aus dem Forum selbst stammt :/

      Ich habe mich jetzt nochmal belesen es kann auch sein das die Autos schon beim Kauf nicht eingetragen werden, wie kann ich dies beheben?
      Offenbar ist die DB futsch.. nur kannst du mir erklären wie ich die wieder auf Vordermann bringen kann? :/

    • Garage Error Datenbank Fehler

      • PrideGame
      • 16. Juni 2016 um 15:47

      Der Pfad ist:
      C:\server\A3Master\@extDB2\extdb\SQL_CUSTOM_V2
      So wie er im Tutorial vorgeschrieben wurde von nox.

    • Garage Error Datenbank Fehler

      • PrideGame
      • 16. Juni 2016 um 15:42

      Ich weis nicht, ich hab diese hier benutzt und nur mein Benutzer umgestellt auf meinen weil root zu unsicher ist.

      Code: AltisLife.sql
      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 utf8 */;
      
      
      
      
      --
      -- Database: `AltisLife`
      -- Default Schema
      --
      CREATE DATABASE IF NOT EXISTS `AltisLife` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci;
      USE `AltisLife`;
      
      
      
      
      DELIMITER $$
      --
      -- Procedures
      -- Edit arma3 to match a user in MySQ
      -- For external databases: Edit localhost to match arma3server IP
      --
      CREATE DEFINER=`arma3`@`localhost` PROCEDURE `resetLifeVehicles`()
      BEGIN
        UPDATE `vehicles` SET `active`= 0;
      END$$
      
      
      
      
      CREATE DEFINER=`arma3`@`localhost` PROCEDURE `deleteDeadVehicles`()
      BEGIN
        DELETE FROM `vehicles` WHERE `alive` = 0;
      END$$
      
      
      
      
      CREATE DEFINER=`arma3`@`localhost` PROCEDURE `deleteOldHouses`()
      BEGIN
        DELETE FROM `houses` WHERE `owned` = 0;
      END$$
      
      
      
      
      CREATE DEFINER=`arma3`@`localhost` PROCEDURE `deleteOldGangs`()
      BEGIN
        DELETE FROM `gangs` WHERE `active` = 0;
      END$$
      
      
      
      
      CREATE DEFINER=`arma3`@`localhost` PROCEDURE `deleteOldContainers`()
      BEGIN
        DELETE FROM `containers` WHERE `owned` = 0;
      END$$
      
      
      
      
      DELIMITER ;
      
      
      
      
      -- --------------------------------------------------------
      
      
      
      
      --
      -- Table structure for table `players`
      --
      
      
      
      
      CREATE TABLE IF NOT EXISTS `players` (
        `uid` int(12) NOT NULL AUTO_INCREMENT,
        `name` varchar(32) NOT NULL,
        `aliases` text NOT NULL,
        `playerid` varchar(50) 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(11) NOT NULL DEFAULT '"[100,100]"',
        `cop_stats` varchar(11) NOT NULL DEFAULT '"[100,100]"',
        `med_stats` varchar(11) NOT NULL DEFAULT '"[100,100]"',
        `arrested` tinyint(1) NOT NULL DEFAULT '0',
        `adminlevel` enum('0','1','2','3','4','5') NOT NULL DEFAULT '0',
        `donatorlvl` enum('0','1','2','3','4','5') NOT NULL DEFAULT '0',
        `blacklist` tinyint(1) NOT NULL DEFAULT '0',
        PRIMARY KEY (`uid`),
        UNIQUE KEY `playerid` (`playerid`),
        KEY `name` (`name`),
        KEY `blacklist` (`blacklist`)
      ) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ;
      
      
      
      
      -- --------------------------------------------------------
      
      
      
      
      --
      -- Table structure for table `vehicles`
      --
      
      
      
      
      CREATE TABLE IF NOT EXISTS `vehicles` (
        `id` int(12) NOT NULL AUTO_INCREMENT,
        `side` varchar(15) NOT NULL,
        `classname` varchar(32) NOT NULL,
        `type` varchar(12) NOT NULL,
        `pid` varchar(32) NOT NULL,
        `alive` tinyint(1) NOT NULL DEFAULT '1',
        `active` tinyint(1) NOT NULL DEFAULT '0',
        `plate` int(20) NOT NULL,
        `color` int(20) NOT NULL,
        `inventory` varchar(500) NOT NULL,
        `gear` text NOT NULL,
        `fuel` double NOT NULL DEFAULT '1',
        PRIMARY KEY (`id`),
        KEY `side` (`side`),
        KEY `pid` (`pid`),
        KEY `type` (`type`)
      ) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
      
      
      
      
      -- --------------------------------------------------------
      
      
      
      
      --
      -- Table structure for table `houses`
      -- Needed for extDB latest update on git
      --
      
      
      
      
      CREATE TABLE IF NOT EXISTS `houses` (
        `id` int(11) NOT NULL AUTO_INCREMENT,
        `pid` varchar(32) NOT NULL,
        `pos` varchar(64) DEFAULT NULL,
        `owned` tinyint(4) DEFAULT '0',
        PRIMARY KEY (`id`,`pid`)
      ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
      
      
      
      
      -- --------------------------------------------------------
      
      
      
      
      --
      -- Table structure for table `gangs`
      -- Needed for extDB latest update on git
      --
      
      
      
      
      CREATE TABLE IF NOT EXISTS `gangs` (
        `id` int(11) NOT NULL AUTO_INCREMENT,
        `owner` varchar(32) DEFAULT NULL,
        `name` varchar(32) DEFAULT NULL,
        `members` text,
        `maxmembers` int(2) DEFAULT '8',
        `bank` int(100) DEFAULT '0',
        `active` tinyint(4) DEFAULT '1',
        PRIMARY KEY (`id`),
        UNIQUE KEY `name_UNIQUE` (`name`)
      ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
      
      
      
      
      -- --------------------------------------------------------
      
      
      
      
      --
      -- Table structure for table `containers`
      -- Needed for extDB latest update on git
      --
      
      
      
      
      CREATE TABLE IF NOT EXISTS `containers` (
        `id` int(11) NOT NULL AUTO_INCREMENT,
        `pid` varchar(32) NOT NULL,
        `classname` varchar(32) NOT NULL,
        `pos` varchar(64) DEFAULT NULL,
        `inventory` varchar(500) NOT NULL,
        `gear` text NOT NULL,
        `dir` varchar(64) DEFAULT NULL,
        `active` tinyint(1) NOT NULL DEFAULT '0',
        `owned` tinyint(4) DEFAULT '0',
        PRIMARY KEY (`id`,`pid`)
      ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
      
      
      
      
      -- --------------------------------------------------------
      
      
      
      
      --
      -- Table structure for table `wanted`
      -- Needed for extDB latest update on git
      --
      
      
      
      
      CREATE TABLE `wanted` (
        `wantedID` varchar(50) NOT NULL,
        `wantedName` varchar(52) NOT NULL,
        `wantedCrimes` text NOT NULL,
        `wantedBounty` int(100) NOT NULL,
        `active` tinyint(1) NOT NULL DEFAULT '0',
        PRIMARY KEY (`wantedID`)
      ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
      
      
      
      
      -- --------------------------------------------------------
      
      
      
      
      /*!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

      Ach hier noch ein Screen von NaviCat falls es hilft :/
      Sorry ich bin noch nicht lange dabei, hab viel GTA:SA programmiert ^^

      Hier benutze ich aber root, in NaviCat halt nur. :)

    • Garage Error Datenbank Fehler

      • PrideGame
      • 16. Juni 2016 um 15:37

      @Shinji ich weis meine Version nicht ich hab krampfhaft versucht die 4.4 zu installieren und halt alles auf [lexicon]Tanoa[/lexicon] anzupassen :/

      Code: altis-life-rpg-4.ini
      [Default]
      Version = 12
      
      
      
      
      Number of Inputs = 0
      
      
      
      
      Sanitize Input Value Check = false
      Sanitize Output Value Check = false
      
      
      
      
      Prepared Statement Cache = true
      
      
      
      
      Return InsertID = false
      
      
      
      
      Strip = true
      Strip Chars Action = STRIP
      Strip Chars = /\|;{}<>'`
      Strip Custom Chars = \/\|;{}<>'`
      
      
      
      
      ;; INPUT / OUTPUT Options
      ;;      String (Removes " from value, then wraps value with ")
      ;;      BeGUID (Converts value into BEGUID)
      ;;      Check (Sanitize value check)
      ;;      NoCheck
      ;;      Strip (Strips Chars)
      ;;      NoStrip
      ;;______________________________________________________________
      [resetLifeVehicles]
      ;;
      
      
      
      
      SQL1_1 = CALL resetLifeVehicles;
      
      
      
      
      Number of Inputs = 0
      Prepared Statement Cache = false
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [deleteDeadVehicles]
      ;;
      
      
      
      
      SQL1_1 = CALL deleteDeadVehicles;
      
      
      
      
      Number of Inputs = 0
      Prepared Statement Cache = false
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [deleteOldHouses]
      ;;
      
      
      
      
      SQL1_1 = CALL deleteOldHouses;
      
      
      
      
      Number of Inputs = 0
      Prepared Statement Cache = false
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [deleteOldGangs]
      ;;
      
      
      
      
      SQL1_1 = CALL deleteOldGangs;
      
      
      
      
      Number of Inputs = 0
      Prepared Statement Cache = false
      
      
      
      
      
      
      
      
      
      
      ;;**************************************************************
      ;;**************************************************************
      ;; GANGS
      ;;
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [gangIDPlayer]
      ;;
      
      
      
      
      SQL1_1 = SELECT id FROM gangs WHERE members LIKE ? AND active='1';
      
      
      
      
      Number of Inputs = 1
      SQL1_INPUTS = 1
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [gangNameSelectID]
      ;;
      
      
      
      
      SQL1_1 = SELECT id FROM gangs WHERE name=? AND active=?;
      
      
      
      
      SQL1_INPUTS = 1, 2
      Number of Inputs = 2
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [gangOwnerSelectID]
      ;;
      
      
      
      
      SQL1_1 = SELECT id FROM gangs WHERE owner=? AND active=?;
      
      
      
      
      SQL1_INPUTS = 1, 2
      Number of Inputs = 2
      
      
      
      
      ;;______________________________________________________________
      [gangInsert]
      ;;
      
      
      
      
      SQL1_1 = INSERT INTO gangs (owner, name, members) VALUES(?,?,?);
      SQL1_INPUTS = 1, 2, 3
      
      
      
      
      Number of Inputs = 3
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [gangUpdate]
      ;;
      
      
      
      
      SQL1_1 = UPDATE gangs SET active=1, owner=?,members=? WHERE id=?;
      
      
      
      
      Number of Inputs = 3
      SQL1_INPUTS = 1, 2, 3
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [gangRemove]
      ;;
      
      
      
      
      SQL1_1 = UPDATE gangs SET active='0' WHERE id=?;
      SQL1_INPUTS = 1
      
      
      
      
      Number of Inputs = 1
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [gangInfo]
      ;; Get Gang Info
      ;;
      
      
      
      
      SQL1_1 = SELECT id, owner, name, maxmembers, bank, members FROM gangs WHERE active='1' AND members LIKE ?;
      SQL1_INPUTS = 1
      
      
      
      
      Number of Inputs = 1
      OUTPUT = 1, 2-String, 3-String, 4, 5, 6
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [gangBankInfoUpdate]
      ;; Update Gang Bank
      ;;
      
      
      
      
      SQL1_1 = UPDATE gangs SET bank=? WHERE id=?;
      SQL1_INPUTS = 1, 2
      
      
      
      
      Number of Inputs = 2
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [gangInfoUpdate]
      ;; Update Gang Info
      ;;
      
      
      
      
      SQL1_1 = UPDATE gangs SET bank=?, maxmembers=?, owner=? WHERE id=?;
      SQL1_INPUTS = 1, 2, 3-String, 4
      
      
      
      
      Number of Inputs = 4
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [gangMaxMembersUpdate]
      ;; Update Gang Max Members
      ;;
      
      
      
      
      SQL1_1 = UPDATE gangs SET maxmembers=? WHERE id=?;
      SQL1_INPUTS = 1, 2
      
      
      
      
      Number of Inputs = 2
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [gangMembersUpdate]
      ;; Update Gang Members
      ;;
      
      
      
      
      SQL1_1 = UPDATE gangs SET members=? WHERE id=?;
      SQL1_INPUTS = 1, 2
      
      
      
      
      Number of Inputs = 2
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [gangOwnerUpdate]
      ;; Update Gang Owner
      ;;
      
      
      
      
      SQL1_1 = UPDATE gangs SET owner=? WHERE id=?;
      SQL1_INPUTS = 1, 2
      
      
      
      
      Number of Inputs = 2
      
      
      
      
      
      
      
      ;;**************************************************************
      ;;**************************************************************
      ;; PLAYERS
      ;;
      
      
      
      
      ;;______________________________________________________________
      [playerInfo]
      ;;
      
      
      
      
      SQL1_1 = SELECT playerid, name FROM players WHERE playerid=?;
      SQL1_INPUTS = 1
      
      
      
      
      Number of Inputs = 1
      OUTPUT = 1, 2
      
      
      
      
      ;;______________________________________________________________
      [playerInfoInsert]
      ;;
      
      
      
      
      SQL1_1 = INSERT INTO players
      ;;				1          2 	 3     4        5        6             7             8             9         10        11
      SQL1_2 = 		(playerid, name, cash, bankacc, aliases, cop_licenses, med_licenses, civ_licenses, civ_gear, cop_gear, med_gear)
      SQL1_3 = 		VALUES(?,?,?,?,?,?,?,?,?,?,?);
      
      
      
      
      SQL1_INPUTS = 1, 2-String, 3, 4, 5, 6, 7, 8, 9, 10, 11
      
      
      
      
      Number of Inputs = 11
      
      
      
      
      ;;______________________________________________________________
      [playerWestInfo]
      ;;
      
      
      
      
      SQL1_1 = SELECT playerid, name, cash, bankacc, adminlevel, donatorlvl, cop_licenses, coplevel, cop_gear, blacklist FROM players WHERE playerid=?;
      SQL1_INPUTS = 1
      
      
      
      
      Number of Inputs = 1
      OUTPUT = 1-String, 2-String, 3, 4, 5-String, 6-String, 7, 8-String, 9, 10
      
      
      
      
      ;;______________________________________________________________
      [playerCivInfo]
      ;;
      
      
      
      
      SQL1_1 = SELECT playerid, name, cash, bankacc, adminlevel, donatorlvl, civ_licenses, arrested, civ_gear FROM players WHERE playerid=?;
      SQL1_INPUTS = 1
      
      
      
      
      Number of Inputs = 1
      OUTPUT = 1-String, 2-String, 3, 4, 5-String, 6-String, 7, 8-String, 9
      
      
      
      
      ;;______________________________________________________________
      [playerIndependentInfo]
      ;;
      
      
      
      
      SQL1_1 = SELECT playerid, name, cash, bankacc, adminlevel, donatorlvl, med_licenses, mediclevel, med_gear FROM players WHERE playerid=?;
      SQL1_INPUTS = 1
      
      
      
      
      Number of Inputs = 1
      OUTPUT = 1-String, 2-String, 3, 4, 5-String, 6-String, 7, 8-String, 9
      
      
      
      
      ;;______________________________________________________________
      [playerWestUpdate]
      ;;
      
      
      
      
      SQL1_1 = UPDATE players
      ;;				1          2 	    3          4           5                   6
      SQL1_2 = 		SET name=?, cash=?, bankacc=?, cop_gear=?, cop_licenses=? WHERE playerid=?
      
      
      
      
      SQL1_INPUTS = 1-String, 2, 3, 4, 5, 6
      
      
      
      
      Number of Inputs = 6
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [playerCivilianUpdate]
      ;;
      
      
      
      
      SQL1_1 = UPDATE players
      ;;				1          2 	    3          4               5           6                7
      SQL1_2 = 		SET name=?, cash=?, bankacc=?, civ_licenses=?, civ_gear=?, arrested=? WHERE playerid=?;
      
      
      
      
      SQL1_INPUTS = 1-String, 2, 3, 4, 5, 6, 7
      
      
      
      
      Number of Inputs = 7
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [playerIndependentUpdate]
      ;;
      
      
      
      
      SQL1_1 = UPDATE players
      ;;				1          2 	    3          4               5                 6
      SQL1_2 = 		SET name=?, cash=?, bankacc=?, med_licenses=?, med_gear=? WHERE playerid=?;
      
      
      
      
      SQL1_INPUTS = 1-String, 2, 3, 4, 5, 6
      
      
      
      
      Number of Inputs = 6
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [playerUpdateCash]
      ;;
      
      
      
      
      SQL1_1 = UPDATE players
      SQL1_2 = 		SET cash=? WHERE playerid=?;
      
      
      
      
      SQL1_INPUTS = 1, 2
      Number of Inputs = 2
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [playerUpdateBank]
      ;;
      
      
      
      
      SQL1_1 = UPDATE players
      SQL1_2 = 		SET bankacc=? WHERE playerid=?;
      
      
      
      
      SQL1_INPUTS = 1, 2
      Number of Inputs = 2
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [playerUpdateBank+Cash]
      ;;
      
      
      
      
      SQL1_1 = UPDATE players
      SQL1_2 = 		SET cash=?, bankacc=? WHERE playerid=?;
      
      
      
      
      SQL1_INPUTS = 1, 2, 3
      Number of Inputs = 3
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [playerUpdateCopLicense]
      ;;
      
      
      
      
      SQL1_1 = UPDATE players
      SQL1_2 = 		SET cop_licenses=? WHERE playerid=?;
      
      
      
      
      SQL1_INPUTS = 1, 2
      Number of Inputs = 2
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [playerUpdateCivLicense]
      ;;
      
      
      
      
      SQL1_1 = UPDATE players
      SQL1_2 = 		SET civ_licenses=? WHERE playerid=?;
      
      
      
      
      SQL1_INPUTS = 1, 2
      Number of Inputs = 2
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [playerUpdateMedLicense]
      ;;
      
      
      
      
      SQL1_1 = UPDATE players
      SQL1_2 = 		SET med_licenses=? WHERE playerid=?;
      
      
      
      
      SQL1_INPUTS = 1, 2
      Number of Inputs = 2
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [playerUpdateCopGear]
      ;;
      
      
      
      
      SQL1_1 = UPDATE players
      SQL1_2 = 		SET cop_gear=? WHERE playerid=?;
      
      
      
      
      SQL1_INPUTS = 1, 2
      Number of Inputs = 2
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [playerUpdateCivGear]
      ;;
      
      
      
      
      SQL1_1 = UPDATE players
      SQL1_2 = 		SET civ_gear=? WHERE playerid=?;
      
      
      
      
      SQL1_INPUTS = 1, 2
      Number of Inputs = 2
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [playerUpdateMedGear]
      ;;
      
      
      
      
      SQL1_1 = UPDATE players
      SQL1_2 = 		SET med_gear=? WHERE playerid=?;
      
      
      
      
      SQL1_INPUTS = 1, 2
      Number of Inputs = 2
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [playerUpdateAlive]
      ;;
      
      
      
      
      SQL1_1 = UPDATE players
      SQL1_2 = 		SET alive=? WHERE playerid=?;
      
      
      
      
      SQL1_INPUTS = 1, 2
      Number of Inputs = 2
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [playerUpdateArrested]
      ;;
      
      
      
      
      SQL1_1 = UPDATE players
      SQL1_2 = 		SET arrested=? WHERE playerid=?;
      
      
      
      
      SQL1_INPUTS = 1, 2
      Number of Inputs = 2
      
      
      
      
      
      
      
      ;;**************************************************************
      ;;**************************************************************
      ;; VEHICLES
      ;;
      
      
      
      
      ;;______________________________________________________________
      [vehicleDead]
      ;;
      
      
      
      
      SQL1_1 = UPDATE vehicles SET alive=? WHERE pid=? AND plate=?;
      
      
      
      
      SQL1_INPUTS = 1, 2, 3
      Number of Inputs = 3
      
      
      
      
      ;;______________________________________________________________
      [vehicleInsert]
      ;;
      
      
      
      
      SQL1_1 = INSERT INTO vehicles
      ;;						1      2          3     4    5      6       7          8      9
      SQL1_2 = 				(side, classname, type, pid, alive, active, inventory, color, plate)
      SQL1_3 = 				VALUES (?,?,?,?,?,?,?,?,?);
      
      
      
      
      SQL1_INPUTS = 1, 2, 3, 4, 5, 6, 7, 8, 9
      Number of Inputs = 9
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [vehicleInfo]
      ;;
      
      
      
      
      ;;				1   2     3          4     5    6      7       8      9
      SQL1_1 = SELECT id, side, classname, type, pid, alive, active, plate, color
      SQL1_2 = 	FROM vehicles WHERE id=? AND pid=?;
      SQL1_INPUTS = 1, 2
      Number of Inputs = 2
      
      
      
      
      OUTPUT = 1, 2-String, 3-String, 4-String, 5-String, 6, 7, 8, 9
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [vehiclesInfo]
      ;;
      
      
      
      
      ;;				1   2     3          4     5    6      7       8      9
      SQL1_1 = SELECT id, side, classname, type, pid, alive, active, plate, color
      SQL1_2 = 	FROM vehicles WHERE pid=? AND alive=1 AND active = 0 AND side=? AND type=?;
      SQL1_INPUTS = 1, 2, 3
      Number of Inputs = 3
      
      
      
      
      OUTPUT = 1, 2-String, 3-String, 4-String, 5-String, 6, 7, 8, 9
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [vehicleUpdateActive]
      ;;
      
      
      
      
      SQL1_1 = UPDATE vehicles SET active=? WHERE pid=? AND id=?;
      
      
      
      
      SQL1_INPUTS = 1, 2, 3
      Number of Inputs = 3
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [vehicleUpdateActivePlate]
      ;;
      
      
      
      
      SQL1_1 = UPDATE vehicles SET active=? WHERE pid=? AND plate=?;
      
      
      
      
      SQL1_INPUTS = 1, 2, 3
      Number of Inputs = 3
      
      
      
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [vehicleUpdateAlive]
      ;;
      
      
      
      
      SQL1_1 = UPDATE vehicles SET alive=? WHERE pid=? AND id=?;
      
      
      
      
      SQL1_INPUTS = 1, 2, 3
      Number of Inputs = 3
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [vehicleUpdateAlivePlate]
      ;;
      
      
      
      
      SQL1_1 = UPDATE vehicles SET alive=? WHERE pid=? AND plate=?;
      
      
      
      
      SQL1_INPUTS = 1, 2, 3
      Number of Inputs = 3
      
      
      
      
      ;;**************************************************************
      ;;**************************************************************
      ;; Wanted System
      ;;
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [housingCount]
      ;;
      
      
      
      
      SQL1_1 = SELECT COUNT(*) FROM houses WHERE owned='1';
      
      
      
      
      Number of Inputs = 0
      
      
      
      
      ;;______________________________________________________________
      [housingInit]
      ;;
      
      
      
      
      SQL1_1 = SELECT houses.id, houses.pid, houses.pos, players.name FROM houses INNER JOIN players ON houses.pid=players.playerid WHERE houses.owned='1' LIMIT ?,10;
      
      
      
      
      SQL1_INPUTS = 1
      Number of Inputs = 1
      
      
      
      
      OUTPUT = 1, 2-String, 3-String, 4-String
      
      
      
      
      ;;______________________________________________________________
      [housingFetchPlayerHouse]
      ;;
      SQL1_1 = SELECT pid, pos, inventory, containers FROM houses WHERE pid=? AND owned='1';
      
      
      
      
      SQL1_INPUTS = 1
      Number of Inputs = 1
      
      
      
      
      OUTPUT = 1-String, 2-String, 3, 4
      
      
      
      
      ;;______________________________________________________________
      [housingCheckHouse]
      ;;
      
      
      
      
      SQL1_1 = SELECT CASE
      SQL1_2 =    WHEN EXISTS(SELECT id FROM houses WHERE pos=? AND owned='1')
      SQL1_3 =           THEN 'false' ELSE 'true'
      SQL1_4 = END
      
      
      
      
      SQL1_INPUTS = 1
      Number of Inputs = 1
      
      
      
      
      OUTPUT = 1
      
      
      
      
      ;;______________________________________________________________
      [housingAddHouse]
      ;;
      SQL1_1 = INSERT INTO houses (pid, pos, inventory, containers, owned)
      SQL1_2 = 	VALUES(?,?,?,?,?);
      SQL1_INPUTS = 1, 2, 3, 4, 5
      SQL2_1 = SELECT id FROM houses WHERE pos=? AND pid=? AND owned='1';
      SQL2_INPUTS = 2, 1
      
      
      
      
      Number of Inputs = 5
      OUTPUT = 1
      
      
      
      
      ;;______________________________________________________________
      [housingSellHouse]
      ;;
      SQL1_1 = UPDATE houses SET owned='0', pos='[]', inventory='[[],0]', containers='[]' WHERE pid=? AND pos=? AND owned='1';
      SQL1_INPUTS = 1, 2, 3
      
      
      
      
      Number of Inputs = 3
      
      
      
      
      ;;______________________________________________________________
      [housingSellHouse2]
      ;;
      SQL1_1 = UPDATE houses SET owned='0', pos='[]', inventory='[[],0]', containers='[]' WHERE id=?;
      SQL1_INPUTS = 1
      
      
      
      
      Number of Inputs = 1
      
      
      
      
      ;;______________________________________________________________
      [houseUpdateContainer]
      ;;
      SQL1_1 = UPDATE houses SET containers=? WHERE id=?;
      SQL1_INPUTS = 1, 2
      
      
      
      
      Number of Inputs = 2
      
      
      
      
      ;;______________________________________________________________
      [housingUpdateInventory]
      ;;
      SQL1_1 = UPDATE houses SET inventory=? WHERE id=?;
      SQL1_INPUTS = 1, 2
      
      
      
      
      Number of Inputs = 2
      
      
      
      
      ;;______________________________________________________________
      [housingCleanup]
      ;;
      SQL1_1 = SELECT pid, pos, inventory, containers FROM houses WHERE pid=? AND owned='1';
      SQL1_INPUTS = 1
      
      
      
      
      Number of Inputs = 1
      OUTPUT = 1-String, 2-String, 3, 4
      
      
      
      
      ;;**************************************************************
      ;;**************************************************************
      ;; Wanted System
      ;;
      
      
      
      
      
      
      
      ;;______________________________________________________________
      [wantedGetCrimes]
      ;;
      
      
      
      
      SQL1_1 = SELECT wantedID, wantedCrimes FROM wanted WHERE wantedID=?;
      
      
      
      
      SQL1_INPUTS = 1
      Number of Inputs = 1
      
      
      
      
      OUTPUT = 1-String, 2
      
      
      
      
      ;;______________________________________________________________
      [wantedUpdateCrimes]
      ;;
      
      
      
      
      SQL1_1 = UPDATE wanted SET wantedCrimes = ?, wantedBounty = wantedBounty + ?, active = '1' WHERE wantedID=?;
      SQL1_INPUTS = 1, 2, 3
      
      
      
      
      Number of Inputs = 3
      
      
      
      
      ;;______________________________________________________________
      [wantedInsertCrimes]
      ;;
      
      
      
      
      SQL1_1 = INSERT INTO wanted (wantedID, wantedName, wantedCrimes, wantedBounty, active)
      SQL1_2 = 	VALUES(?,?,?,?,?);
      
      
      
      
      SQL1_INPUTS = 1, 2, 3, 4, 5
      
      
      
      
      Number of Inputs = 5
      
      
      
      
      ;;______________________________________________________________
      [wantedFetchBounty]
      ;;
      
      
      
      
      SQL1_1 = SELECT wantedID, wantedName, wantedCrimes, wantedBounty FROM wanted WHERE active='1' AND wantedID=?;
      SQL1_INPUTS = 1
      
      
      
      
      Number of Inputs = 1
      
      
      
      
      OUTPUT = 1-String, 2-String, 3, 4
      
      
      
      
      ;;______________________________________________________________
      [wantedFetchCrimes]
      ;;
      
      
      
      
      SQL1_1 = SELECT wantedCrimes, wantedBounty FROM wanted WHERE active='1' AND wantedID=?;
      SQL1_INPUTS = 1
      
      
      
      
      Number of Inputs = 1
      OUTPUT = 1, 2
      
      
      
      
      ;;______________________________________________________________
      [wantedFetchID]
      ;;
      
      
      
      
      SQL1_1 = SELECT wantedID, wantedName FROM wanted WHERE active='1' AND wantedID in (?);
      SQL1_INPUTS = 1-STRIP
      
      
      
      
      Number of Inputs = 1
      OUTPUT = 1-String, 2-String
      
      
      
      
      ;;______________________________________________________________
      [wantedFetchPerson]
      ;;
      
      
      
      
      SQL1_1 = SELECT wantedID, wantedName, wantedBounty FROM wanted WHERE wantedID=? AND active='1';
      SQL1_INPUTS = 1
      
      
      
      
      Number of Inputs = 1
      OUTPUT = 1-String, 2-String, 3
      
      
      
      
      ;;______________________________________________________________
      [wantedFetchName]
      ;;
      
      
      
      
      SQL1_1 = SELECT wantedName FROM wanted WHERE wantedID=?;
      SQL1_INPUTS = 1
      
      
      
      
      Number of Inputs = 1
      OUTPUT = 1-String
      
      
      
      
      ;;______________________________________________________________
      [wantedFetchIDAll]
      ;;
      
      
      
      
      SQL1_1 = SELECT wantedID, wantedName FROM wanted WHERE active='1';
      
      
      
      
      OUTPUT = 1-String, 2-String
      ;;______________________________________________________________
      [wantedUpdateName]
      ;;
      
      
      
      
      SQL1_1 = UPDATE wanted
      SQL1_2 =		SET wantedName=? WHERE wantedID=?;
      SQL1_INPUTS = 1, 2
      
      
      
      
      Number of Inputs = 2
      
      
      
      
      ;;______________________________________________________________
      [wantedRemoveCrimes]
      ;;
      
      
      
      
      SQL1_1 = UPDATE wanted
      SQL1_2 =		SET active = 0, wantedCrimes = '[]', wantedBounty = 0 WHERE wantedID=?;
      SQL1_INPUTS = 1
      
      
      
      
      Number of Inputs = 1
      ;;______________________________________________________________
      [DYNMARKET_Price_Set]
      ;;
       
      SQL1_1 = UPDATE dynmarket SET prices = ? WHERE id=1;
       
      SQL1_INPUTS = 1
      Number of Inputs = 1
       
      ;;______________________________________________________________
      [DYNMARKET_Price_Get]
      ;;
       
      SQL1_1 = SELECT prices FROM dynmarket WHERE id=1;
       
      OUTPUT = 1
      Alles anzeigen
    • Garage Error Datenbank Fehler

      • PrideGame
      • 16. Juni 2016 um 15:23

      @Shinji hier die [lexicon]ExtDB[/lexicon] Log:

      Code
      extDB2: Version: 63
      extDB2: https://github.com/Torndeco/extDB2
      extDB2: Windows Version
      Message: All development for extDB2 is done on a Linux Dedicated Server
      Message: If you would like to Donate to extDB2 Development
      Message: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2SUEFTGABTAM2
      Message: Also leave a message if there is any particular feature you would like to see added.
      Message: Thanks for all the people that have donated.
      Message: Torndeco: 20/02/15
      
      
      
      
      
      
      
      extDB2: Found extdb-conf.ini
      extDB2: Detected 4 Cores, Setting up 4 Worker Threads
      
      
      
      
      
      
      
      [20:00:39:952 +02:00] [Thread 3084] extDB2: Database Type: MySQL
      [20:00:39:966 +02:00] [Thread 3084] extDB2: Database Session Pool Started
      [20:00:39:973 +02:00] [Thread 3084] extDB2: SQL_CUSTOM_V2: Loading Template Filename: C:\server\A3Master\@extDB2\extDB\sql_custom_v2\altis-life-rpg-4.ini
      [20:00:39:973 +02:00] [Thread 3084] extDB2: SQL_CUSTOM_V2: Version 12 Detected, Latest Version 12 Available
      [20:00:50:092 +02:00] [Thread 3136] extDB2: SQL_CUSTOM_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_prepare error	[mysql_stmt_error]: Unknown column 'inventory' in 'field list'	[mysql_stmt_errno]: 1054	[mysql_stmt_sqlstate]: 42S22	[statemnt]: SELECT pid, pos, inventory, containers FROM houses WHERE pid=? AND owned='1';
      [20:00:50:092 +02:00] [Thread 3136] extDB2: SQL_CUSTOM_V2: Wiping Statements + Session
      [20:00:50:092 +02:00] [Thread 3136] extDB2: SQL_CUSTOM_V2: Error: UniqueID: 9819 Input String: housingFetchPlayerHouse:76561198057742713
      [20:01:17:834 +02:00] [Thread 3136] extDB2: SQL_CUSTOM_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_prepare error	[mysql_stmt_error]: Unknown column 'inventory' in 'field list'	[mysql_stmt_errno]: 1054	[mysql_stmt_sqlstate]: 42S22	[statemnt]: SELECT pid, pos, inventory, containers FROM houses WHERE pid=? AND owned='1';
      [20:01:17:834 +02:00] [Thread 3136] extDB2: SQL_CUSTOM_V2: Wiping Statements + Session
      [20:01:17:834 +02:00] [Thread 3136] extDB2: SQL_CUSTOM_V2: Error: UniqueID: 9822 Input String: housingFetchPlayerHouse:76561198138781982
      [20:02:40:119 +02:00] [Thread 3136] extDB2: SQL_CUSTOM_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_execute error	[mysql_stmt_error]: Field 'gear' doesn't have a default value	[mysql_stmt_errno]: 1364	[mysql_stmt_sqlstate]: HY000	[statemnt]: INSERT INTO vehicles (side, classname, type, pid, alive, active, inventory, color, plate) VALUES (?,?,?,?,?,?,?,?,?);
      [20:02:40:119 +02:00] [Thread 3136] extDB2: SQL_CUSTOM_V2: Wiping Statements + Session
      [20:02:40:144 +02:00] [Thread 3136] extDB2: SQL_CUSTOM_V2: Error: UniqueID: 1 Input String: vehicleInsert:civ:B_Quadbike_01_F:Car:76561198057742713:1:1:[]:2:778896
      [20:20:52:296 +02:00] [Thread 1144] extDB2: SQL_CUSTOM_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_prepare error	[mysql_stmt_error]: Unknown column 'inventory' in 'field list'	[mysql_stmt_errno]: 1054	[mysql_stmt_sqlstate]: 42S22	[statemnt]: SELECT pid, pos, inventory, containers FROM houses WHERE pid=? AND owned='1';
      [20:20:52:296 +02:00] [Thread 1144] extDB2: SQL_CUSTOM_V2: Wiping Statements + Session
      [20:20:52:297 +02:00] [Thread 1144] extDB2: SQL_CUSTOM_V2: Error: UniqueID: 9835 Input String: housingFetchPlayerHouse:76561198117402249
      [20:22:04:332 +02:00] [Thread 1144] extDB2: SQL_CUSTOM_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_prepare error	[mysql_stmt_error]: Unknown column 'inventory' in 'field list'	[mysql_stmt_errno]: 1054	[mysql_stmt_sqlstate]: 42S22	[statemnt]: SELECT pid, pos, inventory, containers FROM houses WHERE pid=? AND owned='1';
      [20:22:04:332 +02:00] [Thread 1144] extDB2: SQL_CUSTOM_V2: Wiping Statements + Session
      [20:22:04:332 +02:00] [Thread 1144] extDB2: SQL_CUSTOM_V2: Error: UniqueID: 9838 Input String: housingCleanup:76561198117402249
      [20:34:31:145 +02:00] [Thread 1144] extDB2: SQL_CUSTOM_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_prepare error	[mysql_stmt_error]: Unknown column 'inventory' in 'field list'	[mysql_stmt_errno]: 1054	[mysql_stmt_sqlstate]: 42S22	[statemnt]: SELECT pid, pos, inventory, containers FROM houses WHERE pid=? AND owned='1';
      [20:34:31:145 +02:00] [Thread 1144] extDB2: SQL_CUSTOM_V2: Wiping Statements + Session
      [20:34:31:145 +02:00] [Thread 1144] extDB2: SQL_CUSTOM_V2: Error: UniqueID: 9839 Input String: housingCleanup:76561198138781982
      [20:48:38:057 +02:00] [Thread 1144] extDB2: SQL_CUSTOM_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_prepare error	[mysql_stmt_error]: Unknown column 'inventory' in 'field list'	[mysql_stmt_errno]: 1054	[mysql_stmt_sqlstate]: 42S22	[statemnt]: SELECT pid, pos, inventory, containers FROM houses WHERE pid=? AND owned='1';
      [20:48:38:057 +02:00] [Thread 1144] extDB2: SQL_CUSTOM_V2: Wiping Statements + Session
      [20:48:38:057 +02:00] [Thread 1144] extDB2: SQL_CUSTOM_V2: Error: UniqueID: 9843 Input String: housingCleanup:76561198057742713
      [15:18:15:555 +02:00] [Thread 3084] extDB2: Stopping ...
      Alles anzeigen

      Wo finde ich die custom.ini im [lexicon]ExtDB[/lexicon] Ordner hab ich ihn nicht gefunden.

    • Garage Error Datenbank Fehler

      • PrideGame
      • 15. Juni 2016 um 20:12

      Hallo ich bin's wieder euer Problemkind ^^

      Folgendes Problem:

      [20:02:40:144 +02:00] [Thread 3136] extDB2: SQL_CUSTOM_V2: Error: UniqueID: 1 Input String: vehicleInsert:civ:B_Quadbike_01_F:Car:76561198057742713:1:1:[]:2:778896

      In unserer Garage werden auch nie Fahrzeuge gespeichert (Egal welche Fraktion)
      Immer wenn man diese gerade erst eingeparkt hat dann nachschaut bei der Garagen KI
      sagt er mir meine Garage sei leer.. hat dieser Code damit was zutun? ^^

    • DynMarkt System von RyanTT

      • PrideGame
      • 15. Juni 2016 um 20:07

      Haben den Dynmarkt jetzt erstmal wieder entfernt.
      Kommt dann halt später als Update rein ;)

    • DynMarkt System von RyanTT

      • PrideGame
      • 15. Juni 2016 um 18:45

      Ja aber in welcher Datei ist diese Funktion?

    • DynMarkt System von RyanTT

      • PrideGame
      • 15. Juni 2016 um 17:59

      Ich glaube es gibt es auch nicht für die 4.4 ... ich verbugge mir hier grad alles glaube ich xD
      EDIT:
      Nope keine Datei gefunden, sollte ich das ganze lieber erstmal entfernen?
      Außerdem hab ich jetzt das Problem das die Zivis nicht spawnen können..
      "Empfange Datein vom Server... Überprüfe..." kommt dauerhaft ...

    • DynMarkt System von RyanTT

      • PrideGame
      • 15. Juni 2016 um 17:53

      Ich benutze die 4.4 wieso?

    • DynMarkt System von RyanTT

      • PrideGame
      • 15. Juni 2016 um 15:50

      Dein %appdata% -> Local -> Arma3 find ich nichts, hab kein Local da... ?(

      Die Probleme hab ich schon gesehene behebe ich nachher jedoch hat dein Computer neustarten echt geholfen... das ist jetzt etwas verwunderlich aber naja.. es funkt danke dir :)

    • DynMarkt System von RyanTT

      • PrideGame
      • 15. Juni 2016 um 15:35

      [lexicon]extDB[/lexicon] Log:

      Code
      [15:18:02:020 +02:00] [Thread 4036] extDB2: Database Type: MySQL
      [15:18:02:033 +02:00] [Thread 4036] extDB2: Database Session Pool Started
      [15:18:02:037 +02:00] [Thread 4036] extDB2: SQL_CUSTOM_V2: Loading Template Filename: C:\server\A3Master\@extDB2\extDB\sql_custom_v2\altis-life-rpg-4.ini
      [15:18:02:037 +02:00] [Thread 4036] extDB2: SQL_CUSTOM_V2: Version 12 Detected, Latest Version 12 Available
      [15:18:02:123 +02:00] [Thread 1072] extDB2: SQL_CUSTOM_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_execute error	[mysql_stmt_error]: The user specified as a definer ('arma3'@'localhost') does not exist	[mysql_stmt_errno]: 1449	[mysql_stmt_sqlstate]: HY000	[statemnt]: CALL deleteDeadVehicles;
      [15:18:02:123 +02:00] [Thread 1072] extDB2: SQL_CUSTOM_V2: Wiping Statements + Session
      [15:18:02:123 +02:00] [Thread 1072] extDB2: SQL_CUSTOM_V2: Error: UniqueID: 1 Input String: deleteDeadVehicles
      [15:18:02:234 +02:00] [Thread 1072] extDB2: SQL_CUSTOM_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_execute error	[mysql_stmt_error]: The user specified as a definer ('arma3'@'localhost') does not exist	[mysql_stmt_errno]: 1449	[mysql_stmt_sqlstate]: HY000	[statemnt]: CALL resetLifeVehicles;
      [15:18:02:234 +02:00] [Thread 1072] extDB2: SQL_CUSTOM_V2: Wiping Statements + Session
      [15:18:02:246 +02:00] [Thread 1072] extDB2: SQL_CUSTOM_V2: Error: UniqueID: 1 Input String: resetLifeVehicles
      [15:18:02:248 +02:00] [Thread 1268] extDB2: SQL_CUSTOM_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_execute error	[mysql_stmt_error]: The user specified as a definer ('arma3'@'localhost') does not exist	[mysql_stmt_errno]: 1449	[mysql_stmt_sqlstate]: HY000	[statemnt]: CALL deleteOldHouses;
      [15:18:02:248 +02:00] [Thread 1268] extDB2: SQL_CUSTOM_V2: Wiping Statements + Session
      [15:18:02:248 +02:00] [Thread 1268] extDB2: SQL_CUSTOM_V2: Error: UniqueID: 1 Input String: deleteOldHouses
      [15:18:02:248 +02:00] [Thread 1624] extDB2: SQL_CUSTOM_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_execute error	[mysql_stmt_error]: The user specified as a definer ('arma3'@'localhost') does not exist	[mysql_stmt_errno]: 1449	[mysql_stmt_sqlstate]: HY000	[statemnt]: CALL deleteOldGangs;
      [15:18:02:249 +02:00] [Thread 1624] extDB2: SQL_CUSTOM_V2: Wiping Statements + Session
      [15:18:02:249 +02:00] [Thread 1624] extDB2: SQL_CUSTOM_V2: Error: UniqueID: 1 Input String: deleteOldGangs
      [15:18:59:485 +02:00] [Thread 1624] extDB2: SQL_CUSTOM_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_prepare error	[mysql_stmt_error]: Unknown column 'inventory' in 'field list'	[mysql_stmt_errno]: 1054	[mysql_stmt_sqlstate]: 42S22	[statemnt]: SELECT pid, pos, inventory, containers FROM houses WHERE pid=? AND owned='1';
      [15:18:59:485 +02:00] [Thread 1624] extDB2: SQL_CUSTOM_V2: Wiping Statements + Session
      [15:18:59:485 +02:00] [Thread 1624] extDB2: SQL_CUSTOM_V2: Error: UniqueID: 9818 Input String: housingCleanup:76561198057742713
      [15:26:26:818 +02:00] [Thread 1268] extDB2: SQL_CUSTOM_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_execute error	[mysql_stmt_error]: The user specified as a definer ('arma3'@'localhost') does not exist	[mysql_stmt_errno]: 1449	[mysql_stmt_sqlstate]: HY000	[statemnt]: CALL deleteDeadVehicles;
      [15:26:26:818 +02:00] [Thread 1268] extDB2: SQL_CUSTOM_V2: Wiping Statements + Session
      [15:26:26:818 +02:00] [Thread 1268] extDB2: SQL_CUSTOM_V2: Error: UniqueID: 1 Input String: deleteDeadVehicles
      [15:26:26:838 +02:00] [Thread 1268] extDB2: SQL_CUSTOM_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_execute error	[mysql_stmt_error]: The user specified as a definer ('arma3'@'localhost') does not exist	[mysql_stmt_errno]: 1449	[mysql_stmt_sqlstate]: HY000	[statemnt]: CALL resetLifeVehicles;
      [15:26:26:838 +02:00] [Thread 1268] extDB2: SQL_CUSTOM_V2: Wiping Statements + Session
      [15:26:26:838 +02:00] [Thread 1268] extDB2: SQL_CUSTOM_V2: Error: UniqueID: 1 Input String: resetLifeVehicles
      [15:26:26:840 +02:00] [Thread 1268] extDB2: SQL_CUSTOM_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_execute error	[mysql_stmt_error]: The user specified as a definer ('arma3'@'localhost') does not exist	[mysql_stmt_errno]: 1449	[mysql_stmt_sqlstate]: HY000	[statemnt]: CALL deleteOldHouses;
      [15:26:26:840 +02:00] [Thread 1268] extDB2: SQL_CUSTOM_V2: Wiping Statements + Session
      [15:26:26:844 +02:00] [Thread 1268] extDB2: SQL_CUSTOM_V2: Error: UniqueID: 1 Input String: deleteOldHouses
      [15:26:26:847 +02:00] [Thread 1072] extDB2: SQL_CUSTOM_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_execute error	[mysql_stmt_error]: The user specified as a definer ('arma3'@'localhost') does not exist	[mysql_stmt_errno]: 1449	[mysql_stmt_sqlstate]: HY000	[statemnt]: CALL deleteOldGangs;
      [15:26:26:847 +02:00] [Thread 1072] extDB2: SQL_CUSTOM_V2: Wiping Statements + Session
      [15:26:26:847 +02:00] [Thread 1072] extDB2: SQL_CUSTOM_V2: Error: UniqueID: 1 Input String: deleteOldGangs
      [15:27:36:674 +02:00] [Thread 1072] extDB2: SQL_CUSTOM_V2: Error StatementException: MySQL: [MySQL]: [Comment]: mysql_stmt_prepare error	[mysql_stmt_error]: Unknown column 'inventory' in 'field list'	[mysql_stmt_errno]: 1054	[mysql_stmt_sqlstate]: 42S22	[statemnt]: SELECT pid, pos, inventory, containers FROM houses WHERE pid=? AND owned='1';
      [15:27:36:674 +02:00] [Thread 1072] extDB2: SQL_CUSTOM_V2: Wiping Statements + Session
      [15:27:36:674 +02:00] [Thread 1072] extDB2: SQL_CUSTOM_V2: Error: UniqueID: 9821 Input String: housingCleanup:76561198057742713
      Alles anzeigen

      Client Logs? Wo finde ich die gleich?

    • DynMarkt System von RyanTT

      • PrideGame
      • 15. Juni 2016 um 15:29

      Sofort nach dem Download

    • DynMarkt System von RyanTT

      • PrideGame
      • 15. Juni 2016 um 15:20

      Ist nach einem Restart vom Spiel immer noch :/

    • DynMarkt System von RyanTT

      • PrideGame
      • 15. Juni 2016 um 15:06
      Code
      Server error: Player without identity Riley Anderson (id 637940806)
      Server error: Player without identity Riley Anderson (id 637940806)
      Server error: Player without identity Riley Anderson (id 637940806)
      Server error: Player without identity Riley Anderson (id 637940806)
      Server error: Player without identity Riley Anderson (id 637940806)
      Server error: Player without identity Riley Anderson (id 637940806)
      Server error: Player without identity Riley Anderson (id 637940806)
      Server error: Player without identity Riley Anderson (id 637940806)
      Server error: Player without identity Riley Anderson (id 637940806)
      Server error: Player without identity Riley Anderson (id 637940806)
      Server error: Player without identity Riley Anderson (id 637940806)
      Server error: Player without identity Riley Anderson (id 637940806)
      Server error: Player without identity Riley Anderson (id 637940806)
      Server error: Player without identity Riley Anderson (id 637940806)
      Server error: Player without identity Riley Anderson (id 637940806)
      Server error: Player without identity Riley Anderson (id 637940806)
      Starting mission:
       Mission file: TanoaLife (__cur_mp)
       Mission world: Tanoa
       Mission directory: mpmissions\__cur_mp.Tanoa\
      Attempt to override final function - bis_functions_list
      Attempt to override final function - bis_functions_listpreinit
      Attempt to override final function - bis_functions_listpostinit
      Attempt to override final function - bis_functions_listrecompile
      Attempt to override final function - bis_fnc_missiontaskslocal
      Attempt to override final function - bis_fnc_missionconversationslocal
      Attempt to override final function - bis_fnc_missionflow
        found in (39,18).
        found in (383,210).
        found in (450,319).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (369,382).
        found in (368,383).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (369,382).
        found in (368,383).
        found in (368,383).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (370,383).
        found in (370,383).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (206,144).
        found in (211,236).
        found in (206,144).
        found in (211,236).
        found in (477,386).
        found in (274,371).
        found in (275,370).
        found in (274,371).
        found in (275,370).
        found in (206,144).
        found in (212,237).
        found in (477,386).
        found in (206,144).
        found in (211,236).
        found in (211,236).
        found in (206,144).
        found in (211,237).
        found in (476,386).
        found in (332,448).
        found in (188,353).
        found in (189,331).
        found in (189,342).
        found in (295,340).
        found in (384,86).
        found in (229,247).
        found in (407,431).
        found in (388,436).
        found in (388,102).
        found in (64,215).
        found in (181,136).
        found in (60,397).
        found in (219,436).
        found in (314,249).
        found in (194,348).
        found in (193,361).
        found in (69,114).
        found in (392,99).
        found in (189,352).
        found in (394,434).
        found in (389,85).
        found in (231,240).
        found in (369,383).
        found in (369,383).
        found in (368,383).
        found in (206,144).
        found in (211,237).
        found in (477,386).
        found in (206,144).
        found in (211,236).
        found in (477,386).
        found in (211,237).
        found in (476,386).
        found in (172,288).
        found in (195,333).
        found in (184,137).
        found in (385,87).
        found in (179,337).
        found in (196,341).
        found in (317,452).
        found in (387,84).
        found in (316,452).
        found in (182,135).
        found in (389,75).
        found in (187,133).
        found in (388,89).
        found in (187,417).
        found in (100,377).
        found in (70,111).
        found in (277,323).
        found in (298,341).
        found in (82,248).
        found in (478,291).
        found in (364,329).
        found in (179,135).
        found in (283,414).
        found in (172,294).
        found in (206,144).
        found in (211,237).
        found in (477,386).
        found in (206,144).
        found in (211,236).
        found in (477,386).
        found in (370,383).
        found in (370,383).
        found in (368,383).
        found in (368,383).
        found in (370,383).
        found in (370,382).
        found in (368,382).
        found in (368,383).
        found in (184,137).
        found in (205,144).
        found in (212,236).
        found in (477,386).
        found in (370,383).
        found in (368,383).
        found in (370,382).
        found in (206,144).
        found in (206,144).
        found in (206,144).
        found in (211,237).
        found in (211,237).
        found in (211,237).
        found in (477,386).
        found in (477,386).
        found in (477,386).
        found in (206,144).
        found in (211,237).
        found in (477,386).
        found in (205,144).
        found in (206,144).
        found in (205,144).
        found in (205,144).
        found in (206,144).
        found in (211,237).
        found in (212,236).
        found in (211,236).
        found in (212,236).
        found in (211,237).
        found in (212,236).
        found in (211,237).
        found in (211,236).
        found in (211,237).
        found in (476,386).
        found in (477,386).
        found in (477,386).
        found in (477,386).
        found in (476,386).
        found in (477,386).
        found in (476,386).
        found in (477,386).
        found in (476,386).
        found in (274,370).
        found in (274,370).
        found in (274,370).
        found in (274,370).
        found in (274,370).
        found in (274,370).
        found in (274,370).
        found in (274,370).
        found in (205,144).
        found in (212,236).
        found in (477,386).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (369,383).
        found in (368,383).
        found in (368,383).
        found in (368,382).
        found in (368,383).
        found in (368,383).
        found in (368,383).
        found in (368,384).
        found in (368,384).
        found in (368,384).
        found in (369,384).
        found in (369,384).
        found in (369,384).
        found in (369,384).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,382).
        found in (370,382).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (370,383).
        found in (368,383).
        found in (368,383).
        found in (370,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (369,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,382).
        found in (368,383).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (370,382).
        found in (368,382).
        found in (368,382).
        found in (206,144).
        found in (211,237).
        found in (477,386).
        found in (274,370).
        found in (206,144).
        found in (211,236).
        found in (477,386).
        found in (206,144).
        found in (211,236).
        found in (477,386).
        found in (212,236).
        found in (477,386).
        found in (205,144).
        found in (198,350).
        found in (190,331).
        found in (190,331).
        found in (190,331).
        found in (190,331).
        found in (190,331).
        found in (190,331).
        found in (190,331).
        found in (190,331).
        found in (190,331).
        found in (388,89).
        found in (388,89).
        found in (388,89).
        found in (388,89).
        found in (388,89).
        found in (388,89).
        found in (388,89).
        found in (388,89).
        found in (372,171).
        found in (390,436).
        found in (230,249).
        found in (189,355).
        found in (189,353).
        found in (189,354).
        found in (189,355).
        found in (189,355).
        found in (189,355).
        found in (188,355).
        found in (188,355).
        found in (188,355).
        found in (188,354).
        found in (188,354).
        found in (188,354).
        found in (188,354).
        found in (188,354).
        found in (188,353).
        found in (188,353).
        found in (188,353).
        found in (188,352).
        found in (188,352).
        found in (188,352).
        found in (188,352).
        found in (188,351).
        found in (188,351).
        found in (188,351).
        found in (189,351).
        found in (188,351).
        found in (188,352).
        found in (189,351).
        found in (189,351).
        found in (189,351).
        found in (189,351).
        found in (189,353).
        found in (189,352).
        found in (188,354).
        found in (188,354).
        found in (189,354).
        found in (198,350).
        found in (406,431).
        found in (406,431).
        found in (406,431).
        found in (406,431).
        found in (405,431).
        found in (406,431).
        found in (406,431).
        found in (405,431).
        found in (405,433).
        found in (406,431).
        found in (405,431).
        found in (406,431).
        found in (406,431).
        found in (405,431).
        found in (405,431).
        found in (406,431).
        found in (406,431).
        found in (407,431).
        found in (407,431).
        found in (407,431).
        found in (407,431).
        found in (407,431).
        found in (407,431).
        found in (188,354).
        found in (188,354).
        found in (405,432).
        found in (405,432).
        found in (405,432).
        found in (396,435).
        found in (395,435).
        found in (395,435).
        found in (388,437).
        found in (171,333).
        found in (372,481).
        found in (37,19).
        found in (189,330).
      No speaker given for Batou Ekwensi
        found in (385,87).
        found in (392,77).
        found in (39,17).
        found in (343,160).
        found in (183,132).
        found in (387,84).
        found in (377,97).
        found in (60,398).
        found in (388,89).
        found in (247,282).
        found in (173,122).
        found in (412,152).
        found in (183,136).
        found in (180,136).
        found in (444,401).
        found in (84,252).
        found in (175,334).
        found in (345,284).
        found in (63,215).
        found in (153,71).
        found in (314,252).
        found in (227,243).
        found in (231,240).
        found in (50,229).
        found in (455,393).
        found in (301,458).
        found in (225,244).
        found in (216,429).
        found in (225,445).
        found in (318,453).
        found in (390,105).
        found in (388,436).
        found in (168,286).
        found in (384,84).
        found in (294,340).
        found in (281,343).
        found in (292,340).
      No speaker given for Kirabo Odili
        found in (184,137).
        found in (392,92).
        found in (391,100).
        found in (187,342).
        found in (189,352).
      No speaker given for Ben Harrison
        found in (179,337).
        found in (189,330).
        found in (196,341).
      No speaker given for Gula Okonjo
        found in (195,333).
      No speaker given for Zheng Yeung
        found in (189,330).
      soldier[B_diver_F]:Some of magazines weren't stored in soldier Vest or Uniform?
        found in (188,346).
      No speaker given for Jake Clarke
        found in (189,354).
      No speaker given for George Price
        found in (38,17).
      No speaker given for James Miller
        found in (189,354).
      No speaker given for Jammie Snowe
        found in (189,353).
        found in (319,453).
      No speaker given for Muhammad Balewa
        found in (317,452).
        found in (319,448).
      No speaker given for Thomas Abbey
        found in (394,434).
      No speaker given for William Bayh
        found in (389,85).
      No speaker given for Brian Wood
        found in (180,137).
        found in (439,396).
        found in (73,286).
        found in (316,452).
      No speaker given for Liang Lin
        found in (329,450).
        found in (182,135).
        found in (71,113).
      No speaker given for Yu Liou
        found in (184,137).
        found in (299,459).
        found in (361,65).
        found in (248,249).
        found in (235,447).
        found in (392,75).
        found in (171,333).
        found in (456,408).
        found in (310,456).
      No speaker given for Chris Price
        found in (180,137).
      No speaker given for Liam Taylor
        found in (389,85).
        found in (433,71).
        found in (388,89).
      No speaker given for Thomas Johnson
        found in (295,340).
        found in (439,467).
        found in (88,79).
      No speaker given for Mao Ximi
        found in (388,89).
        found in (265,414).
        found in (331,448).
        found in (385,89).
        found in (194,361).
        found in (230,249).
      No speaker given for Thomas Faulkner
        found in (376,176).
      No speaker given for Chris Allen
        found in (376,177).
      No speaker given for Quinton James
        found in (392,88).
        found in (181,396).
        found in (458,391).
      soldier[B_diver_F]:Some of magazines weren't stored in soldier Vest or Uniform?
        found in (187,135).
      No speaker given for Henry Cooper
        found in (195,348).
        found in (468,278).
      No speaker given for Muhammad Gowon
        found in (389,75).
        found in (427,163).
        found in (437,458).
        found in (298,117).
        found in (65,217).
      No speaker given for Ethan Thompson
        found in (390,436).
      No speaker given for Benjamin Edwards
        found in (189,352).
      No speaker given for Henry Taylor
        found in (391,96).
        found in (343,160).
        found in (439,467).
      No speaker given for Lucas Price
        found in (343,160).
        found in (190,331).
        found in (414,474).
      No speaker given for Toby Wilson
        found in (187,133).
        found in (408,462).
        found in (271,446).
        found in (274,370).
        found in (184,137).
      No speaker given for Angelos Karmanlis
        found in (189,339).
      No speaker given for Vangelis Oikonomopulu
        found in (474,383).
      No speaker given for Vyron Lagos
        found in (187,417).
      No speaker given for Panagiotis Costas
        found in (62,404).
      No speaker given for Dimitris Papageorgiou
        found in (193,361).
      No speaker given for Fotini Dimitriadis
        found in (100,377).
      No speaker given for Sotiris Petridis
        found in (70,111).
      No speaker given for Argyris Karmanlis
        found in (277,323).
      No speaker given for Gerasimos Vidales
        found in (298,341).
      No speaker given for Kostas Zenon
        found in (82,248).
      No speaker given for Nikas Lias
        found in (192,140).
      No speaker given for Theofilos Athanasiadis
        found in (478,291).
      No speaker given for Vega Dimitriadis
        found in (389,75).
      No speaker given for Aris Stanis
        found in (364,329).
      No speaker given for Nikolaos Petridis
        found in (420,253).
      No speaker given for Janos Karmanlis
        found in (179,135).
      No speaker given for Panos Savalas
        found in (298,455).
      No speaker given for Rosi Nicolau
        found in (283,414).
      No speaker given for Vasilis Moritiadou
        found in (172,294).
      No speaker given for Giourkas Savalas
        found in (218,436).
      No speaker given for Aris Moritiadou
        found in (387,433).
      No speaker given for Thanos Bouras
        found in (372,171).
      No speaker given for Sotiris Malas
        found in (332,448).
      No speaker given for Dembe Okadigbo
        found in (172,288).
      Error: Object(2 : 3172) not found
      c:\w\stable\futura\lib\network\networkserver.cpp NetworkServer::OnClientStateChanged:NOT IMPLEMENTED - briefing!
      Attempt to override final function - life_sql_id
      "extDB: Still Connected to the Database"
      "extDB2: uisleep [4]: 370.278"
      "extDB2: uisleep [4]: 370.372"
      "extDB2: uisleep [4]: 402.097"
      Error in expression <etVariable["containers",nil,true];
      };
      } foreach _houses;
      >
        Error position: <foreach _houses;
      >
        Error foreach: Type String, expected Array
      File life_server\Functions\Housing\fn_houseCleanup.sqf, line 21
      EPE manager release (0|114|0)
      Deinitialized shape [Class: "Underwear_F"; Shape: "a3\characters_f\common\basicbody.p3d";]
      Deinitialized shape [Class: "B_medic_F"; Shape: "a3\characters_f\blufor\b_soldier_02.p3d";]
      Deinitialized shape [Class: "B_soldier_AR_F"; Shape: "a3\characters_f\blufor\b_soldier_02.p3d";]
      Deinitialized shape [Class: "B_diver_F"; Shape: "a3\characters_f\common\diver_slotable.p3d";]
      Deinitialized shape [Class: "C_man_w_worker_F"; Shape: "a3\characters_f\common\coveralls.p3d";]
      Deinitialized shape [Class: "B_RangeMaster_F"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";]
      Deinitialized shape [Class: "C_man_p_beggar_F_afro"; Shape: "a3\characters_f\civil\c_poor.p3d";]
      Deinitialized shape [Class: "C_man_p_beggar_F"; Shape: "a3\characters_f\civil\c_poor.p3d";]
      Deinitialized shape [Class: "C_man_p_fugitive_F_asia"; Shape: "a3\characters_f\civil\c_poor.p3d";]
      Deinitialized shape [Class: "C_man_p_fugitive_F"; Shape: "a3\characters_f\civil\c_poor.p3d";]
      Deinitialized shape [Class: "O_Soldier_F"; Shape: "a3\characters_f\opfor\o_soldier_01.p3d";]
      Deinitialized shape [Class: "C_man_hunter_1_F"; Shape: "a3\characters_f\civil\c_hunter_f.p3d";]
      Deinitialized shape [Class: "C_man_1"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
      Deinitialized shape [Class: "C_man_polo_3_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
      Deinitialized shape [Class: "C_man_polo_6_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
      Deinitialized shape [Class: "C_man_shorts_3_F_euro"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
      Deinitialized shape [Class: "C_man_shorts_3_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
      Deinitialized shape [Class: "C_man_p_shorts_1_F_afro"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
      Deinitialized shape [Class: "C_man_p_shorts_1_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
      Deinitialized shape [Class: "C_man_polo_4_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
      Deinitialized shape [Class: "C_man_polo_2_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
      Deinitialized shape [Class: "C_man_polo_1_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
      Deinitialized shape [Class: "C_man_polo_5_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
      Deinitialized shape [Class: "C_Nikos_aged"; Shape: "a3\characters_f_epc\civil\c_nikos_aged.p3d";]
      c:\w\stable\futura\lib\network\networkserver.cpp ClearNetServer:NOT IMPLEMENTED - briefing!
      Extensions:
        extDB2 (C:\server\A3Master\@extDB2\extDB2.dll) [63.0.0.0] [63.0.0.0]
      Alles anzeigen

      Was bedeuten eigentlich die ganzen Namen?

    • DynMarkt System von RyanTT

      • PrideGame
      • 15. Juni 2016 um 14:58

      Hallo,

      ich habe gerade das DynMarkt System von RyanTT installiert.
      Wenn ich auf den Server joine dann fängt er auch an die Missionfile zudownloaden
      jedoch wenn diese fertig ist schmeißt er mich einfach vom Server..

      Hier wer ne Idee wodran das liegt?

    • Spieler spawnen auf der "KI Insel"

      • PrideGame
      • 15. Juni 2016 um 01:41

      Das mit dem spawnen.. hab ich mir grad selbst beigebracht aber ich danke dir für deinen Link das behebt mein nächstes Problem.

    • Spieler spawnen auf der "KI Insel"

      • PrideGame
      • 15. Juni 2016 um 00:57

      Halloou,

      folgendes Problem man wählt seinen Spawn aus und wubs spawnt man da wo alle KI's stehen und nicht dort wo man ausgewählt hat.

      Gibt die Fehler Meldung im Zusammenhang Sinn?

      Grüße
      PrideGame

      Dateien

      log.txt 76,05 kB – 163 Downloads
    • Kann Arma 3 Server nicht auf Dev Version updaten

      • PrideGame
      • 14. Juni 2016 um 17:48

      Und wie ist die neue ID fürs Apex Preview Build?

    Registrieren oder Einloggen

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

    Registrieren

    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™