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
Di: 20 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

    Spawn auf der Spawn Insel

    • Glenn Rhee
    • 26. Februar 2018 um 02:21
    • Erledigt
    • Glenn Rhee
      Anfänger
      Trophäen
      8
      Beiträge
      54
      • 26. Februar 2018 um 02:21
      • #1

      Guten Morgen:|,

      ich hänge hier jetzt schon seit gestern abend 22 uhr dran und finde den Fehler nicht.

      Ich habe den Server neu installiert so wie ich es die male davor auch schon habe und habe alles gestartet ganz normal doch ich habe das Problem das wenn ich mir einen Slot auswähle auf die Spawninsel komme ich bekomme kein Spawn auswahl Menü nichts ich hoffe ihr könnt mir weiter helfen weil sonst dreh ich hier Komplett durch:cursing:^^

      Hier auch einmal den Aktuellen Log


      Vielen dank im Vorraus

      Dateien

      arma3server_2018-02-26_02-00-40.rpt 60,85 kB – 215 Downloads

      tsbanner_neuxtui7.jpg

    • shoXy
      Nerd
      Reaktionen
      161
      Trophäen
      10
      Beiträge
      726
      • 26. Februar 2018 um 02:43
      • #2

      Dein Fehler ist: "extDB3: Error with Database Connection"

      Versuch mal den Server mit der 64bit Version zu starten

      Also wenn du eine Batch Datei hast dann arma3server.exe zu arma3server_x64.exe ändern.

      Ansonsten falls vorhanden extDB3 Logs

    • Glenn Rhee
      Anfänger
      Trophäen
      8
      Beiträge
      54
      • 26. Februar 2018 um 02:49
      • #3

      Wenn ich versuche die 64bit version zu starten kommt ein Anwendungsfehler.

      Hier einmal extDB3 Log

      Hoffe das ich auch der Log :D

      Dateien

      2-2-31.log 768 Byte – 197 Downloads

      tsbanner_neuxtui7.jpg

    • shoXy
      Nerd
      Reaktionen
      161
      Trophäen
      10
      Beiträge
      726
      • 26. Februar 2018 um 02:50
      • #4

      Einmal deine extDB3 Config natürlich das Passwort davor zensieren/entfernen

    • Glenn Rhee
      Anfänger
      Trophäen
      8
      Beiträge
      54
      • 26. Februar 2018 um 02:54
      • #5

      hier

      Code
      [Main]
      Version = 1
      
      Randomize Config File = false
      ;; Randomizes Config File after loading.
      ;;   Recommend to turn on, if you have enabled filepatching on arma.
      
      Allow Reset = false
      ;; Allows 9:RESET, usefull for development work
      
      Thread = 0;
      ;; Option to force number of worker threads for extDB3.
      ;;   Auto = 0, Min = 2, Max = 6
      
      [Log]
      Flush = true;
      ;; Flush logfile after each update.
      ;;    Option really only usefull if running DEBUG BUILD
      
      
      [altislife]
      IP = 127.0.0.1
      Port = 3306
      Username = root
      Password = blablabla
      Database = altislife
      Alles anzeigen

      tsbanner_neuxtui7.jpg

    • shoXy
      Nerd
      Reaktionen
      161
      Trophäen
      10
      Beiträge
      726
      • 26. Februar 2018 um 03:01
      • #6

      Verwendest du die Altis Life Version 5.0.0?

      Schick mir mal deine description.ext und life_server init.sqf

    • Glenn Rhee
      Anfänger
      Trophäen
      8
      Beiträge
      54
      • 26. Februar 2018 um 03:05
      • #7

      Ja die 5.0.0

      Hier einmal die Life_server init

      Code
      #include "script_macros.hpp"
      /*
          File: init.sqf
          Author: Bryan "Tonic" Boardwine
      
          Edit: Nanou for HeadlessClient optimization.
          Please read support for more informations.
      
          Description:
          Initialize the server and required systems.
      */
      private ["_dome","_rsb","_timeStamp","_extDBNotLoaded"];
      DB_Async_Active = false;
      DB_Async_ExtraLock = false;
      life_server_isReady = false;
      _extDBNotLoaded = "";
      serv_sv_use = [];
      publicVariable "life_server_isReady";
      life_save_civilian_position = if (LIFE_SETTINGS(getNumber,"save_civilian_position") isEqualTo 0) then {false} else {true};
      fn_whoDoneIt = compile preprocessFileLineNumbers "\life_server\Functions\Systems\fn_whoDoneIt.sqf";
      
      /*
          Prepare the headless client.
      */
      life_HC_isActive = false;
      publicVariable "life_HC_isActive";
      HC_Life = false;
      publicVariable "HC_Life";
      
      if (EXTDB_SETTING(getNumber,"HeadlessSupport") isEqualTo 1) then {
          [] execVM "\life_server\initHC.sqf";
      };
      
      /*
          Prepare extDB before starting the initialization process
          for the server.
      */
      
      if (isNil {uiNamespace getVariable "life_sql_id"}) then {
          life_sql_id = round(random(9999));
          CONSTVAR(life_sql_id);
          uiNamespace setVariable ["life_sql_id",life_sql_id];
              try {
              _result = EXTDB format ["9:ADD_DATABASE:%1",EXTDB_SETTING(getText,"DatabaseName")];
              if (!(_result isEqualTo "[1]")) then {throw "extDB3: Error with Database Connection"};
              _result = EXTDB format ["9:ADD_DATABASE_PROTOCOL:%2:SQL:%1:TEXT2",FETCH_CONST(life_sql_id),EXTDB_SETTING(getText,"DatabaseName")];
              if (!(_result isEqualTo "[1]")) then {throw "extDB3: Error with Database Connection"};
          } catch {
              diag_log _exception;
              _extDBNotLoaded = [true, _exception];
          };
          if (_extDBNotLoaded isEqualType []) exitWith {};
          EXTDB "9:LOCK";
          diag_log "extDB3: Connected to Database";
      } else {
          life_sql_id = uiNamespace getVariable "life_sql_id";
          CONSTVAR(life_sql_id);
          diag_log "extDB3: Still Connected to Database";
      };
      
      
      if (_extDBNotLoaded isEqualType []) exitWith {
          life_server_extDB_notLoaded = true;
          publicVariable "life_server_extDB_notLoaded";
      };
      life_server_extDB_notLoaded = false;
      publicVariable "life_server_extDB_notLoaded";
      
      /* Run stored procedures for SQL side cleanup */
      ["CALL resetLifeVehicles",1] call DB_fnc_asyncCall;
      ["CALL deleteDeadVehicles",1] call DB_fnc_asyncCall;
      ["CALL deleteOldHouses",1] call DB_fnc_asyncCall;
      ["CALL deleteOldGangs",1] call DB_fnc_asyncCall;
      
      _timeStamp = diag_tickTime;
      diag_log "----------------------------------------------------------------------------------------------------";
      diag_log "---------------------------------- Starting Altis Life Server Init ---------------------------------";
      diag_log "------------------------------------------ Version 5.0.0 -------------------------------------------";
      diag_log "----------------------------------------------------------------------------------------------------";
      
      if (LIFE_SETTINGS(getNumber,"save_civilian_position_restart") isEqualTo 1) then {
          [] spawn {
              _query = "UPDATE players SET civ_alive = '0' WHERE civ_alive = '1'";
              [_query,1] call DB_fnc_asyncCall;
          };
      };
      
      /* Map-based server side initialization. */
      master_group attachTo[bank_obj,[0,0,0]];
      
      {
          _hs = createVehicle ["Land_Hospital_main_F", [0,0,0], [], 0, "NONE"];
          _hs setDir (markerDir _x);
          _hs setPosATL (getMarkerPos _x);
          _var = createVehicle ["Land_Hospital_side1_F", [0,0,0], [], 0, "NONE"];
          _var attachTo [_hs, [4.69775,32.6045,-0.1125]];
          detach _var;
          _var = createVehicle ["Land_Hospital_side2_F", [0,0,0], [], 0, "NONE"];
          _var attachTo [_hs, [-28.0336,-10.0317,0.0889387]];
          detach _var;
          if (worldName isEqualTo "Tanoa") then {
              if (_forEachIndex isEqualTo 0) then {
                  atm_hospital_2 setPos (_var modelToWorld [4.48633,0.438477,-8.25683]);
                  vendor_hospital_2 setPos (_var modelToWorld [4.48633,0.438477,-8.25683]);
                  "medic_spawn_3" setMarkerPos (_var modelToWorld [8.01172,-5.47852,-8.20022]);
                  "med_car_2" setMarkerPos (_var modelToWorld [8.01172,-5.47852,-8.20022]);
                  hospital_assis_2 setPos (_hs modelToWorld [0.0175781,0.0234375,-0.231956]);
              } else {
                  atm_hospital_3 setPos (_var modelToWorld [4.48633,0.438477,-8.25683]);
                  vendor_hospital_3 setPos (_var modelToWorld [4.48633,0.438477,-8.25683]);
                  "medic_spawn_1" setMarkerPos (_var modelToWorld [-1.85181,-6.07715,-8.24944]);
                  "med_car_1" setMarkerPos (_var modelToWorld [5.9624,11.8799,-8.28493]);
                  hospital_assis_2 setPos (_hs modelToWorld [0.0175781,0.0234375,-0.231956]);
              };
          };
      } forEach ["hospital_2","hospital_3"];
      
      [8,true,12] execFSM "\life_server\FSM\timeModule.fsm";
      
      life_adminLevel = 0;
      life_medicLevel = 0;
      life_copLevel = 0;
      CONST(JxMxE_PublishVehicle,"false");
      
      /* Setup radio channels for west/independent/civilian */
      life_radio_west = radioChannelCreate [[0, 0.95, 1, 0.8], "Side Channel", "%UNIT_NAME", []];
      life_radio_civ = radioChannelCreate [[0, 0.95, 1, 0.8], "Side Channel", "%UNIT_NAME", []];
      life_radio_indep = radioChannelCreate [[0, 0.95, 1, 0.8], "Side Channel", "%UNIT_NAME", []];
      
      /* Set the amount of gold in the federal reserve at mission start */
      fed_bank setVariable ["safe",count playableUnits,true];
      [] spawn TON_fnc_federalUpdate;
      
      /* Event handler for disconnecting players */
      addMissionEventHandler ["HandleDisconnect",{_this call TON_fnc_clientDisconnect; false;}];
      [] call compile preprocessFileLineNumbers "\life_server\functions.sqf";
      
      /* Set OwnerID players for Headless Client */
      TON_fnc_requestClientID =
      {
          (_this select 1) setVariable ["life_clientID", owner (_this select 1), true];
      };
      "life_fnc_RequestClientId" addPublicVariableEventHandler TON_fnc_requestClientID;
      
      /* Event handler for logs */
      "money_log" addPublicVariableEventHandler {diag_log (_this select 1)};
      "advanced_log" addPublicVariableEventHandler {diag_log (_this select 1)};
      
      /* Miscellaneous mission-required stuff */
      life_wanted_list = [];
      
      cleanupFSM = [] execFSM "\life_server\FSM\cleanup.fsm";
      
      [] spawn {
          for "_i" from 0 to 1 step 0 do {
              uiSleep (30 * 60);
              {
                  _x setVariable ["sellers",[],true];
              } forEach [Dealer_1,Dealer_2,Dealer_3];
          };
      };
      
      [] spawn TON_fnc_initHouses;
      cleanup = [] spawn TON_fnc_cleanup;
      
      TON_fnc_playtime_values = [];
      TON_fnc_playtime_values_request = [];
      
      //Just incase the Headless Client connects before anyone else
      publicVariable "TON_fnc_playtime_values";
      publicVariable "TON_fnc_playtime_values_request";
      
      
      /* Setup the federal reserve building(s) */
      private _vaultHouse = [[["Altis", "Land_Research_house_V1_F"], ["Tanoa", "Land_Medevac_house_V1_F"]]] call TON_fnc_terrainSort;
      private _altisArray = [16019.5,16952.9,0];
      private _tanoaArray = [11074.2,11501.5,0.00137329];
      private _pos = [[["Altis", _altisArray], ["Tanoa", _tanoaArray]]] call TON_fnc_terrainSort;
      
      _dome = nearestObject [_pos,"Land_Dome_Big_F"];
      _rsb = nearestObject [_pos,_vaultHouse];
      
      for "_i" from 1 to 3 do {_dome setVariable [format ["bis_disabled_Door_%1",_i],1,true]; _dome animateSource [format ["Door_%1_source", _i], 0];};
      _dome setVariable ["locked",true,true];
      _rsb setVariable ["locked",true,true];
      _rsb setVariable ["bis_disabled_Door_1",1,true];
      _dome allowDamage false;
      _rsb allowDamage false;
      
      /* Tell clients that the server is ready and is accepting queries */
      life_server_isReady = true;
      publicVariable "life_server_isReady";
      
      /* Initialize hunting zone(s) */
      aiSpawn = ["hunting_zone",30] spawn TON_fnc_huntingZone;
      
      // We create the attachment point to be used for objects to attachTo load virtually in vehicles.
      life_attachment_point = "Land_HelipadEmpty_F" createVehicle [0,0,0];
      life_attachment_point setPosASL [0,0,0];
      life_attachment_point setVectorDirAndUp [[0,1,0], [0,0,1]];
      
      // Sharing the point of attachment with all players.
      publicVariable "life_attachment_point";
      
      // Start DynMarket
       [] execVM "\life_server\Functions\DynMarket\fn_config.sqf";
      
      diag_log "----------------------------------------------------------------------------------------------------";
      diag_log format ["               End of Altis Life Server Init :: Total Execution Time %1 seconds ",(diag_tickTime) - _timeStamp];
      diag_log "----------------------------------------------------------------------------------------------------";
      Alles anzeigen

      und einmal die Descripton

      C
      disableChannels[] = {{0,true,true},{1,true,true},{2,true,true}};    // Disabled text and voice for global, side, and command channels. Syntax: disableChannels[] = {{channelID<number>, disableChat<bool>, disableVoice<bool>}};
      overviewText = "$STR_MISC_overviewText";    // Text to be displayed below the overviewPicture on the mission selection screen when the mission is available to play.
      
      #include "config\Config_SpyGlass.hpp"
      #include "CfgRemoteExec.hpp"
      #include "dialog\MasterHandler.hpp"
      #include "config\Config_Master.hpp"
      #include "dialog\agb.hpp"
      #include "derleon\Scripts_Master.hpp"
      #include "infiSTAR_AdminMenu.hpp"
      class CfgServer {
          DatabaseName = "[altislife]"; //Config name that'll be grep in the extdb-conf.ini. Default: [altislife]
          DebugMode = 0; //Enable many server/hc debugging logs. Default: 0 (1 = Enabled / 0 = Disabled)
          HeadlessSupport = 0; //Enable/Disable Headless client support. Default: 1 (1 = Enabled / 0 = Disabled)
          /*
          Enabled: When HeadlessSupport is set to 1 (enabled), the server will run without fault when no Headless Client is connected. However, it will support the Headless Client if you choose to connect one.
          Disabled: If HeadlessSupport is set to 0 (disabled), the connection of a Headless Client will make no difference. This option will increase server performance a TINY but negligible amount.
          */
      };
      
      class RscTitles {
          #include "dialog\progress.hpp"
          #include "dialog\hud_nameTags.hpp"
          #include "dialog\hud_stats.hpp"
          #include "dialog\statusBar.hpp"
          #include "maverick\maverick_master.cpp"
      };
      
      class CfgFunctions {
          #include "cation\cation_functions.cpp"
          #include "Functions.hpp"
          #include "maverick\maverick_functions_master.cpp"
      
      };
      
      class CfgSounds {
          sounds[] = {};
          class sirenLong {
              name = "sirenLong";
              sound[] = {"", 1.0, 1};
              titles[] = {};
          };
      
          class medicSiren {
              name = "medicSiren";
              sound[] = {"", 2.0, 1};
              titles[] = {};
          };
      
          class tazerSound {
              name = "tazerSound";
              sound[] = {"\sounds\tazer.ogg", 0.25, 1};
              titles[] = {};
          };
      
          class flashbang {
              name = "flashbang";
              sound[] = {"\sounds\flashbang.ogg", 1.0, 1};
              titles[] = {};
          };
      
          class mining {
              name = "mining";
              sound[] = {"\sounds\mining.ogg", 1.0, 1};
              titles[] = {};
          };
      
          class harvest {
              name = "harvest";
              sound[] = {"\sounds\harvest.ogg", 1.0, 1};
              titles[] = {};
          };
      
          class lockCarSound {
              name = "lockCarSound";
              sound[] = {"\sounds\carLock.ogg", 0.25, 1};
              titles[] = {};
          };
      
          class unlockCarSound {
              name = "unlockCarSound";
              sound[] = {"\sounds\carUnlock.ogg", 0.25, 1};
              titles[] = {};
          };
          class intro {
              name = "intro";
              sound[] = {"\sounds\intro.ogg", 0.25, 1};
              titles[] = {};
          };
          class Abhaengig_Sound
      {
      name = "Abhaengig_Sound";
      sound[] = {"\sounds\Abhaengig_Sound.ogg", 1.0, 1};
      titles[] = {};
      };
      
      class Heroin_sound
      {
      name = "Heroin_sound";
      sound[] = {"\sounds\Heroin_sound.ogg", 1.0, 1};
      titles[] = {};
      };
      
      class Cocaine_sound
      {
      name = "Cocaine_sound";
      sound[] = {"\sounds\Cocaine_sound.ogg", 1.0, 1};
      titles[] = {};
      };
      
      class Weed_sound
      {
      name = "Weed_sound";
      sound[] = {"\sounds\Weed_sound.ogg", 1.0, 1};
      titles[] = {};
      };
      };
      
      class CfgDebriefing {
          class NotWhitelisted {
              title = "$STR_NotWhitelisted_Title";
              subtitle = "$STR_NotWhitelisted_SubTitle";
              description = "$STR_NotWhitelisted_Descript";
              pictureBackground = "";
              picture = "";
              pictureColor[] = {0,0.3,0.6,1};
          };
      
          class Blacklisted {
              title = "$STR_Blacklisted_Title";
              subtitle = "$STR_Blacklisted_SubTitle";
              description = "$STR_Blacklisted_Descript";
              pictureBackground = "";
              picture = "";
              pictureColor[] = {0,0.3,0.6,1};
          };
      
          class SpyGlass {
              title = "$STR_SpyDetect_Title";
              subTitle = "$STR_SpyDetect_SubTitle";
              description = "$STR_SpyDetect_Descript";
              pictureBackground = "";
              picture = "";
              pictureColor[] = {0,0.3,0.6,1};
          };
      };
      
      class CfgNotifications {
          class MedicalRequestEmerg {
              title = "$STR_MedicalRequestEmerg_Title";
              iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcon_ca.paa";
              description = "%1";
              duration = 5;
              priority = 7;
          };
      
          class DeliveryAssigned {
              title = "$STR_DeliveryAssigned_Title";
              iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcon_ca.paa";
              description = "%1";
              duration = 10;
              priority = 7;
          };
      
          class DeliveryFailed {
              title = "$STR_DeliveryFailed_Title";
              iconPicture = "\A3\ui_f\data\map\mapcontrol\taskiconfailed_ca.paa";
              description = "%1";
              duration = 7;
              priority = 7;
          };
      
          class DeliverySucceeded {
              title = "$STR_DeliverySucceeded_Title";
              iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcondone_ca.paa";
              description = "%1";
              duration = 6;
              priority = 6;
          };
      
          class TextMessage {
              title = "$STR_TextMessage_Title";
              iconPicture = "icons\ico_messageNew.paa";
              description = "%1";
              duration = 10;
              priority = 6;
          };
      
          class PoliceDispatch {
              title = "$STR_PoliceDispatch_Title";
              iconPicture = "icons\ico_messagePolice.paa";
              description = "%1";
              duration = 10;
              priority = 6;
          };
      
          class AdminDispatch {
              title = "$STR_AdminDispatch_Title";
              iconPicture = "icons\ico_messageAdmin.paa";
              description = "%1";
              duration = 10;
              priority = 6;
          };
      
          class AdminMessage {
              title = "$STR_AdminMessage_Title";
              iconPicture = "icons\ico_messageAdmin.paa";
              description = "%1";
              duration = 10;
              priority = 5;
          };
      };
      
      #include "cation\cation_master.cpp"
      Alles anzeigen

      hat auch nicht mit dem Databasename ohne die [] Funktioniert

      tsbanner_neuxtui7.jpg

    • shoXy
      Nerd
      Reaktionen
      161
      Trophäen
      10
      Beiträge
      726
      • 26. Februar 2018 um 03:07
      • #8

      In der description.ext ist ein Fehler, in der Zeile 12 steht [altislife] die beiden Klammern müssen raus

    • Glenn Rhee
      Anfänger
      Trophäen
      8
      Beiträge
      54
      • 26. Februar 2018 um 03:08
      • #9

      ja hatte auch ohne nicht funktioniert

      tsbanner_neuxtui7.jpg

    • shoXy
      Nerd
      Reaktionen
      161
      Trophäen
      10
      Beiträge
      726
      • 26. Februar 2018 um 03:10
      • #10

      Das ist komisch, versuch es trotzdem mal und sende mir dann nochmal extDB Logs

    • Glenn Rhee
      Anfänger
      Trophäen
      8
      Beiträge
      54
      • 26. Februar 2018 um 03:10
      • #11

      mach ich

      war das eine die Logs? :D

      tsbanner_neuxtui7.jpg

    • Glenn Rhee
      Anfänger
      Trophäen
      8
      Beiträge
      54
      • 26. Februar 2018 um 03:13
      • #12

      Also wieder das Gleiche

      Dateien

      3-10-1.log 768 Byte – 222 Downloads

      tsbanner_neuxtui7.jpg

    • shoXy
      Nerd
      Reaktionen
      161
      Trophäen
      10
      Beiträge
      726
      • 26. Februar 2018 um 03:16
      • #13

      Hast du nach der Änderung im life_server auch den Ordner wieder in einer .pbo gepackt?

      Kann mir nichts anderes erklären wie dieser Fehler auftauchen kann

    • SAMSON
      Profi
      Reaktionen
      263
      Trophäen
      9
      Beiträge
      961
      Dateien
      8
      • 26. Februar 2018 um 12:03
      • #14

       2:01:52 Warning Message: File mpmissions\__cur_mp.Altis\description.ext, line 9: .disableChannels: Member already defined.

      2:01:52 Warning Message: File mpmissions\__cur_mp.Altis\description.ext, line 211: /CfgFunctions/SpyGlass/: Missing '}'

      2:02:47 "<infiSTAR.de> ERROR: Server IP (84.200.206.91) is not whitelisted in our webinterface.


      Fix das mal und häng dann bitte nochmals den Server Log / Client Log und extDB3 Log an

      Ich bin kein Profi sondern versuche lediglich zu helfen!;)


      dc.salty-bay.de

      Weird flex! :whistling:

      The flex!
      Panel-Inhalt
    • Glenn Rhee
      Anfänger
      Trophäen
      8
      Beiträge
      54
      • 26. Februar 2018 um 12:12
      • #15

      Zu dem Ersten: ich finde hier deswegen nichts :/

      C
      disableChannels[] = {{0,true,true},{1,true,true},{2,true,true}};    // Disabled text and voice for global, side, and command channels. Syntax: disableChannels[] = {{channelID<number>, disableChat<bool>, disableVoice<bool>}};
      overviewText = "$STR_MISC_overviewText";    // Text to be displayed below the overviewPicture on the mission selection screen when the mission is available to play.
      
      #include "config\Config_SpyGlass.hpp"
      #include "CfgRemoteExec.hpp"
      #include "dialog\MasterHandler.hpp"
      #include "config\Config_Master.hpp"
      #include "dialog\agb.hpp"
      #include "derleon\Scripts_Master.hpp"
      #include "infiSTAR_AdminMenu.hpp"
      class CfgServer {
          DatabaseName = "altislife"; //Config name that'll be grep in the extdb-conf.ini. Default: [altislife]
          DebugMode = 0; //Enable many server/hc debugging logs. Default: 0 (1 = Enabled / 0 = Disabled)
          HeadlessSupport = 0; //Enable/Disable Headless client support. Default: 1 (1 = Enabled / 0 = Disabled)
          /*
          Enabled: When HeadlessSupport is set to 1 (enabled), the server will run without fault when no Headless Client is connected. However, it will support the Headless Client if you choose to connect one.
          Disabled: If HeadlessSupport is set to 0 (disabled), the connection of a Headless Client will make no difference. This option will increase server performance a TINY but negligible amount.
          */
      };
      
      class RscTitles {
          #include "dialog\progress.hpp"
          #include "dialog\hud_nameTags.hpp"
          #include "dialog\hud_stats.hpp"
          #include "dialog\statusBar.hpp"
          #include "maverick\maverick_master.cpp"
      };
      
      class CfgFunctions {
          #include "cation\cation_functions.cpp"
          #include "Functions.hpp"
          #include "maverick\maverick_functions_master.cpp"
      Alles anzeigen

      tsbanner_neuxtui7.jpg

    • Glenn Rhee
      Anfänger
      Trophäen
      8
      Beiträge
      54
      • 26. Februar 2018 um 12:14
      • #16

      Und zu dem Zweiten finde ich hier auch nichts was falsch ist

      und wegen dem Infistar hab ich kein Plan das hab ich noch nie gemacht das hat immer ein kollege gemacht.

      tsbanner_neuxtui7.jpg

    • SAMSON
      Profi
      Reaktionen
      263
      Trophäen
      9
      Beiträge
      961
      Dateien
      8
      • 26. Februar 2018 um 12:16
      • #17

      ja ok die ersten zwei dinge kann ich dir so jetzt auch net sagen... aber die sache mit infiSTAR is ez... und auch notwendig weil sonst kann der server nicht gestartet werden... :)

      Ich bin kein Profi sondern versuche lediglich zu helfen!;)


      dc.salty-bay.de

      Weird flex! :whistling:

      The flex!
      Panel-Inhalt
    • Glenn Rhee
      Anfänger
      Trophäen
      8
      Beiträge
      54
      • 26. Februar 2018 um 12:18
      • #18

      Also meinst du das ich nicht Spawnen kann wegen dem Infistar?

      bzw kein Spawnauswahl menü habe

      tsbanner_neuxtui7.jpg

    • moeck
      Erleuchteter
      Reaktionen
      632
      Trophäen
      9
      Beiträge
      3.160
      Bilder
      9
      • 26. Februar 2018 um 12:20
      • #19

      Moin,

      dann würde ich erstmal infistar weglassen. Ansonsten musst Du mal auf deren Webseite schauen wie du das freigeschaltest bekommst. Des Weiteren solltest Du mal in die Spyclass.hpp schauen ob da alles richtig eingestellt ist. Kann es sein dass hier #include "derleon\Scripts_Master.hpp" ebenfalls nochmal was zu den channels hinterlegt ist?

      Gruß,

      moeck

      Signatur? Was ist eine Signatur? Kann man das essen?

      Bitte beachten: Ich gebe keinen Support über private Nachrichten!


      Ganz wichtig: [Leitfaden] Wie frage Ich richtig um Hilfe?

      Nicht zu vergessen [Tutorial/Selbst-Test] Sollte ich einen Life Server eröffnen ?

    • SAMSON
      Profi
      Reaktionen
      263
      Trophäen
      9
      Beiträge
      961
      Dateien
      8
      • 26. Februar 2018 um 12:21
      • #20

      eig. nicht...

      Ich bin kein Profi sondern versuche lediglich zu helfen!;)


      dc.salty-bay.de

      Weird flex! :whistling:

      The flex!
      Panel-Inhalt

    Registrieren oder Einloggen

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

    Registrieren

    Ähnliche Themen

    • Ich spawne auf der Spawn Insel

      • deepofficer71
      • 9. November 2017 um 16:23
      • Hilfeforum
    • Spawn auf der Spawninsel

      • JackKa
      • 13. Juni 2017 um 14:25
      • Hilfeforum
    • Datenbank problem / Spwan auf der insel

      • yourlifeyourdecison
      • 13. Mai 2017 um 15:29
      • Hilfeforum
    • Markt Bug -> Keine Sachen mehr am Normalen markt kaufen | Beim Spawnen hängt man auf der Spawn insel nach Tot

      • TW_Sebastian
      • 1. Mai 2017 um 11:42
      • Hilfeforum
    • Spawn Probleme

      • TW_Sebastian
      • 1. Mai 2017 um 16:40
      • Hilfeforum
    • Spawn geht nicht

      • Bronzo94
      • 29. März 2017 um 01:05
      • Hilfeforum

    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™