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
Do: 03 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. Atavis

    Beiträge von Atavis

    • make stolen vehicle your own at chop shop

      • Atavis
      • 26. Mai 2016 um 20:22
      Zitat von Jack03

      Hello,

      have u find it out? If so please contact me ;) I try it the last 3 days also on my server ... When i will find a way i will contact you.

      I will wait

    • [Tutorial] ADAC (Opfor) einfügen extDB

      • Atavis
      • 12. Mai 2016 um 18:04

      Hello. In the file configuration.sqf is worth the initial sum of 30000. But when logging in 2500. Help please.

    • make stolen vehicle your own at chop shop

      • Atavis
      • 6. Mai 2016 um 13:13

      Do somebody have any ideas?

    • make stolen vehicle your own at chop shop

      • Atavis
      • 5. Mai 2016 um 11:38

      Hi. I'm trying to get this script, written by Kevin Webb. I was sad to learn that he ceased to maintain this script.

      Directly to the cause.

      1. I added the button itself in chop shop menu:

      CSS
      class BtnSteal : Life_RscButtonMenu
      		{
      			idc = -1;
      			text = "Make Yours";
      			colorBackground[] = {0,0.2235294117647059,0.3725490196078431,1};
      			onButtonclick = "[] spawn life_fnc_stealVehicle;";
      			x = 0.1 + (((6.25 / 40) + (1 / 250 / (safezoneW / safezoneH)))*2);
      			y = 0.8 - (1 / 25);
      			w = (6.25 / 40);
      			h = (1 / 25);
      		};
      Alles anzeigen


      2. fn_stealVehicle.sqf

      SQL
      /*
      File: fn_stealVehicle.sqf
      Author: Kevin Webb
      Description: Allows the player to put a stolen vehicle in his garage.
      */
      disableSerialization;
      private["_control","_price","_vehicle","_nearVehicles","_color","_pid","_check"];
      _control = ((findDisplay 39400) displayCtrl 39402);
      _price = _control lbValue (lbCurSel _control);
      _price = _price*0.65;
      _pid = getPlayerUID player;
      if(life_cash < _price) exitWith {hint format["We require a fee of %1 to make that vehicle yours",_price]; };
      _vehicle = _control lbData (lbCurSel _control);
      _vehicle = call compile format["%1", _vehicle];
      _nearVehicles = nearestObjects [getMarkerPos life_chopShop,["Car","Truck"],25];
      _vehicle = _nearVehicles select _vehicle;
      _vehicleName = getText(configFile >> "CfgVehicles" >> (typeOf _vehicle) >> "displayName");
      if(isNull _vehicle) exitWith {};
      _check = false;
      {if(player distance _x < 200 && side _x == west) then { _check = true; };} forEach playableUnits;
      if(_check) exitWith {hint "The cops are too close to complete this action!";};
      //EDIT HERE
      if(typeOf _vehicle == "B_MRAP_01_F") exitWith {hint "Unfortunately, you can not make that type of vehicle yours! You will have to sell it instead."; };
      _color = 0;
      if(typeOf _vehicle in["C_Offroad_01_F"]) then { _color = floor(random 12); };
      while {typeOf _vehicle in["C_Offroad_01_F"] && _color in [6,7,8]} do {_color = floor(random 12); };
      if(typeOf _vehicle in["C_Hatchback_01_F"]) then { _color = floor(random 7); };
      if(typeOf _vehicle in["C_Hatchback_01_sport_F"]) then { _color = floor(random 6); };
      if(typeOf _vehicle in["C_SUV_01_F"]) then { _color = floor(random 8); };
      while {typeOf _vehicle in["C_SUV_01_F"] && _color in[1,4,5]} do { _color = floor(random 8); };
      if(typeOf _vehicle in["B_Quadbike_01_F"]) then { _color = floor(random 9); };
      
      
      
      
      _upp = format["Interrupting a... %1",_vehicleName];
      5 cutRsc ["life_progress","PLAIN"];
      _ui = uiNameSpace getVariable "life_progress";
      _progress = _ui displayCtrl 38201;
      _pgText = _ui displayCtrl 38202;
      _pgText ctrlSetText format["%2 (1%1)...","%",_upp];
      _progress progressSetPosition 0.01;
      _cP = 0;
      
      
      
      
      while{true} do
      {
      	sleep 0.2;
      	_cP = _cP + 0.003;
      	_progress progressSetPosition _cP;
      	_pgText ctrlSetText format["%3 (%1%2)...",round(_cP * 100),"%",_upp];
      	if(speed player > 1 OR !alive player OR life_istazed OR vehicle player != player OR life_knockout  OR life_interrupted) exitWith {_check = true;};
      	if(_cP >= 1) exitWith {};
      };
      
      
      
      
      5 cutText ["","PLAIN"];
      if(_check) exitWith {hint "Cutaway interrupted";};
      hint format["You have been charged %1 for this transaction and the vehicle has been added to your garage",_price];
      [[_vehicle],"TON_fnc_vehicleIsDead",false,false] spawn life_fnc_MP;
      sleep 0.05;
      [[(getPlayerUID player),playerSide,_vehicle,_color,1],"TON_fnc_vehicleCreate",false,false] spawn life_fnc_MP;
      closeDialog 0;
      sleep 0.5;
      sleep 0.5;
      if(!isNil "_vehicle" && !isNull _vehicle) then { deleteVehicle _vehicle; };
      Alles anzeigen

      3. server file fn_vehicleIsDead.sqf

      SQL
      /*
      	File: fn_vehicleIsDead.sqf
      	Author: Kevin Webb
      	Description:
      	Used for the copCrush function: deletes the vehicle from the database.
      */
      private["_vehicle","_plate","_uid","_query","_sql","_dbInfo","_thread"];
      _vehicle = [_this,0,ObjNull,[ObjNull]] call BIS_fnc_param;
      if(isNull _vehicle) exitWith {}; //NULL
      
      
      
      
      _dbInfo = _vehicle getVariable["dbInfo",[]];
      if(count _dbInfo == 0) exitWith {};
      _uid = _dbInfo select 0;
      _plate = _dbInfo select 1;
      
      
      
      
      _query = format["UPDATE vehicles SET alive='0' WHERE pid='%1' AND plate='%2'",_uid,_plate];
      
      
      
      
      waitUntil {!DB_Async_Active};
      _thread = [_query,1] call DB_fnc_asyncCall;
      
      
      
      
      sleep 0.6;
      if(!isNil "_vehicle" && {!isNull _vehicle}) then {
      	deleteVehicle _vehicle;
      };
      Alles anzeigen

      Data files ordered in Functions and config.cpp.

      Now the very principle of work. Deletes the vehicle from the old owner's garage, creates a new one in the new owner's garage.


      I have just lost a car (and should be). According to venture, it must appear in the garage, but it's not. Record in the database appears.

      Forgot to say. After you restart the server machine has appeared at the civilian and police. Although must immediately retire civil police and be added.

    • Polizeinachricht an Alle funktioniert nich..

      • Atavis
      • 18. April 2016 um 18:11
      Zitat von morris123

      Ja moin^^ Habe Polizei Nachricht an alle eingefügt der Knopf und alles ist auch da schön und gut.. Aber wenn ich jetzt einen Text eingebe und den abschicke steht oben rechts ich soll etwas eingeben obwohl ich einen Text reingeschrieben habe.. Weiss jemand woran es liegt verwende 3.1.4.8

      Mfg

      hier mal die Functions.sqf von dem Life Server ordner

      Can your smartphone.hpp

    • Wie mache ich das wenn ein Cop in ein FAHRZEUG steigt. Das dieses dann tazert ?

      • Atavis
      • 18. April 2016 um 17:57
      Zitat von redtraxx

      Hallo Leute,


      Hoffe ihr könnt mir weiter helfen.
      Und zwar hatte ich einen Server wo wenn die Cops in ein Auto steigen
      dieses die Leute tazert und nicht tötet wenn Zivilisten angefahren
      werden .


      Das würde ich gerne wieder haben auf meinem neuen Server .

      Gruss Red

      Alles anzeigen
      SQL
      if ( ((vehicle _source) isKindOf "LandVehicle") && {driver (vehicle _source) == _source}) then {
      			if(isNull _unit) exitWith {};		
      			_damage = damage _unit;
    • Markt Icons in Sealdrop Altis Life 3.1.4.8 einfügen

      • Atavis
      • 18. April 2016 um 17:51
      Zitat von redtraxx

      Hallo ich bekomme einfach die Markt Icons nicht eingefügt :(
      Habe alles genau nach dem TUT hier gemacht : http://www.altisliferpg.com/topic/8319-t…al-items-icons/


      Desweiteren habe ich da noch ein problem und zwar wenn ich in die
      fn_virt_shops.sqf gehe und im Markt die Lockpicks rausnehme werden sie
      trotzdem noch im normalen Markt angezeigt.


      Ich hoffe ihr könnt mir helfen, wäre Euch sehr dankbar.


      Gruss Red

      Alles anzeigen

      I think the problem is in the economy that is associated with the database.
      I can see your files if you don't decide your problem. Sorry for my English)

    • Coca Cola Weihnachtstruck auf Altis

      • Atavis
      • 3. April 2016 um 12:03

      But as you have opened the car model to find the coordinates for the location of the light.

    • Lockpicks

      • Atavis
      • 29. März 2016 um 11:06
      Zitat von Xylometachlorid

      You have to delete the source of "lockpick" from the database-array.

      Ok. But I have lost the goods which had been through the database. Or then create a section under the stores in the file fn_weaponShopCfg.sqf. Or are there other options?

    • Lockpicks

      • Atavis
      • 29. März 2016 um 10:56
      Zitat von Xylometachlorid

      The reason for your problem dates from the marked-system of Sealdrop. I recommend you to use the Notepad ++ search_ function to find all sources of this_ item.

      -Xylometachlorid

      I found a source. Case in the database. For each subject there prints the type of store, trying to make a type 2 fails. How can I get rid of this?

    • Lockpicks

      • Atavis
      • 29. März 2016 um 10:26
      Zitat von Xylometachlorid

      Wich Altis Life version do you use?

      3.1.4.8 SealDrop

    • Lockpicks

      • Atavis
      • 26. März 2016 um 08:23
      Zitat von sebi1106

      The Google translator is dude.

      Ok! The bottom line is that I can not remove the product from the market (handcuffs). I go to the file fn_virt_shops.sqf and delete ID handcuffs, but they do not disappear from the store.

    • Lockpicks

      • Atavis
      • 24. März 2016 um 22:44

      Hallo Welt. Entfernen die Sperre und Handschellen mit zivilen Informationsspeicher kann nicht gestartet werden. Gelöschte Elemente aus der Datei-ID fn_virt_shops.sqf, aber sie noch bleiben. Bitte helfen.

    • Cop Messages an alle funktioniert nicht

      • Atavis
      • 23. März 2016 um 20:08

      Please help!Please help!

    • Cop Messages an alle funktioniert nicht

      • Atavis
      • 22. März 2016 um 21:45

      Please help!

    • Cop Messages an alle funktioniert nicht

      • Atavis
      • 22. März 2016 um 16:53

      Hallo Freunde. Ich habe ein Problem. Versuchen Sie, eine Schaltfläche zum Senden einer Nachricht an alle Polizei zu machen. Schaltfläche erscheint und sendet eine Nachricht, die beinhaltet:
      C:\Arma 3 Server\mpmissions\Altis_Life.Altis\core\pmenu\fn_newMsg.sqf

      Meine Dateien: Download

    • AltisLife Schildkröten

      • Atavis
      • 20. März 2016 um 21:13

      Ein großes Dankeschön an alle! Die Linie 96, alles in Ordnung.

      Code
      if(license_civ_rebel) then
      		{
      			_return set[count _return,
      			["B_G_Offroad_01_armed_F",750000]];
      			_return set[count _return,
      			["I_Heli_Transport_02_F",2000000]];
      			_return set[count _return,
      			["O_Heli_Light_02_unarmed_F",750000]];
      			_return set[count _return,
      			["O_Heli_Transport_04_box_F",1250000]];
      		};
      	};
      Alles anzeigen
    • AltisLife Schildkröten

      • Atavis
      • 20. März 2016 um 16:36

      Hallo Welt. Heruntergeladen SealDrop AltisLife | Version: 3.1.4.8. Den Server installiert. Es gab ein Problem. In Wasser keine Schildkröten und Fische. Helfen Sie, das Problem zu lösen. Dateien werden nicht entfernt und werden nicht korrigiert. Weitere Skripte habe nicht.

      SealDrop AltisLife
      RPT

    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™