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
Sa: 24 Mai 2025
  • Anmelden oder registrieren
  • Suche
Dieses Thema
  • Alles
  • Dieses Thema
  • Dieses Forum
  • Artikel
  • Forum
  • Dateien
  • Seiten
  • Bilder
  • Erweiterte Suche

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

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

    Altis Life Datenbank Anderer Name

    • Xdarel2011
    • 31. Juli 2017 um 21:28
    • Erledigt
    1. offizieller Beitrag
    • Xdarel2011
      Frischling
      Trophäen
      9
      Beiträge
      15
      • 31. Juli 2017 um 21:28
      • #1


      Hay Freunde die ist mein erstes Problem mit Altis Life


      Also ich besitze auf dem root bereits einen altis life server mit DB Name altislife & User arma3

      so nun möchte ich dort einen tanoa life server aufsetzen


      Nun mein problem die datenbanken sollen getrennt werden von ein ander


      Schaut es euch mal


      Spoiler anzeigen

      SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";


      SET time_zone = "+00:00";


      --


      -- Compatible with newer MySQL versions. (After MySQL-5.5)


      -- This SQL uses utf8mb4 and has CURRENT_TIMESTAMP function.


      --



      /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;


      /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;


      /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;


      /*!40101 SET NAMES utf8mb4 */;


      --


      -- Database: `altislife`


      -- Default Schema


      --


      CREATE DATABASE IF NOT EXISTS `altislife` DEFAULT CHARACTER SET utf8mb4;


      USE `altislife`;


      --


      -- Drop procedures to ensure no conflicts


      --


      DROP PROCEDURE IF EXISTS `resetLifeVehicles`;


      DROP PROCEDURE IF EXISTS `deleteDeadVehicles`;


      DROP PROCEDURE IF EXISTS `deleteOldHouses`;


      DROP PROCEDURE IF EXISTS `deleteOldGangs`;


      DROP PROCEDURE IF EXISTS `deleteOldContainers`;


      DROP PROCEDURE IF EXISTS `deleteOldWanted`;


      DELIMITER $$


      --


      -- Procedures


      -- Edit arma3 to match a user in MySQL


      -- 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$$


      CREATE DEFINER=`arma3`@`localhost` PROCEDURE `deleteOldWanted`()


      BEGIN


      DELETE FROM `wanted` WHERE `active` = 0;


      END$$


      DELIMITER ;


      -- --------------------------------------------------------


      --


      -- Table structure for table `players`


      --


      CREATE TABLE IF NOT EXISTS `players` (


      `uid` int(6) NOT NULL AUTO_INCREMENT,


      `name` varchar(32) NOT NULL,


      `aliases` text NOT NULL,


      `pid` varchar(17) NOT NULL,


      `cash` int(100) NOT NULL DEFAULT '0',


      `bankacc` int(100) NOT NULL DEFAULT '0',


      `coplevel` enum('0','1','2','3','4','5','6','7') NOT NULL DEFAULT '0',


      `mediclevel` enum('0','1','2','3','4','5') NOT NULL DEFAULT '0',


      `civ_licenses` text NOT NULL,


      `cop_licenses` text NOT NULL,


      `med_licenses` text NOT NULL,


      `civ_gear` text NOT NULL,


      `cop_gear` text NOT NULL,


      `med_gear` text NOT NULL,


      `civ_stats` varchar(32) NOT NULL DEFAULT '"[100,100,0]"',


      `cop_stats` varchar(32) NOT NULL DEFAULT '"[100,100,0]"',


      `med_stats` varchar(32) NOT NULL DEFAULT '"[100,100,0]"',


      `arrested` tinyint(1) NOT NULL DEFAULT '0',


      `adminlevel` enum('0','1','2','3','4','5') NOT NULL DEFAULT '0',


      `donorlevel` enum('0','1','2','3','4','5') NOT NULL DEFAULT '0',


      `blacklist` tinyint(1) NOT NULL DEFAULT '0',


      `civ_alive` tinyint(1) NOT NULL DEFAULT '0',


      `civ_position` varchar(64) NOT NULL DEFAULT '"[]"',


      `playtime` varchar(32) NOT NULL DEFAULT '"[0,0,0]"',


      `insert_time` timestamp DEFAULT CURRENT_TIMESTAMP,


      `last_seen` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,


      PRIMARY KEY (`uid`),


      UNIQUE KEY `pid` (`pid`),


      KEY `name` (`name`),


      KEY `blacklist` (`blacklist`)


      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=12 ;


      -- --------------------------------------------------------


      --


      -- Table structure for table `vehicles`


      --


      CREATE TABLE IF NOT EXISTS `vehicles` (


      `id` int(6) NOT NULL AUTO_INCREMENT,


      `side` varchar(16) NOT NULL,


      `classname` varchar(64) NOT NULL,


      `type` varchar(16) NOT NULL,


      `pid` varchar(17) NOT NULL,


      `alive` tinyint(1) NOT NULL DEFAULT '1',


      `blacklist` tinyint(1) NOT NULL DEFAULT '0',


      `active` tinyint(1) NOT NULL DEFAULT '0',


      `plate` int(20) NOT NULL,


      `color` int(20) NOT NULL,


      `inventory` text NOT NULL,


      `gear` text NOT NULL,


      `fuel` double NOT NULL DEFAULT '1',


      `damage` varchar(256) NOT NULL,


      `insert_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,


      PRIMARY KEY (`id`),


      KEY `side` (`side`),


      KEY `pid` (`pid`),


      KEY `type` (`type`)


      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=2 ;


      -- --------------------------------------------------------


      --


      -- Table structure for table `houses`


      -- Needed for extDB latest update on git


      --


      CREATE TABLE IF NOT EXISTS `houses` (


      `id` int(6) NOT NULL AUTO_INCREMENT,


      `pid` varchar(17) NOT NULL,


      `pos` varchar(64) DEFAULT NULL,


      `owned` tinyint(1) DEFAULT '0',


      `garage` tinyint(1) NOT NULL DEFAULT '0',


      `insert_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,


      PRIMARY KEY (`id`,`pid`)


      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=4 ;


      -- --------------------------------------------------------


      --


      -- Table structure for table `gangs`


      -- Needed for extDB latest update on git


      --


      CREATE TABLE IF NOT EXISTS `gangs` (


      `id` int(6) NOT NULL AUTO_INCREMENT,


      `owner` varchar(32) DEFAULT NULL,


      `name` varchar(32) DEFAULT NULL,


      `members` text,


      `maxmembers` int(3) DEFAULT '8',


      `bank` int(100) DEFAULT '0',


      `active` tinyint(1) DEFAULT '1',


      `insert_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,


      PRIMARY KEY (`id`),


      UNIQUE KEY `name_UNIQUE` (`name`)


      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;


      -- --------------------------------------------------------


      --


      -- Table structure for table `containers`


      -- Needed for extDB latest update on git


      --


      CREATE TABLE IF NOT EXISTS `containers` (


      `id` int(6) NOT NULL AUTO_INCREMENT,


      `pid` varchar(17) NOT NULL,


      `classname` varchar(32) NOT NULL,


      `pos` varchar(64) DEFAULT NULL,


      `inventory` text NOT NULL,


      `gear` text NOT NULL,


      `dir` varchar(128) DEFAULT NULL,


      `active` tinyint(1) NOT NULL DEFAULT '0',


      `owned` tinyint(1) DEFAULT '0',


      `insert_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,


      PRIMARY KEY (`id`,`pid`)


      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=4;


      -- --------------------------------------------------------


      --


      -- Table structure for table `wanted`


      -- Needed for extDB latest update on git


      --


      CREATE TABLE IF NOT EXISTS `wanted` (


      `wantedID` varchar(64) NOT NULL,


      `wantedName` varchar(32) NOT NULL,


      `wantedCrimes` text NOT NULL,


      `wantedBounty` int(100) NOT NULL,


      `active` tinyint(1) NOT NULL DEFAULT '0',


      `insert_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,


      PRIMARY KEY (`wantedID`)


      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;


      -- --------------------------------------------------------


      /*!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 */;


      IN

      Spoiler anzeigen

      SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";


      SET time_zone = "+00:00";


      --


      -- Compatible with newer MySQL versions. (After MySQL-5.5)


      -- This SQL uses utf8mb4 and has CURRENT_TIMESTAMP function.


      --



      /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;


      /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;


      /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;


      /*!40101 SET NAMES utf8mb4 */;


      --


      -- Database: `altislife`


      -- Default Schema


      --


      CREATE DATABASE IF NOT EXISTS `altislife2` DEFAULT CHARACTER SET utf8mb4;


      USE `altislife2`;


      --


      -- Drop procedures to ensure no conflicts


      --


      DROP PROCEDURE IF EXISTS `resetLifeVehicles`;


      DROP PROCEDURE IF EXISTS `deleteDeadVehicles`;


      DROP PROCEDURE IF EXISTS `deleteOldHouses`;


      DROP PROCEDURE IF EXISTS `deleteOldGangs`;


      DROP PROCEDURE IF EXISTS `deleteOldContainers`;


      DROP PROCEDURE IF EXISTS `deleteOldWanted`;


      DELIMITER $$


      --


      -- Procedures


      -- Edit arma4 to match a user in MySQL


      -- For external databases: Edit localhost to match arma4server IP


      --


      CREATE DEFINER=`arma4`@`localhost` PROCEDURE `resetLifeVehicles`()


      BEGIN


      UPDATE `vehicles` SET `active`= 0;


      END$$


      CREATE DEFINER=`arma4`@`localhost` PROCEDURE `deleteDeadVehicles`()


      BEGIN


      DELETE FROM `vehicles` WHERE `alive` = 0;


      END$$


      CREATE DEFINER=`arma4`@`localhost` PROCEDURE `deleteOldHouses`()


      BEGIN


      DELETE FROM `houses` WHERE `owned` = 0;


      END$$


      CREATE DEFINER=`arma4`@`localhost` PROCEDURE `deleteOldGangs`()


      BEGIN


      DELETE FROM `gangs` WHERE `active` = 0;


      END$$


      CREATE DEFINER=`arma4`@`localhost` PROCEDURE `deleteOldContainers`()


      BEGIN


      DELETE FROM `containers` WHERE `owned` = 0;


      END$$


      CREATE DEFINER=`arma4`@`localhost` PROCEDURE `deleteOldWanted`()


      BEGIN


      DELETE FROM `wanted` WHERE `active` = 0;


      END$$


      DELIMITER ;


      -- --------------------------------------------------------


      --


      -- Table structure for table `players`


      --


      CREATE TABLE IF NOT EXISTS `players` (


      `uid` int(6) NOT NULL AUTO_INCREMENT,


      `name` varchar(32) NOT NULL,


      `aliases` text NOT NULL,


      `pid` varchar(17) NOT NULL,


      `cash` int(100) NOT NULL DEFAULT '0',


      `bankacc` int(100) NOT NULL DEFAULT '0',


      `coplevel` enum('0','1','2','3','4','5','6','7') NOT NULL DEFAULT '0',


      `mediclevel` enum('0','1','2','3','4','5') NOT NULL DEFAULT '0',


      `civ_licenses` text NOT NULL,


      `cop_licenses` text NOT NULL,


      `med_licenses` text NOT NULL,


      `civ_gear` text NOT NULL,


      `cop_gear` text NOT NULL,


      `med_gear` text NOT NULL,


      `civ_stats` varchar(32) NOT NULL DEFAULT '"[100,100,0]"',


      `cop_stats` varchar(32) NOT NULL DEFAULT '"[100,100,0]"',


      `med_stats` varchar(32) NOT NULL DEFAULT '"[100,100,0]"',


      `arrested` tinyint(1) NOT NULL DEFAULT '0',


      `adminlevel` enum('0','1','2','3','4','5') NOT NULL DEFAULT '0',


      `donorlevel` enum('0','1','2','3','4','5') NOT NULL DEFAULT '0',


      `blacklist` tinyint(1) NOT NULL DEFAULT '0',


      `civ_alive` tinyint(1) NOT NULL DEFAULT '0',


      `civ_position` varchar(64) NOT NULL DEFAULT '"[]"',


      `playtime` varchar(32) NOT NULL DEFAULT '"[0,0,0]"',


      `insert_time` timestamp DEFAULT CURRENT_TIMESTAMP,


      `last_seen` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,


      PRIMARY KEY (`uid`),


      UNIQUE KEY `pid` (`pid`),


      KEY `name` (`name`),


      KEY `blacklist` (`blacklist`)


      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=12 ;


      -- --------------------------------------------------------


      --


      -- Table structure for table `vehicles`


      --


      CREATE TABLE IF NOT EXISTS `vehicles` (


      `id` int(6) NOT NULL AUTO_INCREMENT,


      `side` varchar(16) NOT NULL,


      `classname` varchar(64) NOT NULL,


      `type` varchar(16) NOT NULL,


      `pid` varchar(17) NOT NULL,


      `alive` tinyint(1) NOT NULL DEFAULT '1',


      `blacklist` tinyint(1) NOT NULL DEFAULT '0',


      `active` tinyint(1) NOT NULL DEFAULT '0',


      `plate` int(20) NOT NULL,


      `color` int(20) NOT NULL,


      `inventory` text NOT NULL,


      `gear` text NOT NULL,


      `fuel` double NOT NULL DEFAULT '1',


      `damage` varchar(256) NOT NULL,


      `insert_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,


      PRIMARY KEY (`id`),


      KEY `side` (`side`),


      KEY `pid` (`pid`),


      KEY `type` (`type`)


      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=2 ;


      -- --------------------------------------------------------


      --


      -- Table structure for table `houses`


      -- Needed for extDB latest update on git


      --


      CREATE TABLE IF NOT EXISTS `houses` (


      `id` int(6) NOT NULL AUTO_INCREMENT,


      `pid` varchar(17) NOT NULL,


      `pos` varchar(64) DEFAULT NULL,


      `owned` tinyint(1) DEFAULT '0',


      `garage` tinyint(1) NOT NULL DEFAULT '0',


      `insert_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,


      PRIMARY KEY (`id`,`pid`)


      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=4 ;


      -- --------------------------------------------------------


      --


      -- Table structure for table `gangs`


      -- Needed for extDB latest update on git


      --


      CREATE TABLE IF NOT EXISTS `gangs` (


      `id` int(6) NOT NULL AUTO_INCREMENT,


      `owner` varchar(32) DEFAULT NULL,


      `name` varchar(32) DEFAULT NULL,


      `members` text,


      `maxmembers` int(3) DEFAULT '8',


      `bank` int(100) DEFAULT '0',


      `active` tinyint(1) DEFAULT '1',


      `insert_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,


      PRIMARY KEY (`id`),


      UNIQUE KEY `name_UNIQUE` (`name`)


      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;


      -- --------------------------------------------------------


      --


      -- Table structure for table `containers`


      -- Needed for extDB latest update on git


      --


      CREATE TABLE IF NOT EXISTS `containers` (


      `id` int(6) NOT NULL AUTO_INCREMENT,


      `pid` varchar(17) NOT NULL,


      `classname` varchar(32) NOT NULL,


      `pos` varchar(64) DEFAULT NULL,


      `inventory` text NOT NULL,


      `gear` text NOT NULL,


      `dir` varchar(128) DEFAULT NULL,


      `active` tinyint(1) NOT NULL DEFAULT '0',


      `owned` tinyint(1) DEFAULT '0',


      `insert_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,


      PRIMARY KEY (`id`,`pid`)


      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=4;


      -- --------------------------------------------------------


      --


      -- Table structure for table `wanted`


      -- Needed for extDB latest update on git


      --


      CREATE TABLE IF NOT EXISTS `wanted` (


      `wantedID` varchar(64) NOT NULL,


      `wantedName` varchar(32) NOT NULL,


      `wantedCrimes` text NOT NULL,


      `wantedBounty` int(100) NOT NULL,


      `active` tinyint(1) NOT NULL DEFAULT '0',


      `insert_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,


      PRIMARY KEY (`wantedID`)


      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;


      -- --------------------------------------------------------


      /*!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 */;




      Er sacht mir jedes mal hat diesen einen fehler das


      Code
      CREATE DEFINER=`arma4`@`localhost` PROCEDURE `resetLifeVehicles`()
      BEGIN  UPDATE `vehicles` SET `active`= 0;
      END

      MySQL meldet: Dokumentation

      #1227 - Kein Zugriff. Hierfür wird die Berechtigung SUPER benötigt


      Dabei sind alle Rechte Vorhanden


      Vielleicht habt ihr eine Lösung wäre sehr hilfreich

    • dululu
      Schüler
      Reaktionen
      8
      Trophäen
      11
      Beiträge
      125
      • 31. Juli 2017 um 21:36
      • #2

      MySQL erklärt es schon von selbst.

      Zitat von Xdarel2011

      Hierfür wird die Berechtigung SUPER benötigt

      Einfach dem Benutzer arma4 genügend Permissions geben.

    • Xdarel2011
      Frischling
      Trophäen
      9
      Beiträge
      15
      • 31. Juli 2017 um 23:48
      • #3

      er hat ja alles an rechten die er benötigt das ist es ja

    • Online
      nox
      Administrator
      Reaktionen
      1.861
      Trophäen
      11
      Artikel
      2
      Beiträge
      1.866
      Dateien
      36
      Bilder
      11
      • 1. August 2017 um 01:07
      • Offizieller Beitrag
      • #4
      Zitat von Xdarel2011

      er hat ja alles an rechten die er benötigt das ist es ja

      Irgendwie glaube Ich nicht dass der User nötige Rechte dazu hat... :P

      Wichtige Links:

      [Erklärung|Leitfaden] Arma 3 Logs - Client, Server & extDB Log
      [Tutorial] ArmA 3 Altis Life RPG & Tanoa Life RPG Server einrichten unter Windows (mit extDB & BEC)
      BattlEye Filter - Guide und Erklärungen

    • Jay
      Amateur
      Reaktionen
      55
      Trophäen
      9
      Beiträge
      257
      Bilder
      1
      • 1. August 2017 um 18:04
      • #5

      Könntest du vielleicht mal einen Screenshot davon machen,welche Rechte du dem Benutzer "arma4" gegeben hast?

      Mit freundlichen Grüßen
      Jay

      Wichtige Links:

      Installationsanleitung extDB von Nox

      Selber Denken leicht gemacht | Server eröffnen JA / NEIN? | vabene

      Port Freigabe | Taktischer Speck

      Inhaltsverzeichnis Tutorials | Marius1773

      _________________________________________________________
      Ohne entsprechende Daten & Logs gibt es keinen Support

    Registrieren oder Einloggen

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

    Registrieren

    Benutzer online in diesem Thema

    • 1 Besucher

    Wichtige Links & Informationen

    Server & Hosting-Ressourcen

      Server Administration & Hosting Basics

      Windows Server Support & Guides

      Linux Server Configuration & Help

      Setting up TeamSpeak 3 & VoIP Servers

      Domains & Web Hosting for Beginners & Professionals

      Cloud Hosting, Docker & Kubernetes Tutorials

    Gameserver & Modding-Ressourcen

      ArmA 3 Tutorials & Script Collection

      Renting & Operating Gameservers

      DayZ Server Management & Help

      FiveM (GTA V) Server & Script Development

      Rust Server Modding & Administration

      Setting up & Optimizing ARK Survival Servers

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

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


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

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