
[RELEASE] Vehicle Key Changer (updated for Epoch 1.0.6+
By
salival, in A2: Epoch Mods
-
Similar Content
-
By [email protected]
Im setting up a new epoch 1.0.6 server with very little addons/mods installed, and when i was testing i realized safes/plotpoles/walls etc werent saving to the server database. Anyone got any ideas what might be wrong?
-
By THAC0_Gewch
https://github.com/OlofTheBald/DayZ-Humanity-Loadout-Granter/tree/Epoch_1.0.5.1
Updated for 1.0.6.x
-
By THAC0_Gewch
Many years ago, I made a Humanity Loadout script for 1.0.5.x. The script is basic, it checks your players' humanity and grants a pre-set loadout when they spawn depending on their humanity level.
I've now updated and optimized this script for 1.0.6.x:
https://github.com/OlofTheBald/DayZ-Humanity-Loadout-Granter
-
By Vitor99
Hi everyone, i would like to know if there is any torrent links for Epoch and Overpoch, if you know some send me the link here
-
By Reaper5150
Simple but fun little script I put together awhile ago.
What it does? It is bound to a object in this case "ItemObsidian" as a right click, but can be changed to whatever you want. It then will sends out a message to the players on the server and marks the player with red smoke and a marker on the map.
The player will then get 2 mins of god mod acting like the amour. Once the amour takes damage (All it is is a countdown timer really) The god mode is then disabled so they can be killed.
I'm still working on this and will update it when it is done. If any of you better scriptwriters then myself ( I'm still a noob lol) have any ideas on how to improve this? contact me so I can give you credit in the update :)
Known bugs:
marker sometimes stays on map Credits to : @Schalldampfer For helping me understand map markers
Install: Place this in your scripts folder name it something like Jugg.sqf
//========================================================
//========= Juggernaut script-Written by Reaper5150 ===========
//=======================================================
sleep 2;
[nil,nil,rTitleText,"THERE IS A JUGGERNAUT,FIND HIM AND KILL HIM IF YOU CAN!!!","PLAIN",3] call RE;
sleep 1;
[nil, player, rSAY, "YOURSOUND.OGG", 100] call RE; //Add your custom sound here when Juggernaut spawns
[] spawn {
player removeMagazine 'ItemObsidian';//Add whatever object you want and bound to your right click function
sleep 5;
[nil,nil,rTitleText,"THE JUGGERNAUT HAS BODY ARMOR,WE CAN'T KILL HIM...HELP!!!","PLAIN",3] call RE;
////////Set marker/////////////////////////////////////////////////////////////////////
[] execVM "scripts\marker.sqf";
//Start Smoke Marker//////////////////////////////////////////////////////////////////////////
sleep 5;
PJ_grenade = "SmokeShellRed" createVehicle position player;
PJ_grenade attachto [vehicle player,[0.1,0,0]];
sleep 2;
[nil,nil,rTitleText,"THE JUGGERNAUT (PLAYER) HAS BEEN MARKED WITH SMOKE AND ON THE MAP!!!","PLAIN",3] call RE;
//Temp Godmode for 2 mins////////////////////////////////////////////////////
(vehicle player) removeAllEventHandlers "handleDamage";
(vehicle player) addEventHandler ["handleDamage", { false }];
(vehicle player) allowDamage false;
//Acts like a countdown timer//////////////////////////////////////////////////////////////////
sleep 90;
[nil,nil,rTitleText,"THE JUGGERNAUTS ARMOR HAS TAKEN 30% DAMAGE","PLAIN",3] call RE;
sleep 100;
[nil,nil,rTitleText,"THE JUGGERNAUTS ARMOR HAS TAKEN 50% DAMAGE","PLAIN",3] call RE;
sleep 110;
[nil,nil,rTitleText,"THE JUGGERNAUTS ARMOR HAS TAKEN 90% DAMAGE","PLAIN",3] call RE;
uiSleep 120;
[nil,nil,rTitleText,"THE JUGGERNAUTS ARMOR IS WEAK...TAKE HIM OUT NOW!!!","PLAIN",3] call RE;
sleep 2;
//Start ending Juggernaut///////////////////////////////////
(vehicle player) addEventHandler ["handleDamage", { true }];
(vehicle player) removeAllEventHandlers "handleDamage";
(vehicle player) allowDamage true;
uiSleep 240;
deleteVehicle PJ_grenade;
END;
Call it from your right click
["ItemObsidian","JUGGERNAUT","execVM 'scripts\Jugg.sqf';","true"],
marker.sqf:
_unit = player;
_nameP = name _unit;
_markerobjp = createMarker [_namep,[0,0]];
_markerobjp setMarkerShape "ICON";
_markerobjp setMarkerType "mil_dot";
_markerobjp setMarkerColor "ColorRed";
_markerobjp setMarkerText _nameP;
_markerobjp setMarkerSize [1,1];
while {alive _unit} do {
_markerobjp setmarkerdir (getdir _unit);
_markerobjp setMarkerPos (getPos _unit);
_markerobjp setMarkerText _nameP;
sleep 5;
};
////////////////////////////////////////////
uiSleep 240;
deleteMarker _markerobjp;
-
- Advertisement