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

    Ziv Spawnpunkte funktionieren nicht 5.0

    • Jack Cooper
    • 20. Februar 2018 um 16:13
    • Geschlossen
    • Erledigt
    • Jack Cooper
      Amateur
      Reaktionen
      41
      Trophäen
      9
      Beiträge
      113
      Dateien
      2
      Bilder
      49
      • 20. Februar 2018 um 16:13
      • #1

      Hallo liebe NN Community ich habe folgendes Problem und zwar habe ich die Map von der 5.0 auf Lakeside gewechselt mit allen Spawnpunkten etc., jedoch können die Zivilisten keinen Spawnpunkt auswählen und spawnen unten links an der Map.

      Ich hatte es mal versucht so wie in diesem Thread beschrieben zu machen funktioniert aber leider auch nicht.

      ¨SPAWN PUNKTE WERDEN NICHT MEHR ANGEZEIGT ?¨

      Zur Anmerkung die Cop und Medic Spawn funktionieren und ich habe auch alle Zivi Spawns auf der Map auf Vorhandensein überprüft.

      Code: Connfig_SpawnPoints.hpp
      /*
      *    Format:
      *        3: STRING (Conditions) - Must return boolean :
      *            String can contain any amount of conditions, aslong as the entire
      *            string returns a boolean. This allows you to check any levels, licenses etc,
      *            in any combination. For example:
      *                "call life_coplevel && license_civ_someLicense"
      *            This will also let you call any other function.
      *
      */
      class CfgSpawnPoints {
      
          class Altis {
              class Civilian {
                  class Kavala {
                      displayName = "Kavala";
                      spawnMarker = "civ_spawn_1";
                      icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
                      conditions = "!license_civ_rebel";
                  };
      
                  class Athira {
                      displayName = "Athira";
                      spawnMarker = "civ_spawn_3";
                      icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
                      conditions = "";
                  };
      
                  class Pyrgos {
                      displayName = "Pyrgos";
                      spawnMarker = "civ_spawn_2";
                      icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
                      conditions = "";
                  };
      
                  class Sofia {
                      displayName = "Sofia";
                      spawnMarker = "civ_spawn_4";
                      icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
                      conditions = "";
                  };
      
                  class RebelN {
                      displayName = $STR_SP_Reb_N;
                      spawnMarker = "Rebelop";
                      icon = "\a3\ui_f\data\map\MapControl\bunker_ca.paa";
                      conditions = "license_civ_rebel";
                  };
      
                  class RebelS {
                      displayName = $STR_SP_Reb_S;
                      spawnMarker = "Rebelop_1";
                      icon = "\a3\ui_f\data\map\MapControl\bunker_ca.paa";
                      conditions = "license_civ_rebel";
                  };
      
                  class RebelE {
                      displayName = $STR_SP_Reb_E;
                      spawnMarker = "Rebelop_2";
                      icon = "\a3\ui_f\data\map\MapControl\bunker_ca.paa";
                      conditions = "license_civ_rebel";
                  };
              };
      
              class Cop {
                  class Kavala {
                      displayName = "Kavala HQ";
                      spawnMarker = "cop_spawn_1";
                      icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
                      conditions = "";
                  };
      
                  class Athira {
                      displayName = "Athira HQ";
                      spawnMarker = "cop_spawn_3";
                      icon = "\a3\ui_f\data\map\MapControl\fuelstation_ca.paa";
                      conditions = "";
                  };
      
                  class Pyrgos {
                      displayName = "Pyrgos HQ";
                      spawnMarker = "cop_spawn_2";
                      icon = "\a3\ui_f\data\map\GroupIcons\badge_rotate_0_gs.paa";
                      conditions = "";
                  };
      
                  class Air {
                      displayName = $STR_MAR_Police_Air_HQ;
                      spawnMarker = "cop_spawn_4";
                      icon = "\a3\ui_f\data\map\Markers\NATO\b_air.paa";
                      conditions = "call life_coplevel >= 2 && {license_cop_cAir}";
                  };
      
                  class HW {
                      displayName = $STR_MAR_Highway_Patrol;
                      spawnMarker = "cop_spawn_5";
                      icon = "\a3\ui_f\data\map\GroupIcons\badge_rotate_0_gs.paa";
                      conditions = "call life_coplevel >= 3";
                  };
              };
      
              class Medic {
                  class Kavala {
                      displayName = $STR_SP_EMS_Kav;
                      spawnMarker = "medic_spawn_1";
                      icon = "\a3\ui_f\data\map\MapControl\hospital_ca.paa";
                      conditions = "";
                  };
      
                  class Athira {
                      displayName = $STR_SP_EMS_Ath;
                      spawnMarker = "medic_spawn_2";
                      icon = "\a3\ui_f\data\map\MapControl\hospital_ca.paa";
                      conditions = "";
                  };
      
                  class Pyrgos {
                      displayName = $STR_SP_EMS_Pyr;
                      spawnMarker = "medic_spawn_3";
                      icon = "\a3\ui_f\data\map\MapControl\hospital_ca.paa";
                      conditions = "";
                  };
              };
          };
      
          class LakesideValley {
      
              class Civilian {
                  class Lakeside {
                      displayName = "Lakeside";
                      spawnMarker = "civ_spawn_1";
                      icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
                      conditions = "!license_civ_rebel";
                  };
      
                  class morrison {
                      displayName = "Morrison Town";
                      spawnMarker = "civ_spawn_3";
                      icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
                      conditions = "";
                  };
      
                  class losdiablos {
                      displayName = "Los Diablos";
                      spawnMarker = "civ_spawn_2";
                      icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
                      conditions = "";
                  };
      
                  class RebelNW {
                      displayName = Rebellen Basis Nord West;
                      spawnMarker = "Rebelop_1";
                      icon = "\a3\ui_f\data\map\MapControl\bunker_ca.paa";
                      conditions = "license_civ_rebel";
                  };
      
                  class RebelS {
                      displayName = Rebellen Basis Ost;
                      spawnMarker = "Rebelop";
                      icon = "\a3\ui_f\data\map\MapControl\bunker_ca.paa";
                      conditions = "license_civ_rebel";
                  };
              };
      
              class Cop {
                  class LakesideCop {
                      displayName = Lakeside;
                      spawnMarker = "cop_spawn_1";
                      icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
                      conditions = "";
                  };
      
                  class losdiablosCop {
                      displayName = Los Diablos;
                      spawnMarker = "cop_spawn_2";
                      icon = "\a3\ui_f\data\map\MapControl\fuelstation_ca.paa";
                      conditions = "";
                  };
              };
      
              class Medic {
      
                  class LakesideMed {
                      displayName = Lakeside;
                      spawnMarker = "medic_spawn_1";
                      icon = "\a3\ui_f\data\map\MapControl\hospital_ca.paa";
                      conditions = "";
                  };
      
                  class losdiablosMed {
                      displayName = Los Diablos;
                      spawnMarker = "medic_spawn_2";
                      icon = "\a3\ui_f\data\map\MapControl\hospital_ca.paa";
                      conditions = "";
                  };
              };
      
          };
      
      };
      Alles anzeigen

      Dateien

      fn_initCiv.sqf 1,82 kB – 198 Downloads arma3server_x64_2018-02-19_21-54-12.rpt 494,35 kB – 232 Downloads
    • blackfisch
      Legende
      Reaktionen
      2.944
      Trophäen
      9
      Beiträge
      5.966
      Dateien
      6
      Bilder
      63
      • 20. Februar 2018 um 16:17
      • #2
      Zitat von Jack Cooper

      class LakesideValley {

      -> class Jackson_County

      Es gibt keine Map namens "LakesideValley".....

      #MakeArmaNotWar

      Kein Support via PN & Steam! / No Support via DM & Steam!


      Mit freundlichen Grüßen
      blackfisch
      ______________________

      Web: blackfisch.me

      GitHub: GitHub.com/blackfisch

      Mail: [email protected]

      ______________________
      Wichtige Links:
      [Erklärung|Leitfaden] Code Optimierung

      [Tutorial] life_fnc_MP zu remoteExec

      Ohne Logs & entsprechende Dateien kein Support!

      ______________________

    • Jack Cooper
      Amateur
      Reaktionen
      41
      Trophäen
      9
      Beiträge
      113
      Dateien
      2
      Bilder
      49
      • 20. Februar 2018 um 16:22
      • #3
      Zitat von blackfisch

      -> class Jackson_County

      Es gibt keine Map namens "LakesideValley".....

      Ok, das komische daran ist halt dass es für die Cops und Medics funktioniert. Außerdem endet die Missionsdatei mit .LakesideValley.

      Bist du dir sicher?

    • Jack Cooper
      Amateur
      Reaktionen
      41
      Trophäen
      9
      Beiträge
      113
      Dateien
      2
      Bilder
      49
      • 20. Februar 2018 um 18:05
      • #4

      Das Problem hat sich gerade in Luft aufgelöst. Ich hatte so eingestellt dass man seine letzte Position zwischen den Restarts behält , trotzdem danke für die Hilfe blackfisch.

    Registrieren oder Einloggen

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

    Registrieren

    Ähnliche Themen

    • Spawnfehler

      • luargo
      • 26. März 2017 um 13:07
      • Hilfeforum

    Tags

    • altis life 5.0

    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™