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
Fr: 18 Juli 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. Sw4mP

    Beiträge von Sw4mP

    • EMP für andere Fahrzeuge Einstellen

      • Sw4mP
      • 28. Juli 2017 um 14:28

      Hat sich erledigt :D

    • 100% Cops Rufen bei Tankstellenraub + 2 Tankstellenraube gleichzeitig

      • Sw4mP
      • 25. Juli 2017 um 02:00

      Okey, danke, ich werde mich da mal ransetzen

    • Wenn spieler in Gang = kann nicht joinen

      • Sw4mP
      • 24. Juli 2017 um 15:06

      Hallo,


      wenn jemand bei mir auf'm server in ner Gang ist, kann er nicht joinen. Dann steht da: Frage Spielerinformationen zu UUID.. ab, oder so.

      Kennt jemand ne lösung ?

      Danke im Vorraus!

    • 100% Cops Rufen bei Tankstellenraub + 2 Tankstellenraube gleichzeitig

      • Sw4mP
      • 24. Juli 2017 um 15:02

      Okey, danke!

    • Keine schlüssel vom Haus nach reconnect

      • Sw4mP
      • 24. Juli 2017 um 15:00

      Hallo,

      wenn man sich nen Haus kauft, und einmal vom Server geht, sind die Schlüssel weg, ich denke das hat mit der Datenbank zu tun, aber was genau muss man machen ?

      Danke im Vorraus!


      Edit:

      Das haus wird in der Datenbank angezeigt, nur der User hat den schlüssel nicht.

    • 100% Cops Rufen bei Tankstellenraub + 2 Tankstellenraube gleichzeitig

      • Sw4mP
      • 24. Juli 2017 um 14:58

      Hallo,

      zurzeit ist es bei mir so, dass die Cops ganz Selten gerufen werden, wo kann ich einstellen, dass sie immer Gerufen werden (Also das immer ne Nachricht kommt).

      Es hat ja hier mit was zu tun:
      if(_chance >= 85) then { hintSilent "The cashier hit the silent alarm, police has been alerted!"; [[1,format["ALARM! - Gasstation: %1 is being robbed!", _shop]],"life_fnc_broadcast",west,false] spawn life_fnc_MP; };
      aber was genau heißt >=85 ?

      Außerdem wird, wenn 2 Tankstellen gleichzeitig ausgeraubt werden, nur eine auf der Map angezeigt, wie kann man das ändern ?

      Code
      private["_robber","_shop","_kassa","_ui","_progress","_pgText","_cP","_rip","_pos"];
      _shop = [_this,0,ObjNull,[ObjNull]] call BIS_fnc_param; //The object that has the action attached to it is _this. ,0, is the index of object, ObjNull is the default should there be nothing in the parameter or it's broken
      _robber = [_this,1,ObjNull,[ObjNull]] call BIS_fnc_param; //Can you guess? Alright, it's the player, or the "caller". The object is 0, the person activating the object is 1
      //_kassa = 1000; //The amount the shop has to rob, you could make this a parameter of the call (https://community.bistudio.com/wiki/addAction). Give it a try and post below ;)
      _action = [_this,2] call BIS_fnc_param;//Action name
      
      if(side _robber != civilian) exitWith { hintSilent "You can not rob this station!" };
      if(_robber distance _shop > 5) exitWith { hintSilent "You need to be within 5m of the cashier to rob him!" };
      
      if !(_kassa) then { _kassa = 1000; };
      if (_rip) exitWith { hintSilent "Robbery already in progress!" };
      if (vehicle player != _robber) exitWith { hintSilent "Get out of your vehicle!" };
      
      if !(alive _robber) exitWith {};
      if (currentWeapon _robber == "") exitWith { hintSilent "HaHa, you do not threaten me! Get out of here you hobo!" };
      if (_kassa == 0) exitWith { hintSilent "There is no cash in the register!" };
      
      _rip = true;
      _kassa = 40000 + round(random 120000);
      _shop removeAction _action;
      _shop switchMove "AmovPercMstpSsurWnonDnon";
      _chance = random(100);
      if(_chance >= 85) then { hintSilent "The cashier hit the silent alarm, police has been alerted!"; [[1,format["ALARM! - Gasstation: %1 is being robbed!", _shop]],"life_fnc_broadcast",west,false] spawn life_fnc_MP; };
      
      _cops = (west countSide playableUnits);
      if(_cops < 1) exitWith{[[_vault,-1],"disableSerialization;",false,false] spawn life_fnc_MP; hintSilent "There isnt enough Police to rob gas station!";};
      disableSerialization;
      5 cutRsc ["life_progress","PLAIN"];
      _ui = uiNameSpace getVariable "life_progress";
      _progress = _ui displayCtrl 38201;
      _pgText = _ui displayCtrl 38202;
      _pgText ctrlSetText format["Robbery in Progress, stay close (10m) (1%1)...","%"];
      _progress progressSetPosition 0.01;
      _cP = 0.01;
       
      if(_rip) then
      {
      while{true} do
      {
      uiSleep 1.3;
      _cP = _cP + 0.01;
      _progress progressSetPosition _cP;
      _pgText ctrlSetText format["Robbery in Progress, stay close (10m) (%1%2)...",round(_cP * 100),"%"];
      _Pos = position player; // by ehno: get player pos
                                      _marker = createMarker ["Marker200", _Pos]; //by ehno: Place a Maker on the map
                                      "Marker200" setMarkerColor "ColorRed";
                                      "Marker200" setMarkerText "!ATTENTION! robbery !ATTENTION!";
                                      "Marker200" setMarkerType "mil_warning";            
      if(_cP >= 1) exitWith {};
      if(_robber distance _shop > 10.5) exitWith { };
      if!(alive _robber) exitWith {};
      };
      if!(alive _robber) exitWith { _rip = false; };
      if(_robber distance _shop > 10.5) exitWith { deleteMarker "Marker200"; _shop switchMove ""; hintSilent "You need to stay within 10m to Rob registry! - Now the registry is locked."; 5 cutText ["","PLAIN"]; _rip = false; };
      5 cutText ["","PLAIN"];
      
      titleText[format["You have stolen $%1, now get away before the cops arrive!",[_kassa] call life_fnc_numberText],"PLAIN"];
      deleteMarker "Marker200"; // by ehno delete maker
      life_cash = life_cash + _kassa;
      
      _rip = false;
      life_use_atm = false;
      uiSleep (30 + random(180));
      life_use_atm = true;
      if!(alive _robber) exitWith {};
      [[getPlayerUID _robber,name _robber,"211"],"life_fnc_wantedAdd",false,false] spawn life_fnc_MP;
      };
      uiSleep 300;
      _action = _shop addAction["Rob the Gas Station",life_fnc_robShops];    
      _shop switchMove "";
      Alles anzeigen

      Danke schonmal!

    • Tankstellenraub Zeit verändern, und Geld erhöhen

      • Sw4mP
      • 24. Juli 2017 um 13:39

      Danke :D

    • Tankstellenraub Zeit verändern, und Geld erhöhen

      • Sw4mP
      • 24. Juli 2017 um 13:38

      Danke für die Antworten! :D

      Kann ich bei

      _kassa = 3000 + round(random 12000);

      einfach irgendwas hinschreiben, also theoretisch auch 999.999$ ? [ _kassa = 40000 + round(random 120000); ] <--- Geht das `?

      Danke schonmal :D

    • Tankstellenraub Zeit verändern, und Geld erhöhen

      • Sw4mP
      • 23. Juli 2017 um 17:32

      Hallo,

      wie kann ich einstellen, dass ein Tankstellen raub länger dauert ?
      Und wo steht, wie viel Geld man kriegt ?

      Müsste ja alles in der Datei sein :)

      Code
      private["_robber","_shop","_kassa","_ui","_progress","_pgText","_cP","_rip","_pos"];
      _shop = [_this,0,ObjNull,[ObjNull]] call BIS_fnc_param; //The object that has the action attached to it is _this. ,0, is the index of object, ObjNull is the default should there be nothing in the parameter or it's broken
      _robber = [_this,1,ObjNull,[ObjNull]] call BIS_fnc_param; //Can you guess? Alright, it's the player, or the "caller". The object is 0, the person activating the object is 1
      //_kassa = 1000; //The amount the shop has to rob, you could make this a parameter of the call (https://community.bistudio.com/wiki/addAction). Give it a try and post below ;)
      _action = [_this,2] call BIS_fnc_param;//Action name
      
      if(side _robber != civilian) exitWith { hintSilent "You can not rob this station!" };
      if(_robber distance _shop > 5) exitWith { hintSilent "You need to be within 5m of the cashier to rob him!" };
      
      if !(_kassa) then { _kassa = 1000; };
      if (_rip) exitWith { hintSilent "Robbery already in progress!" };
      if (vehicle player != _robber) exitWith { hintSilent "Get out of your vehicle!" };
      
      if !(alive _robber) exitWith {};
      if (currentWeapon _robber == "") exitWith { hintSilent "HaHa, you do not threaten me! Get out of here you hobo!" };
      if (_kassa == 0) exitWith { hintSilent "There is no cash in the register!" };
      
      _rip = true;
      _kassa = 10000 + round(random 10000);
      _shop removeAction _action;
      _shop switchMove "AmovPercMstpSsurWnonDnon";
      _chance = random(100);
      if(_chance >= 85) then { hintSilent "The cashier hit the silent alarm, police has been alerted!"; [[1,format["ALARM! - Gasstation: %1 is being robbed!", _shop]],"life_fnc_broadcast",west,false] spawn life_fnc_MP; };
      
      _cops = (west countSide playableUnits);
      if(_cops < 1) exitWith{[[_vault,-1],"disableSerialization;",false,false] spawn life_fnc_MP; hintSilent "There isnt enough Police to rob gas station!";};
      disableSerialization;
      5 cutRsc ["life_progress","PLAIN"];
      _ui = uiNameSpace getVariable "life_progress";
      _progress = _ui displayCtrl 38201;
      _pgText = _ui displayCtrl 38202;
      _pgText ctrlSetText format["Robbery in Progress, stay close (10m) (1%1)...","%"];
      _progress progressSetPosition 0.01;
      _cP = 0.01;
       
      if(_rip) then
      {
      while{true} do
      {
      uiSleep 0.85;
      _cP = _cP + 0.01;
      _progress progressSetPosition _cP;
      _pgText ctrlSetText format["Robbery in Progress, stay close (10m) (%1%2)...",round(_cP * 100),"%"];
      _Pos = position player; // by ehno: get player pos
                                      _marker = createMarker ["Marker200", _Pos]; //by ehno: Place a Maker on the map
                                      "Marker200" setMarkerColor "ColorRed";
                                      "Marker200" setMarkerText "!ATTENTION! robbery !ATTENTION!";
                                      "Marker200" setMarkerType "mil_warning";            
      if(_cP >= 1) exitWith {};
      if(_robber distance _shop > 10.5) exitWith { };
      if!(alive _robber) exitWith {};
      };
      if!(alive _robber) exitWith { _rip = false; };
      if(_robber distance _shop > 10.5) exitWith { deleteMarker "Marker200"; _shop switchMove ""; hintSilent "You need to stay within 10m to Rob registry! - Now the registry is locked."; 5 cutText ["","PLAIN"]; _rip = false; };
      5 cutText ["","PLAIN"];
      
      titleText[format["You have stolen $%1, now get away before the cops arrive!",[_kassa] call life_fnc_numberText],"PLAIN"];
      deleteMarker "Marker200"; // by ehno delete maker
      life_cash = life_cash + _kassa;
      
      _rip = false;
      life_use_atm = false;
      uiSleep (30 + random(180));
      life_use_atm = true;
      if!(alive _robber) exitWith {};
      [[getPlayerUID _robber,name _robber,"211"],"life_fnc_wantedAdd",false,false] spawn life_fnc_MP;
      };
      uiSleep 300;
      _action = _shop addAction["Rob the Gas Station",life_fnc_robShops];    
      _shop switchMove "";
      Alles anzeigen

      Danke im Vorraus!

    • Als Cop Leute wiederbeleben

      • Sw4mP
      • 23. Juli 2017 um 17:19

      Danke :D

    • Bank verschieben

      • Sw4mP
      • 23. Juli 2017 um 17:19

      Danke :D

    • EMP für andere Fahrzeuge Einstellen

      • Sw4mP
      • 23. Juli 2017 um 12:38

      Moin,

      erstmal voraus, ich bin kein Profi Scripter, ich mache das nur, um Privat bisschen mit paar Kumpels zu spiele.

      Ich möchte, das mehrere Fahrzeuge der Cops, EMP'n können. Ich hatte das schonmal umgestellt, weiß aber die Datei nichtmehr :D


      Danke schonmal!

    • Als Cop Leute wiederbeleben

      • Sw4mP
      • 23. Juli 2017 um 12:30

      Ja, weiß ich :D Aber von unser ehemaliger server war 3.1.4.8, und dann habe ich einfach den Wieder drauf gemacht ;D

    • Bank verschieben

      • Sw4mP
      • 23. Juli 2017 um 12:29

      Moin,

      erstmal voraus, ich bin kein Profi Scripter, ich mache das nur, um Privat bisschen mit paar Kumpels zu spiele.

      Wie muss ich die Bank richtig verschieben ? Ich weiß, dass ich irgendwelche Koordinaten in der @life_server ändern muss (Wenn das überhaupt stimmt) :D Und dann einfach diesen Bank Container verschieben auf der Map.
      Wie verhält sich das mit den Türen, muss man dann alle Türen im Umkreis aufbrechen ?


      Danke schonmal!

    • Als Cop Leute wiederbeleben

      • Sw4mP
      • 23. Juli 2017 um 12:21

      Moin,

      erstmal voraus, ich bin kein Profi Scripter, ich mache das nur, um Privat bisschen mit paar Kumpels zu spiele.

      Wie kann ich einstellen, das Cops auch leute wiederbeleben können ? :D


      Danke schonmal!

    • Schaufel / Axt hinzufügen frage

      • Sw4mP
      • 10. August 2016 um 14:52

      Hallo. Wir haben heute erst herausgefunden, dass der Tempest Gerät nur Sachen farmt, welche man mit der Spitzhacke abbauen kann. Wo kann ich das ändern ?

      Danke schonmal

      ~ SwamP

    • Chopper Service Frage

      • Sw4mP
      • 25. Juli 2016 um 19:21

      ? :D

    • Zivs können keine Spikes aufheben

      • Sw4mP
      • 25. Juli 2016 um 16:14

      Hey Leute,


      weiß jemand wo ich einstelle, wer Objekte wie Spikes aufheben kann ? Also mir wer ist Cop, Ziv oder Medic gemeint.

      Danke im Vorraus!

      ~ SwamP

    • Per Scrollen Sammeln ?

      • Sw4mP
      • 24. Juli 2016 um 13:35

      Hey Leute,


      gibt es eine Möglich das ich einen Typen hinstelle, dann Scrolle ich dadran, dann kriege ich kostenlos ein Item. Das kann ich belibig oft wiederholen, bis mein Inv voll ist. Evtl. noch mit Cooldown, d.h. ich kann nur jede Minute einen Einsammeln :)

      Jemand ne Idee ?

      Danke im Vorraus!

      ~ SwamP

    • Admin Menü "Bankkonto" erstellen

      • Sw4mP
      • 23. Juli 2016 um 16:47

      :D

    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™