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: 19 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

    Rob Shop Problem & SMS Eingang Ton.!?

    • Zotti
    • 20. August 2016 um 16:43
    • Geschlossen
    • Erledigt
    • Zotti
      Schüler
      Reaktionen
      10
      Trophäen
      10
      Beiträge
      123
      • 20. August 2016 um 16:43
      • #1

      Hallo.
      Sorry mit der 4.4r3 habe ich nicht so viel Erfahrung, haben umgestellt von der 3.1.4.8
      Ich habe ein Problem mit dem RobShops was ich von der 3.1.4.8 in die 4.4r eingebaut, die Tankstellen können ausgeraubt werden und auf der Map ist auch ein Marker.
      Nur leider bekommt die Polizei keinen Dispatch deswegen.
      Könnte sich vielleicht jemand meine RobShop.sqf anschauen und für die 4.4r umschreiben oder Tips geben!?

      Spoiler anzeigen

      //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 >= 1) 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 < 2) 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 {};
      };
      uiSleep 300;
      _action = _shop addAction["Rob the Gas Station",life_fnc_robShops];
      _shop switchMove "";

      Und ich würde gerne wenn ich eine SMS bekomme oder Dispatch das ein sound abgespielt wird.
      Wäre für Hilfe sehr dankbar.

      Bis denne... Zotti.

      https://www.zunft-rpg.de - IP 91.132.146.106:2314
      https://discord.gg/SETrHyD - TS- Server 91.132.146.106

    • WeiizzGold
      Frischling
      Reaktionen
      3
      Trophäen
      11
      Beiträge
      5
      • 20. August 2016 um 18:40
      • #2

      Zum Thema Klingelton:
      Schritt 1: Sound in der description.ext hinzufügen:

      Beispiel:

      C
      class sms {
              name = "sms";
              sound[] = {"\sounds\sms.ogg", 1.0, 1};
              titles[] = {};
      };


      Schritt 2: Sound in den sounds ordner verschieben.

      Schritt 3: In die datei functions.sqf in der lifeserver gehen und dort in den cases unter "TON_fnc_clientMessage" folgendes ergänzen:

      player say3D ""sms"";

      Beispiel:

      C
      private[""_message"",""_messages"",""_newMessage"",""_newArray""];
      _message = format["">>>MESSAGE FROM %1: %2"",_from,_msg];
      hint parseText format [""<t color='#FFCC00'><t size='2'><t align='center'>Neue Nachricht<br/><br/><t color='#33CC33'><t align='left'><t size='1'>An: <t color='#ffffff'>Dich<br/><t color='#33CC33'>Von: <t color='#ffffff'>%1<br/><br/><t color='#33CC33'>Message:<br/><t color='#ffffff'>%2"",_from,_msg];
      [""TextMessage"",[format[""Neue Privatnachricht erhalten von %1"",_from]]] call bis_fnc_showNotification;
      systemChat _message;
      player say3D ""sms"";

      Hi, ich bin WeiizzGold.

    • blackfisch
      Legende
      Reaktionen
      2.944
      Trophäen
      9
      Beiträge
      5.966
      Dateien
      6
      Bilder
      63
      • 20. August 2016 um 18:42
      • #3
      Zitat von Zotti

      [[1,format["ALARM! - Gasstation: %1 is being robbed!", _shop]],"life_fnc_broadcast",west,false] spawn life_fnc_MP;


      life_fnc_MP gibt es nicht mehr.

      C
      [1,format["ALARM! - Gasstation: %1 is being robbed!", _shop], false] remoteExec [life_fnc_broadcast,west] ;

      Das sollte klappen

      #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!

      ______________________

    • Zotti
      Schüler
      Reaktionen
      10
      Trophäen
      10
      Beiträge
      123
      • 20. August 2016 um 19:14
      • #4

      Das mit dem Sms Ton klappt, dankeschön.
      Mit dem Ausrauben, der sagt auch jetzt die Polizei ist informiert aber die Cops bekommen keine Nachricht, nur der übliche Marker ist auf der Map.

      Bis denne... Zotti.

      https://www.zunft-rpg.de - IP 91.132.146.106:2314
      https://discord.gg/SETrHyD - TS- Server 91.132.146.106

    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™