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

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

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

    Arma3 Zigaretten Mod

      • Altis Life
    • Krypton91
    • 26. Juli 2019 um 04:15
    • Erledigt
    • Krypton91
      Schüler
      Reaktionen
      10
      Trophäen
      7
      Beiträge
      154
      • 26. Juli 2019 um 04:15
      • #1

      Moin Leude,ich habe wieder mal ein kleines Problem und zwar habe ich den Ziageretten Mod murshun_cigs, Ja alles schön und gut funktiniert auch super, wenn ich mir die sachen per Infistar gebe.

      Wenn ich die in meinen I Shop adde zeigt er mir die nicht an bzw ich kann sie einfach nicht kaufen.

      Im RPT wird angezeigt: Scripting command say3D not allowed to execute... habe das aber in der CFGRemote eingetragen

      Code
      /* Functions for everyone */
              F(BIS_fnc_effectKilledAirDestruction,ANYONE)
              F(BIS_fnc_effectKilledSecondaries,ANYONE)
              F(life_fnc_animSync,ANYONE)
              F(life_fnc_broadcast,ANYONE)
              F(life_fnc_colorVehicle,ANYONE)
              F(life_fnc_corpse,ANYONE)
              F(life_fnc_demoChargeTimer,ANYONE)
              F(life_fnc_flashbang,ANYONE)
              F(life_fnc_jumpFnc,ANYONE)
              F(life_fnc_lockVehicle,ANYONE)
              F(life_fnc_pulloutVeh,ANYONE)
              F(life_fnc_say3D,ANYONE)
              F(life_fnc_setFuel,ANYONE)
              F(life_fnc_simDisable,ANYONE)
              F(SPY_fnc_notifyAdmins,ANYONE)
              F(say3d,ANYONE)
              F(murshun_cigs_fnc_smoke,ANYONE)
              F(murshun_cigs_fnc_start_cig,ANYONE)
              F(hideObjectGlobal,ANYONE)
      Alles anzeigen

      Hier meine Shop Config

      C
      /*--------------------------------------------------------------------------
          Author:        Bytex Digital
          Website:    https://bytex.digital
      
          You're not allowed to use this file without permission from the author!
      ---------------------------------------------------------------------------*/
      
      // Configuration file for the weaponshop
      
      class maverick_weaponshop_cfg {
      
          cashVar = "life_cash";                                //--- Cash Variable
          cashSymbol = "$";                                     //--- Currency Symbol
          rotationSpeed = 2;                                     //--- Rotation speed for item in preview (1 - 10)
          saveFunction = "[] call SOCK_fnc_updateRequest";     //--- Function to save gear etc. once items are purchased
      
          class localization {
              //--- localization for hints etc.
              msgParamEmpty =                        "Shop Parameter is empty!";
              msgInVehicle =                        "You cannot be in a Vehicle!";
              msgShopExists =                        "Shop doesn't Exist!";
              msgCondition =                        "Not permitted to access this Shop!";
              msgCashOnHand =                        "Cash on Hand - %1%2";
              msgCartTotal =                        "Your Cart - %1%2";
              msgInfoTooltip =                    "--> HOLD YOUR LEFT MOUSE BUTTON DOWN WHILE MOVING MOUSE TO ROTATE WEAPON.\n--> DOUBLE CLICK ON AN ITEM IN THE CART TO REMOVE IT.\n--> USE THE 'OVERRIDE GEAR' CHECKBOX TO REPLACE WEAPONS ON HAND WITH PURCHASED WEAPONS.";
              msgInfoTooltip2 =                     "--> DOUBLE CLICK ON AN ITEM IN THE CART TO REMOVE IT.\n--> USE THE 'OVERRIDE GEAR' CHECKBOX TO REPLACE WEAPONS ON HAND WITH PURCHASED WEAPONS.";
              msgEmptyShop =                         "Nothing Found...";
              msgInfoText    =                        "<t color='#FFFFFF'>Price:</t> <t color='%1'>%3%2</t>";
              msgCartFull    =                        "Cart is Full";
              msgCartEmpty =                        "Cart is Empty";
              msgNotEnoughCash =                    "Not enough Cash for this Transaction";
              msgOverrideAlert =                    "Use the override feature to override gear!";
              msgTransactionComplete =            "Purchase completed for %1%2";
              msgNotEnoughSpace =                     "You didn't have enough space for all the items. You however only paid for those you had space for!";
              msgClear =                            "Clear";
              msgSearch =                            "Search";
      
              //--- localization for dialogs
              #define dialogTabWeapon                "Waffen"
              #define dialogTabMagazines            "Magazine"
              #define dialogTabAttachments        "Aufsätze"
              #define dialogTabOther                "Sonstige"
              #define dialogAddBtn                "Add"
              #define dialogOverrideTooltip        "Override Gear"
              #define dialogCompleteBtn            "Complete"
              #define dialogCloseBtn                 "Close"
              #define dialogTabOther                 "Ausrüstung"
          };
      
          class shops {
              class example_shop {
                  title = "Police Waffen"; //--- Title of Shop
                  condition = "call life_coplevel >= 1";     //--- Condition to meet to access shop
                  simple = 0;             //--- Type of GUI 0-Weapon View 1-No Weapon View
                  maxCart = 9000;             //--- Max Amount of Items in Shopping Cart
      
                  weapons[] = {
                      //--- item classname, price, condition, custom display name
                      {"DDOPP_X26_b", 500, "call life_coplevel >= 1", "Police Taser"},
                      {"CUP_hgun_Glock17_blk", 3000, "call life_coplevel >= 1", "Handfeuerwaffe G17"},
                      {"CUP_arifle_Colt727", 10000, "call life_coplevel >= 1", "M16 Colt"},
                      {"CUP_smg_MP5A5", 3000, "call life_coplevel >= 1", ""}
                      
                  };
      
                  magazines[] = {
                      {"DDOPP_1Rnd_X26", 20, "call life_coplevel >= 1", "Taser Magazine"},
                      {"CUP_17Rnd_9x19_glock17", 50, "call life_coplevel >= 1", "G17 Magazine"},
                      {"CUP_30Rnd_556x45_Stanag", 50, "call life_coplevel >= 1", "M16 Colt Magazine"},
                      {"CUP_30Rnd_9x19_MP5", 50, "call life_coplevel >= 1", "MP5 Munition"}
                  };
      
                  attachments[] = {
                      {"optic_Aco", 50, "call life_coplevel >= 1", "Scope 1"},
                      {"optic_Arco", 50, "call life_coplevel >= 1", "Scope 2"},
                      {"optic_NVS", 50, "call life_coplevel >= 1", "Scope 3"},
                      {"acc_flashlight", 1500, "call life_coplevel >= 1", ""}
                  };
                  
                  items[] = {
                      {"Binocular", 50, "call life_coplevel >= 1", ""},
                      {"NVGoggles", 100, "call life_coplevel >= 1", ""},
                      {"ItemGPS", 100, "call life_coplevel >= 1", ""},
                      {"ACE_CableTie", 100, "call life_coplevel >= 1", ""},
                      {"ACE_EarPlugs", 100, "call life_coplevel >= 1", ""},
                      {"ACE_fieldDressing", 100, "call life_coplevel >= 1", ""},
                      {"ACE_elasticBandage", 100, "call life_coplevel >= 1", ""},
                      {"ACE_packingBandage", 100, "call life_coplevel >= 1", ""},
                      {"pmc_earpiece", 100, "call life_coplevel >= 1", ""},
                      {"murshun_cigs_cigpackItem", 300, "true", ""},
                      {"murshun_cigs_lighterItem", 300, "true", ""},
                      {"ItemCopCard", 100, "call life_coplevel >= 1", ""}
                  };
              };
              class doj_shop {
                  title = "Doj Waffen"; //--- Title of Shop
                  condition = "license_cop_doj";     //--- Condition to meet to access shop
                  simple = 0;             //--- Type of GUI 0-Weapon View 1-No Weapon View
                  maxCart = 9000;             //--- Max Amount of Items in Shopping Cart
      
                  weapons[] = {
                      //--- item classname, price, condition, custom display name
                      {"DDOPP_X26_b", 500, "call life_coplevel >= 1", "Police Taser"},
                      {"CUP_hgun_Glock17_blk", 3000, "call life_coplevel >= 1", "Handfeuerwaffe G17"},
                      {"CUP_smg_MP5A5", 3000, "call life_coplevel >= 1", ""}
                      
                  };
      
                  magazines[] = {
                      {"DDOPP_1Rnd_X26", 20, "call life_coplevel >= 1", "Taser Magazine"},
                      {"CUP_17Rnd_9x19_glock17", 50, "call life_coplevel >= 1", "G17 Magazine"},
                      {"CUP_30Rnd_9x19_MP5", 50, "call life_coplevel >= 1", "MP5 Munition"}
                  };
      
                  attachments[] = {
                      {"optic_Aco", 50, "call life_coplevel >= 1", "Scope 1"},
                      {"optic_Arco", 50, "call life_coplevel >= 1", "Scope 2"},
                      {"optic_NVS", 50, "call life_coplevel >= 1", "Scope 3"},
                      {"acc_flashlight", 1500, "call life_coplevel >= 1", ""}
                  };
                  
                  items[] = {
                      {"Binocular", 50, "call life_coplevel >= 1", ""},
                      {"NVGoggles", 100, "call life_coplevel >= 1", ""},
                      {"ItemGPS", 100, "call life_coplevel >= 1", ""},
                      {"ACE_CableTie", 100, "call life_coplevel >= 1", ""},
                      {"ACE_EarPlugs", 100, "call life_coplevel >= 1", ""},
                      {"ACE_fieldDressing", 100, "call life_coplevel >= 1", ""},
                      {"ACE_elasticBandage", 100, "call life_coplevel >= 1", ""},
                      {"ACE_packingBandage", 100, "call life_coplevel >= 1", ""},
                      {"pmc_earpiece", 100, "call life_coplevel >= 1", ""},
                      {"murshun_cigs_CigpackItem", 300, "true", ""},
                      {"murshun_cigs_lighterItem", 300, "true", ""},
                      {"ItemCopCard", 100, "call life_coplevel >= 1", ""}
                  };
              };
              class Civ {
                  title = "Baumarkt"; //--- Title of Shop
                  condition = "true";     //--- Condition to meet to access shop
                  simple = 0;             //--- Type of GUI 0-Weapon View 1-No Weapon View
                  maxCart = 9000;             //--- Max Amount of Items in Shopping Cart
      
                  items[] = {
                      {"Binocular", 50, "true", ""},
                      {"NVGoggles", 500, "true", ""},
                      {"ACE_elasticBandage", 500, "true", ""},
                      {"ACE_packingBandage", 500, "true", ""},
                      {"ItemGPS", 199, "true", ""},
                      {"axe", 300, "true", ""},
                      {"pickaxe", 300, "true", ""},
                      {"murshun_cigs_cigpackItem", 300, "true", ""},
                      {"murshun_cigs_lighterItem", 300, "true", ""},
                      {"pmc_earpiece", 800, "true", ""}
                  };
                  magazines[] = {
                      {"murshun_cigs_cigpackItem", 300, "true", ""},
                      {"murshun_cigs_lighterItem", 300, "true", ""}
                  };
              };
              
              class Reb {
                  title = "Rebellen Ausrüstung"; //--- Title of Shop
                  condition = "license_civ_rebel";     //--- Condition to meet to access shop
                  simple = 0;             //--- Type of GUI 0-Weapon View 1-No Weapon View
                  maxCart = 9000;             //--- Max Amount of Items in Shopping Cart
      
                  weapons[] = {
                      {"CUP_hgun_Glock17_blk", 50000, "license_civ_rebel", ""},
                      {"hgun_Pistol_01_F", 30000, "license_civ_rebel", ""},
                      {"CUP_hgun_TaurusTracker455", 70000, "license_civ_rebel", ""},
                      {"CUP_hgun_MicroUzi", 3000, "license_civ_rebel", ""}
                      
                  };
      
                  magazines[] = {
                      {"CUP_17Rnd_9x19_glock17", 5000, "license_civ_rebel", ""},
                      {"CUP_30Rnd_556x45_Stanag", 4000, "license_civ_rebel", ""},
                      {"CUP_6Rnd_45ACP_M", 10000, "license_civ_rebel", ""},
                      {"10Rnd_9x21_Mag", 10000, "license_civ_rebel", ""},
                      {"CUP_30Rnd_9x19_UZI", 10000, "license_civ_rebel", ""}
                  };
      
                  attachments[] = {
                      {"optic_Hamr", 20000, "license_civ_rebel", "Scope 1"},
                      {"optic_Arco", 20000, "license_civ_rebel", "Scope 2"},
                      {"optic_Aco", 20000, "license_civ_rebel", "Scope 3"},
                      {"muzzle_snds_L", 50000, "license_civ_rebel", ""},
                      {"CUP_muzzle_snds_M9", 50000, "license_civ_rebel", ""}
                  };
                  
                  items[] = {
                      {"Binocular", 50, "license_civ_rebel", ""},
                      {"NVGoggles", 100, "license_civ_rebel", ""},
                      {"ItemGPS", 199, "true", ""},
                      {"ACE_CableTie", 20000, "license_civ_rebel", ""},
                      {"ACE_EarPlugs", 1000, "license_civ_rebel", ""},
                      {"ACE_fieldDressing", 1000, "license_civ_rebel", ""},
                      {"ACE_elasticBandage", 1000, "license_civ_rebel", ""},
                      {"ACE_key_lockpick", 50000, "license_civ_rebel", ""},
                      {"murshun_cigs_cigpackItem", 300, "true", ""},
                      {"murshun_cigs_lighterItem", 300, "true", ""},
                      {"pmc_earpiece", 300, "license_civ_rebel", ""}
                  };
              };
              
              class medic {
                  title = "Medizinische Ausrüstung"; //--- Title of Shop
                  condition = "call life_mediclevel >= 1";     //--- Condition to meet to access shop
                  simple = 0;             //--- Type of GUI 0-Weapon View 1-No Weapon View
                  maxCart = 9000;             //--- Max Amount of Items in Shopping Cart
      
                  weapons[] = {
                      //--- item classname, price, condition, custom display name
                      
                      
                  };
      
                  magazines[] = {
                  
                  };
      
                  attachments[] = {
                      {"ACE_EarPlugs", 50, "call life_medlevel >= 1", "Funk Attachment"},
                      {"ItemEmsCard", 50, "call life_medlevel >= 1", "EMS Zugangskarte"},
                      {"ACE_Track", 1500, "call life_mediclevel >= 1", ""},
                      {"ItemGPS", 199, "true", ""},
                      {"ACE_Wheel", 1500, "call life_mediclevel >= 1", ""},
                      {"ACE_key_master", 1500, "call life_mediclevel >= 1", ""},
                      {"ACE_key_lockpick", 1500, "call life_mediclevel >= 1", ""},
                      {"murshun_cigs_cigpackItem", 300, "true", ""},
                      {"murshun_cigs_lighterItem", 300, "true", ""},
                      {"pmc_earpiece", 100, "call life_mediclevel >= 1", ""}
                  };
                  
                  items[] = {
                      {"Binocular", 50, "call life_mediclevel >= 1", ""},
                      {"NVGoggles", 100, "call life_mediclevel >= 1", ""},
                      {"ACE_atropine", 100, "call life_mediclevel >= 1", ""},
                      {"ACE_fieldDressing", 100, "call life_mediclevel >= 1", ""},
                      {"ACE_elasticBandage", 100, "call life_mediclevel >= 1", ""},
                      {"ACE_quikclot", 100, "call life_mediclevel >= 1", ""},
                      {"ACE_bloodIV", 100, "call life_mediclevel >= 1", ""},
                      {"ACE_bloodIV_500", 100, "call life_mediclevel >= 1", ""},
                      {"ACE_bloodIV_250", 100, "call life_mediclevel >= 1", ""},
                      {"ACE_bodyBag", 100, "call life_mediclevel >= 1", ""},
                      {"ACE_bodyBagObject", 100, "call life_mediclevel >= 1", ""},
                      {"ACE_epinephrine", 100, "call life_mediclevel >= 1", ""},
                      {"ACE_morphine", 100, "call life_mediclevel >= 1", ""},
                      {"ACE_packingBandage", 100, "call life_mediclevel >= 1", ""},
                      {"ACE_personalAidKit", 100, "call life_mediclevel >= 1", ""},
                      {"ACE_plasmaIV", 100, "call life_mediclevel >= 1", ""},
                      {"ACE_plasmaIV_500", 100, "call life_mediclevel >= 1", ""},
                      {"ACE_plasmaIV_250", 100, "call life_mediclevel >= 1", ""},
                      {"ACE_salineIV", 100, "call life_mediclevel >= 1", ""},
                      {"ACE_salineIV_500", 100, "call life_mediclevel >= 1", ""},
                      {"ACE_salineIV_250", 100, "call life_mediclevel >= 1", ""},
                      {"ACE_surgicalKit", 100, "call life_mediclevel >= 1", ""},
                      {"ACE_tourniquet", 100, "call life_mediclevel >= 1", ""}
                      
                  };
              };
          };
      };
      
      #include "gui\weapon_gui_master.cpp"
      Alles anzeigen

      Das wird mir ingame angezeigt wenn ich auf die Items klicke.

      Bilder

      • Cigs error.PNG
        • 1,55 MB
        • 1.414 × 925
        • 439

      Dateien

      arma3server_x64_2019-07-25_23-03-29.rpt 771,58 kB – 234 Downloads

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

      Projektleitung bei http://forum.planb-life.com

      teamspeak: ts.planb-life.com

      Einmal editiert, zuletzt von Krypton91 (26. Juli 2019 um 04:28)

    • Saturin78
      Profi
      Reaktionen
      409
      Trophäen
      10
      Beiträge
      1.340
      • 26. Juli 2019 um 08:30
      • #2

      ich habe die als Waffe drin und da geht es.

      Allerdings geht die Mod nicht zusammen mit dem "TheProgrammer Duty System" gehen dann sämtliche addActions der Zigaretten nimmer, sobald man den Dienst angetreten oder beendet hat. Der Rauch der vorherigen Zigarette bleibt an der Stelle, an der man den dienst angetreten hat :-).

      Tapse mich wieder ins Arma3 xxx-Life rein :D

    • Krypton91
      Schüler
      Reaktionen
      10
      Trophäen
      7
      Beiträge
      154
      • 26. Juli 2019 um 08:46
      • #3

      Wie hast du den als Waffe? Weil bei mir ist die Packung ein Object Und das Feuerzeug auch xd ich peile es gerade echt nicht xd

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

      Projektleitung bei http://forum.planb-life.com

      teamspeak: ts.planb-life.com

    • Saturin78
      Profi
      Reaktionen
      409
      Trophäen
      10
      Beiträge
      1.340
      • 26. Juli 2019 um 09:32
      • #4

      du hast es im Shop als item eingetragen und einmal als magazin. ich habs in die waffen rubrik gemacht, dann ging es.

      Tapse mich wieder ins Arma3 xxx-Life rein :D

    • Krypton91
      Schüler
      Reaktionen
      10
      Trophäen
      7
      Beiträge
      154
      • 26. Juli 2019 um 09:52
      • #5

      Danke dir, werde das mal testen, ich dachte das juckt garnicht weil bei mir kann ich auch waffen bei Magazine rein schreiben :)

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

      Projektleitung bei http://forum.planb-life.com

      teamspeak: ts.planb-life.com

    • Krypton91
      Schüler
      Reaktionen
      10
      Trophäen
      7
      Beiträge
      154
      • 26. Juli 2019 um 10:09
      • #6

      Okay, das hat bei mir leider nichts gebracht, liegt es evtl da dran das es ein Object ist und ich das als waffe habe? was anders würde mir nicht einfallen aber wie bekomme ich das gelöst? mhm dashdash

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

      Projektleitung bei http://forum.planb-life.com

      teamspeak: ts.planb-life.com

    • Saturin78
      Profi
      Reaktionen
      409
      Trophäen
      10
      Beiträge
      1.340
      • 26. Juli 2019 um 10:53
      • #7

      Du machst die in den Waffen shop als waffe.

      dann kaufst diese.

      die Sachen müssen in der Uniform dann sein.

      Dann Gigarette mit Mausrad auspacken

      Cigarette im Inventar auf den Brillen Slot legen

      Dann Mausrad Cig anzünden, aber geht nur wenn Feuerzeug in uniform ist

      Tapse mich wieder ins Arma3 xxx-Life rein :D

    • Krypton91
      Schüler
      Reaktionen
      10
      Trophäen
      7
      Beiträge
      154
      • 26. Juli 2019 um 13:23
      • #8

      ich kann die nicht kaufen....

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

      Projektleitung bei http://forum.planb-life.com

      teamspeak: ts.planb-life.com

    • Saturin78
      Profi
      Reaktionen
      409
      Trophäen
      10
      Beiträge
      1.340
      • 26. Juli 2019 um 13:32
      • #9

      Ahhhh du hast den falschen classnamen:

      nimm mal:

      murshun_cigs_cigpack

      murshun_cigs_lighter

      Tapse mich wieder ins Arma3 xxx-Life rein :D

    • Saturin78
      Profi
      Reaktionen
      409
      Trophäen
      10
      Beiträge
      1.340
      • 26. Juli 2019 um 16:54
      • #10

      Und hats nun geklappt?

      Tapse mich wieder ins Arma3 xxx-Life rein :D

    • Krypton91
      Schüler
      Reaktionen
      10
      Trophäen
      7
      Beiträge
      154
      • 26. Juli 2019 um 21:03
      • #11

      Teste das eben habe gerade geschlafen #SchlafrhythmusDerVergeltung

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

      Projektleitung bei http://forum.planb-life.com

      teamspeak: ts.planb-life.com

    • Krypton91
      Schüler
      Reaktionen
      10
      Trophäen
      7
      Beiträge
      154
      • 26. Juli 2019 um 22:15
      • #12

      Danke dir es hat geklappt! habe den klass name weder in der Mod Config gesehen noch im Editor xd Danke dir!!

      #KannGeschlossenWerden

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

      Projektleitung bei http://forum.planb-life.com

      teamspeak: ts.planb-life.com

    • Jonas_
      Frischling
      Trophäen
      5
      Beiträge
      1
      • 31. Januar 2020 um 06:26
      • #13

      Moin,Mal so ne frage nebenbei woher hats du das Waffenshop Menü dialog.

      Bitte umrückmeldung Danke

      LG Jonas

    • GrafZahlGER
      Frischling
      Reaktionen
      1
      Trophäen
      7
      Beiträge
      16
      • 31. Januar 2020 um 08:43
      • #14

      Den hat er sicherlich von Maverick Applications gekauft ;)

      Hier mal ein Link zum Shop: https://bytex.market/products/item/…/Weapon%20Shops

      MfG GrafZahl

    Registrieren oder Einloggen

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

    Registrieren

    Ähnliche Themen

    • Immersion Cigs kein Rauch

      • A3JMJason
      • 4. Dezember 2018 um 17:54
      • Hilfeforum

    Benutzer online in diesem Thema

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