Results 1 to 8 of 8
  1. #1
    Ticki84's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    0

    DayZ Epoch vehicle key steal script

    I want a script who add the key of an target vehicle (who is owned by someone) to toolbelt.

    If somebody can help me, it's would be awesome.

  2. #2
    xCyberxx's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    C:\Windows\sys32
    Posts
    1,417
    Reputation
    379
    Thanks
    1,459
    My Mood
    Devilish
    First u need to get the ID of the vehicle and then the connected Key to it.
    If im right nobody made that yet and if somebody made it would be a payed script.
    Quote Originally Posted by darkwrath505 View Post

    "zomg ples m4ke free hacks, im too lazy t0 get source code and update offsets." - MPGH 2015



  3. #3
    furiouswai's Avatar
    Join Date
    Oct 2012
    Gender
    female
    Posts
    292
    Reputation
    142
    Thanks
    482
    infistar already made it. Just run this:

    Generate key cursor target:
    Code:
           
                    private ["_ct","_id","_result","_inventory","_backpack"];
    		_ct = cursorTarget;
    		if (!isNull _ct) then {
    			if (_ct distance player > 12) exitWith {cutText [format["%1 is to far away.",typeOF _ct], "PLAIN"];};
    			if !((_ct isKindOf "LandVehicle") || (_ct isKindOf "Air") || (_ct isKindOf "Ship")) exitWith {cutText [format["%1 is not a vehicle..",typeOF _ct], "PLAIN"];};
    			
    			_id = _ct getVariable ["CharacterID","0"];
    			_id = parsenumber _id;
    			if (_id == 0) exitWith {cutText [format["%1 has ID 0 - No Key possible.",typeOF _ct], "PLAIN"];};
    			if ((_id > 0) && (_id <= 2500)) then {_result = format["ItemKeyGreen%1",_id];};
    			if ((_id > 2500) && (_id <= 5000)) then {_result = format["ItemKeyRed%1",_id-2500];};
    			if ((_id > 5000) && (_id <= 7500)) then {_result = format["ItemKeyBlue%1",_id-5000];};
    			if ((_id > 7500) && (_id <= 10000)) then {_result = format["ItemKeyYellow%1",_id-7500];};
    			if ((_id > 10000) && (_id <= 12500)) then {_result = format["ItemKeyRed%1",_id-10000];};
    			
    			_inventory = (weapons player);
    			_backpack = ((getWeaponCargo unitbackpack player) select 0);
    			if (_result in (_inventory+_backpack)) then
    			{
    				if (_result in _inventory) then {cutText [format["Key [%1] already in your inventory!",_result], "PLAIN"];};
    				if (_result in _backpack) then {cutText [format["Key [%1] already in your backpack!",_result], "PLAIN"];};
    			}
    			else
    			{
    				player addweapon _result;
    				cutText [format["Key [%1] added to inventory!",_result], "PLAIN"];
    			};
    		};
    And to save you guys making more threads:

    Open/Unlock cursor target door/vehicle:
    Code:
                    _ct = cursorTarget;
    		if (!isNull _ct) then
    		{
    			_obj = vehicle player;
    			if ((_ct isKindOf "AllVehicles") && (locked _ct)) then {_ct lock false;};
    			if ((_obj != player) && (_obj isKindOf "AllVehicles") && (locked _obj)) then {_obj lock false;};
    			{
    				_ct animate [_x,1];
    			} forEach ["Open_hinge","Open_latch","Lights_1","Lights_2","Open_door","DoorR","LeftShutter","RightShutter"];
    		};
    Close/Lock cursor target door/vehicle
    Code:
                    _ct = cursorTarget;
    		if (!isNull _ct) then
    		{
    			_obj = vehicle player;
    			if ((_ct isKindOf "AllVehicles") && (locked _ct)) then {_ct lock true;};
    			if ((_obj != player) && (_obj isKindOf "AllVehicles") && (locked _obj)) then {_obj lock true;};
    			{
    				_ct animate [_x,0];
    			} forEach ["Open_hinge","Open_latch","Lights_1","Lights_2","Open_door","DoorR","LeftShutter","RightShutter"];
    		};
    all creds infistar
    Last edited by furiouswai; 11-02-2013 at 05:04 PM.

  4. The Following 3 Users Say Thank You to furiouswai For This Useful Post:

    Confin3d (11-08-2013),ttgtoast (01-11-2014),Zastava_101 (12-07-2013)

  5. #4
    Ticki84's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    0
    furiouswai thanks you and thanks to infistar too

  6. #5
    Scenic.'s Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    Wales, UK
    Posts
    589
    Reputation
    149
    Thanks
    209
    furiouswai

    Just so you know... Infistar didn't make this...

    infact, a developer at dayzepoch.com made it for ingame admin tools...

    Axe Cop is his name.

  7. The Following 3 Users Say Thank You to Scenic. For This Useful Post:

    Confin3d (11-08-2013),furiouswai (11-09-2013),Jme (11-29-2013)

  8. #6
    Jme's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    Balls Deep
    Posts
    1,214
    Reputation
    35
    Thanks
    9,758
    Quote Originally Posted by scenic2k12 View Post
    furiouswai

    Just so you know... Infistar didn't make this...

    infact, a developer at dayzepoch.com made it for ingame admin tools...

    Axe Cop is his name.
    I bet Axe Cop doesn't charge $40 per script

  9. #7
    Confin3d's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    3,254
    Reputation
    748
    Thanks
    2,016
    Quote Originally Posted by evskin View Post
    I bet Axe Cop doesn't charge $40 per script
    I bet Axe Cop isn't hitting the crack pipe either
    No longer use this website.

  10. #8
    Distraught's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Location
    California
    Posts
    1,897
    Reputation
    659
    Thanks
    1,355
    Provided above.

    /Solved

Similar Threads

  1. Dayz Epoch Server Help Bad CD-Key
    By rougekiller in forum DayZ Help & Requests
    Replies: 18
    Last Post: 12-06-2013, 08:32 PM
  2. at epoch vehicles to dayz navi?
    By FallenAngelOo in forum DayZ Help & Requests
    Replies: 1
    Last Post: 10-26-2013, 03:59 PM
  3. [WTS] Selling DayZ Epoch Key CHEAP! $25!!
    By if.else in forum DayZ Selling / Trading / Buying
    Replies: 3
    Last Post: 03-16-2013, 06:14 AM
  4. [WTB] If anybody has a white-listed Dayz epoch key...
    By Dayz Player in forum DayZ Selling / Trading / Buying
    Replies: 0
    Last Post: 03-07-2013, 08:55 PM
  5. Dayz spawn vehicle?
    By majken92 in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 5
    Last Post: 08-03-2012, 07:29 PM