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: 22 Mai 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. Sp3xx0r

    Beiträge von Sp3xx0r

    • *MySQL* Kann mir jemand Helfen?

      • Sp3xx0r
      • 29. August 2016 um 23:24

      Wie MySQL versionen, ich habe sql datei von der Modseite gedownloaded.

    • *MySQL* Kann mir jemand Helfen?

      • Sp3xx0r
      • 29. August 2016 um 23:03

      Aber ich benutze Phpmyadmin, und da wirft er immer "#1067 - Fehlerhafter Vorgabewert (DEFAULT) für 'first_connect_at'" raus. ;(

    • *MySQL* Kann mir jemand Helfen?

      • Sp3xx0r
      • 29. August 2016 um 20:51

      Hallo,

      ich habe dieses selbe problem. Bei ist nämlich auch das problem dass ich diese fehlermeldung bekomme wie bei fr0zeN.

      Spoiler anzeigen


      -- --------------------------------------------------------
      -- Host: 127.0.0.1
      -- Server version: 5.6.26-log - MySQL Community Server (GPL)
      -- Server OS: Win64
      -- HeidiSQL Version: 9.2.0.4970
      -- --------------------------------------------------------


      /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
      /*!40101 SET NAMES utf8mb4 */;
      /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
      /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;


      -- Dumping database structure for exile
      CREATE DATABASE IF NOT EXISTS `exile` /*!40100 DEFAULT CHARACTER SET utf8 */;
      USE `exile`;


      -- Dumping structure for table exile.account
      CREATE TABLE IF NOT EXISTS `account` (
      `uid` varchar(32) NOT NULL,
      `clan_id` int(11) unsigned DEFAULT NULL,
      `name` varchar(64) NOT NULL,
      `score` int(11) NOT NULL DEFAULT '0',
      `kills` int(11) unsigned NOT NULL DEFAULT '0',
      `deaths` int(11) unsigned NOT NULL DEFAULT '0',
      `locker` int(11) NOT NULL DEFAULT '0',
      `first_connect_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
      `last_connect_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
      `last_disconnect_at` datetime DEFAULT NULL,
      `total_connections` int(11) unsigned NOT NULL DEFAULT '1',
      PRIMARY KEY (`uid`),
      KEY `clan_id` (`clan_id`),
      CONSTRAINT `account_ibfk_1` FOREIGN KEY (`clan_id`) REFERENCES `clan` (`id`) ON DELETE SET NULL
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8;


      -- Data exporting was unselected.


      -- Dumping structure for table exile.clan
      CREATE TABLE IF NOT EXISTS `clan` (
      `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
      `name` varchar(64) NOT NULL,
      `leader_uid` varchar(32) NOT NULL,
      `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
      PRIMARY KEY (`id`),
      KEY `leader_uid` (`leader_uid`),
      CONSTRAINT `clan_ibfk_1` FOREIGN KEY (`leader_uid`) REFERENCES `account` (`uid`) ON DELETE CASCADE
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8;


      -- Data exporting was unselected.


      -- Dumping structure for table exile.clan_map_marker
      CREATE TABLE IF NOT EXISTS `clan_map_marker` (
      `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
      `clan_id` int(11) unsigned NOT NULL,
      `markerType` tinyint(4) NOT NULL DEFAULT '-1',
      `positionArr` text NOT NULL,
      `color` varchar(255) NOT NULL,
      `icon` varchar(255) NOT NULL,
      `iconSize` float unsigned NOT NULL,
      `label` varchar(255) NOT NULL,
      `labelSize` float unsigned NOT NULL,
      PRIMARY KEY (`id`),
      KEY `clan_id` (`clan_id`),
      CONSTRAINT `clan_map_marker_ibfk_1` FOREIGN KEY (`clan_id`) REFERENCES `clan` (`id`) ON DELETE CASCADE
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8;


      -- Data exporting was unselected.


      -- Dumping structure for table exile.construction
      CREATE TABLE IF NOT EXISTS `construction` (
      `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
      `class` varchar(64) NOT NULL,
      `account_uid` varchar(32) NOT NULL,
      `spawned_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
      `position_x` double NOT NULL DEFAULT '0',
      `position_y` double NOT NULL DEFAULT '0',
      `position_z` double NOT NULL DEFAULT '0',
      `direction_x` double NOT NULL DEFAULT '0',
      `direction_y` double NOT NULL DEFAULT '0',
      `direction_z` double NOT NULL DEFAULT '0',
      `up_x` double NOT NULL DEFAULT '0',
      `up_y` double NOT NULL DEFAULT '0',
      `up_z` double NOT NULL DEFAULT '0',
      `is_locked` tinyint(1) NOT NULL DEFAULT '0',
      `pin_code` varchar(6) NOT NULL DEFAULT '000000',
      `damage` tinyint(1) unsigned NULL DEFAULT '0',
      `territory_id` int(11) unsigned DEFAULT NULL,
      `last_updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
      `deleted_at` datetime DEFAULT NULL,
      PRIMARY KEY (`id`),
      KEY `account_uid` (`account_uid`),
      KEY `territory_id` (`territory_id`),
      CONSTRAINT `construction_ibfk_1` FOREIGN KEY (`account_uid`) REFERENCES `account` (`uid`) ON DELETE CASCADE,
      CONSTRAINT `construction_ibfk_2` FOREIGN KEY (`territory_id`) REFERENCES `territory` (`id`) ON DELETE CASCADE
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8;


      -- Data exporting was unselected.


      -- Dumping structure for table exile.container
      CREATE TABLE IF NOT EXISTS `container` (
      `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
      `class` varchar(64) NOT NULL,
      `spawned_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
      `account_uid` varchar(32) DEFAULT NULL,
      `is_locked` tinyint(1) NOT NULL DEFAULT '0',
      `position_x` double NOT NULL DEFAULT '0',
      `position_y` double NOT NULL DEFAULT '0',
      `position_z` double NOT NULL DEFAULT '0',
      `direction_x` double NOT NULL DEFAULT '0',
      `direction_y` double NOT NULL DEFAULT '0',
      `direction_z` double NOT NULL DEFAULT '0',
      `up_x` double NOT NULL DEFAULT '0',
      `up_y` double NOT NULL DEFAULT '0',
      `up_z` double NOT NULL DEFAULT '1',
      `cargo_items` text NOT NULL,
      `cargo_magazines` text NOT NULL,
      `cargo_weapons` text NOT NULL,
      `cargo_container` text NOT NULL,
      `last_updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
      `pin_code` varchar(6) NOT NULL DEFAULT '000000',
      `territory_id` int(11) unsigned DEFAULT NULL,
      `deleted_at` datetime DEFAULT NULL,
      `money` int(11) unsigned NOT NULL DEFAULT '0',
      `abandoned` datetime DEFAULT NULL,
      PRIMARY KEY (`id`),
      KEY `account_uid` (`account_uid`),
      KEY `territory_id` (`territory_id`),
      CONSTRAINT `container_ibfk_1` FOREIGN KEY (`account_uid`) REFERENCES `account` (`uid`) ON DELETE CASCADE,
      CONSTRAINT `container_ibfk_2` FOREIGN KEY (`territory_id`) REFERENCES `territory` (`id`) ON DELETE CASCADE
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;


      -- Data exporting was unselected.


      -- Dumping structure for table exile.player
      CREATE TABLE IF NOT EXISTS `player` (
      `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
      `name` varchar(64) NOT NULL,
      `account_uid` varchar(32) NOT NULL,
      `money` int(11) unsigned NOT NULL DEFAULT '0',
      `damage` double unsigned NOT NULL DEFAULT '0',
      `hunger` double unsigned NOT NULL DEFAULT '100',
      `thirst` double unsigned NOT NULL DEFAULT '100',
      `alcohol` double unsigned NOT NULL DEFAULT '0',
      `temperature` double NOT NULL DEFAULT '37',
      `wetness` double unsigned NOT NULL DEFAULT '0',
      `oxygen_remaining` double unsigned NOT NULL DEFAULT '1',
      `bleeding_remaining` double unsigned NOT NULL DEFAULT '0',
      `hitpoints` varchar(255) NOT NULL DEFAULT '[]',
      `direction` double NOT NULL DEFAULT '0',
      `position_x` double NOT NULL DEFAULT '0',
      `position_y` double NOT NULL DEFAULT '0',
      `position_z` double NOT NULL DEFAULT '0',
      `spawned_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
      `assigned_items` text NOT NULL,
      `backpack` varchar(64) NOT NULL,
      `backpack_items` text NOT NULL,
      `backpack_magazines` text NOT NULL,
      `backpack_weapons` text NOT NULL,
      `current_weapon` varchar(64) NOT NULL,
      `goggles` varchar(64) NOT NULL,
      `handgun_items` text NOT NULL,
      `handgun_weapon` varchar(64) NOT NULL,
      `headgear` varchar(64) NOT NULL,
      `binocular` varchar(64) NOT NULL,
      `loaded_magazines` text NOT NULL,
      `primary_weapon` varchar(64) NOT NULL,
      `primary_weapon_items` text NOT NULL,
      `secondary_weapon` varchar(64) NOT NULL,
      `secondary_weapon_items` text NOT NULL,
      `uniform` varchar(64) NOT NULL,
      `uniform_items` text NOT NULL,
      `uniform_magazines` text NOT NULL,
      `uniform_weapons` text NOT NULL,
      `vest` varchar(64) NOT NULL,
      `vest_items` text NOT NULL,
      `vest_magazines` text NOT NULL,
      `vest_weapons` text NOT NULL,
      `last_updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
      PRIMARY KEY (`id`),
      KEY `player_uid` (`account_uid`),
      CONSTRAINT `player_ibfk_1` FOREIGN KEY (`account_uid`) REFERENCES `account` (`uid`) ON DELETE CASCADE
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8;


      -- Data exporting was unselected.


      -- Dumping structure for table exile.player_history
      CREATE TABLE IF NOT EXISTS `player_history` (
      `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
      `account_uid` varchar(32) NOT NULL,
      `name` varchar(64) NOT NULL,
      `died_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
      `position_x` double NOT NULL,
      `position_y` double NOT NULL,
      `position_z` double NOT NULL,
      PRIMARY KEY (`id`)
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8;


      -- Data exporting was unselected.


      -- Dumping structure for table exile.territory
      CREATE TABLE IF NOT EXISTS `territory` (
      `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
      `owner_uid` varchar(32) NOT NULL,
      `name` varchar(64) NOT NULL,
      `position_x` double NOT NULL,
      `position_y` double NOT NULL,
      `position_z` double NOT NULL,
      `radius` double NOT NULL,
      `level` int(11) NOT NULL,
      `flag_texture` varchar(255) NOT NULL,
      `flag_stolen` tinyint(1) NOT NULL DEFAULT '0',
      `flag_stolen_by_uid` varchar(32) DEFAULT NULL,
      `flag_stolen_at` datetime DEFAULT NULL,
      `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
      `last_paid_at` datetime DEFAULT CURRENT_TIMESTAMP,
      `xm8_protectionmoney_notified` tinyint(1) NOT NULL DEFAULT '0',
      `build_rights` varchar(640) NOT NULL DEFAULT '0',
      `moderators` varchar(320) NOT NULL DEFAULT '0',
      `deleted_at` datetime DEFAULT NULL,
      PRIMARY KEY (`id`),
      KEY `owner_uid` (`owner_uid`),
      KEY `flag_stolen_by_uid` (`flag_stolen_by_uid`),
      CONSTRAINT `territory_ibfk_1` FOREIGN KEY (`owner_uid`) REFERENCES `account` (`uid`) ON DELETE CASCADE,
      CONSTRAINT `territory_ibfk_2` FOREIGN KEY (`flag_stolen_by_uid`) REFERENCES `account` (`uid`) ON DELETE SET NULL
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8;


      -- Data exporting was unselected.


      -- Dumping structure for table exile.vehicle
      CREATE TABLE IF NOT EXISTS `vehicle` (
      `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
      `class` varchar(64) NOT NULL,
      `spawned_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
      `account_uid` varchar(32) DEFAULT NULL,
      `is_locked` tinyint(1) NOT NULL DEFAULT '0',
      `fuel` double unsigned NOT NULL DEFAULT '0',
      `damage` double unsigned NOT NULL DEFAULT '0',
      `hitpoints` text NOT NULL,
      `position_x` double NOT NULL DEFAULT '0',
      `position_y` double NOT NULL DEFAULT '0',
      `position_z` double NOT NULL DEFAULT '0',
      `direction_x` double NOT NULL DEFAULT '0',
      `direction_y` double NOT NULL DEFAULT '0',
      `direction_z` double NOT NULL DEFAULT '0',
      `up_x` double NOT NULL DEFAULT '0',
      `up_y` double NOT NULL DEFAULT '0',
      `up_z` double NOT NULL DEFAULT '1',
      `cargo_items` text NOT NULL,
      `cargo_magazines` text NOT NULL,
      `cargo_weapons` text NOT NULL,
      `cargo_container` text NOT NULL,
      `last_updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
      `pin_code` varchar(6) NOT NULL DEFAULT '000000',
      `deleted_at` datetime DEFAULT NULL,
      `money` int(11) unsigned NOT NULL DEFAULT '0',
      `vehicle_texture` text NOT NULL,
      PRIMARY KEY (`id`),
      KEY `account_uid` (`account_uid`),
      CONSTRAINT `vehicle_ibfk_1` FOREIGN KEY (`account_uid`) REFERENCES `account` (`uid`) ON DELETE CASCADE
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8;


      -- Data exporting was unselected.
      /*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
      /*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
      /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;


      Kann mir eventuell einer helfen?

      Danke in vorraus.

    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™