Donnovan Posted September 25, 2015 Report Share Posted September 25, 2015 MOSTWA is Andre Most Wanted Script **UPDATED ON 21 OF DECENBER OF 2015** WHAT IT DO? It choose a player based on a criteria and make hin the fugitive. WHAT THE FUGITIVE NEED TO DO? The fugitive need to avoid to beign killed by the other players and by the enviroment. UHH... AND WHAT THE FUGITIVE GAIN IF HE SURVIVE A temporary mozzie and 4 briefcases will appears arround hin. AND IF THE FUGITIVE DIE? So the 4 briefcases will be on his body for the other players to pick up. ITS NOT A HARD TASK FOR THE FUGITIVE? The fugitive have Time Rewards that are rewards he gain for mantain hinself alive for x time. The actual time rewards are: 1 - Receive weapon and ammo. 2 - Receive a motorbike. 3 - Receive cure itens. 4 - See smoke on enemies. ITS NOT A HARD TASK FOR THE ONES TRYING TO KILL THE FUGITIVE? The hunters will see a mark on the map revealing the fugitive position with a configurable precision. The mark update speed depends if the fugitive is on foot, on a land vehicle or in an air vehicle. LAST UPDATE? Was on 25 of october of 2015 with those changes: - Loging players are not anymore selected as fugitive. - Fugitives that fly over 300 meter for some time cancel the event. - Stay on a plot or on a safe now also cancel the event and not just cancel the fugitive reward. - Fugitives are unique, a player can't be selected more than one time in each restart. - If the fugitive is flying over 45 meters, he does not receive the time rewards. Files updated: andre_most_wanted.sqf If you enjoy it, i ask for a donation. Thankyou! $USD $EURO INSTALATION: 1 - Unpack dayz_server.pbo. Put the code bellow in a text file and save it on the root of your unpacked files with the name andre_most_wanted.sqf. Repack dayz_server.pbo. To unpack / repack dayz_server.pbo you can use PBO Manager. //=============================== // ANDRE MOST WANTED SCRIPT ===== //=============================== // By Donnovan ================== //=============================== //==================== // CONFIGURATION ===== //==================== //MAP SIZE TO PREVENT THE LOGING IN PLAYERS TO BE SELECTED AS FUGITIVE _mapSize = 15360; //READY FOR CHERNARUS //THE TIME THE FUGITIVE NEED TO RESIST ALIVE TO WIN *IN MINUTES* _aliveTimeToWin = 20; //THE TIME CYCLE THE FUGITIVE MARK WILL BE UPDATED *IN SECONDS* _updateMark = 100; //MAXIMUN TIME THE FUGITIVE IS ALLOWED TO BE IN A PLOT OR SAFEZONE RADIUS TO RECEIVE HIS REWARD IN CASE OF WIN (a percentage of _aliveTimeToWin) _maxTimeNearPlot = 0.15; //TIME CYCLE *IN SECONDS* TO CHECK FOR PLOTS NEAR THE FUGITIVE AND SAFEZONES _onPlotCheckFrequency = 20; //THE RADIUS OF THE POSITION HINT (FUGITIVE WILL BE SOMEWHERE INSIDE THE CIRCLE) *IN METERS* _circleSize = 150; //MINIMUM NUMBER OF PLAYERS TO RUN _minPlayersToRun = 15; //TIME TO WAIT BEFORE TRY TO RUN AGAIN *IN MINUTES* _runTimeInter = 50; //FIRST RUN DELAY *IN MINUTES* _firstRunDelay = 30; //FUGITIVE TIME REWARDS: [time in minutes to exec reward (in sequence),reward message,reward code where _this is the fugitive] _fugitiveRewards = [ [4,"The Fugitive received a MK 48 and Ammo.",{_posF = position _this;_posFGround = [_posF select 0,_posF select 1,0];_holder = createVehicle ['Weaponholder',_posFGround,[],0,'NONE'];_holder addWeaponCargoGlobal ['Mk_48_DZ',1];_holder addMagazineCargoGlobal ['100Rnd_762x51_M240',5];_this reveal [_holder,4];}], [4,"The fugitive received a motorbike.",{_posF = position _this;_posFGround = [_posF select 0,_posF select 1,0];_veh = createVehicle ['TT650_Ins',_posFGround,[],8,'NONE'];_veh setVariable ['ObjectID','0',true];_veh setVariable ['ObjectUID',str round random 9999999,true];_this reveal [_veh,4];}], [4,"The fugitive received cure itens.",{_posF = position _this;_posFGround = [_posF select 0,_posF select 1,0];_holder = createVehicle ['Weaponholder',_posFGround,[],0,'NONE'];_holder addMagazineCargoGlobal ['ItemBloodBag',1];_holder addMagazineCargoGlobal ['ItemBandage',2];_holder addMagazineCargoGlobal ['ItemSeaBassCooked',1];_holder addMagazineCargoGlobal ['ItemWaterbottle',1];_holder addMagazineCargoGlobal ['ItemPainkiller',1];_holder addMagazineCargoGlobal ['ItemORP',1];_holder addMagazineCargoGlobal ['ItemMorphine',1];_this reveal [_holder,4];}], [4,"The fugitive sees the enemy.",{donn_seeSmoke = [];{if (_this distance _x < 300 && !((vehicle _x) isKindOf 'Air')) then {_posK = position _x;for '_i' from 1 to 4 do {_smoke = createVehicle [['SmokeShell','SmokeShellYellow','SmokeShellRed','SmokeShellGreen','SmokeShellPurple','SmokeShellBlue','SmokeShellOrange'] call BIS_fnc_selectRandom,[_posK select 0,_posK select 1,40+_i*10],[],0,'CAN_COLLIDE'];donn_seeSmoke = donn_seeSmoke + [_smoke];};};} forEach (playableUnits-[_this]);}], [1/12,"",{{deleteVehicle _x;} forEach donn_seeSmoke;}] ]; //SAFE ZONES (READY FOR CHERNARUS) _safezones = [ [6325,7807,0], [4063,11664,0], [11447,11364,0], [1606,7803,0], [12944,12766,0], [12060,12640,0] ]; _safezonesRad = 160; //ADMINS STEAM ID (TO PREVENT THE SCRIPT TO SELECT ADMINS AS FUGITIVE) _admins = ["00000000000000000","11111111111111111"]; //===================== // FUNCTIONS ========== //===================== _lockedFugitives = []; //THE TWO LINES BELLOW ARE EPOCH SPECIFIC waitUntil {!isNil "DZE_safeVehicle"}; DZE_safeVehicle = DZE_safeVehicle + ["TT650_Ins"]; donn_fugitiveChoose = { _fugitive = objNull; _maxSumDist = -1; { _p = _x; _pP = position _x; _pPX = _pP select 0; _pPY = _pP select 1; if (_pPx > 0 && _pPY < _mapSize) then { if (damage _p < 0.2 && vehicle _p == _p) then { if (count (_p nearObjects ["Plastic_Pole_EP1_DZ",(DZE_PlotPole select 0)*1.25]) == 0) then { _pUID = getPlayerUID _p; if !(_pUID in _admins || _pUID in _lockedFugitives) then { _sumDist = 0; {_sumDist = _sumDist + (_p distance _x);} forEach playableUnits; if (_sumDist > _maxSumDist) then {_fugitive = _p;_maxSumDist = _sumDist;}; }; }; }; }; } forEach playableUnits; _fugitive }; //===================== // THE SCRIPT ========= //===================== _aliveTimeToWin = round (_aliveTimeToWin*60); _runTimeInter = round (_runTimeInter*60); _firstRunDelay = round (_firstRunDelay*60); _lastTimeConclude = time-_runTimeInter+_firstRunDelay; while {true} do { waitUntil {uiSleep 15;count playableUnits >= _minPlayersToRun && (time-_lastTimeConclude) >= _runTimeInter}; _fugitive = call donn_fugitiveChoose; if (!isNull _fugitive) then { diag_log "[MOSTWA] Begin!"; _fugitiveName = name _fugitive; _fugitiveID = getPlayerUID _fugitive; _aliveTimeStart = time; _aliveTimePassed = 0; _timeCell = 2; _sleepAMark = round(_updateMark/_timeCell); _slepBIndex = 0; _sleepBMark = -1; if !(_slepBIndex == count _fugitiveRewards) then { _sleepBMark = round(((_fugitiveRewards select _slepBIndex select 0)*60)/_timeCell); }; _sleepCMark = round(_onPlotCheckFrequency/_timeCell); _sleepDMark = round (10/_timeCell); //_sleepA = _sleepAMark; _sleepA = 0; _sleepB = 0; _sleepC = 0; _sleepD = 0; _txt = ((name _fugitive)+" have a price on his head, kill hin to receive a reward.\n"+(name _fugitive)+", stay alive " +(str(round(_aliveTimeToWin/60)))+" minutes to receive the prize.\n\n"); _timeInPlot = 0; while {alive _fugitive && !isNull _fugitive && _aliveTimePassed < _aliveTimeToWin && _timeInPlot <= _aliveTimeToWin*_maxTimeNearPlot} do { if (_sleepA >= _sleepAMark) then { _txt = _txt + ((name _fugitive)+" mark updated on map.\n"+(str (round(((_aliveTimeToWin-_aliveTimePassed)/60)*10)/10))+" minutes to stop the hunt.\n\n"); _sleepA = 0; _fPos = position _fugitive; _error = (_circleSize*2)/sqrt(2); _fPosBlur = [(_fPos select 0)-_error/2+(random _error),(_fPos select 1)-_error/2+(random _error),0]; if (_aliveTimePassed > 0) then {deleteMarker "DONN_FUGITIVE";deleteMarker "DONN_FUGITIVE_DOT";}; createMarker ["DONN_FUGITIVE",_fPosBlur]; "DONN_FUGITIVE" setMarkerColor "ColorYellow"; "DONN_FUGITIVE" setMarkerShape "ELLIPSE"; "DONN_FUGITIVE" setMarkerBrush "SolidBorder"; "DONN_FUGITIVE" setMarkerSize [_circleSize,_circleSize]; createMarker ["DONN_FUGITIVE_DOT",_fPosBlur]; "DONN_FUGITIVE_DOT" setMarkerColor "ColorBlack"; "DONN_FUGITIVE_DOT" setMarkerType "Vehicle"; "DONN_FUGITIVE_DOT" setMarkerText "Fugitive!"; }; if (_sleepB == _sleepBMark) then { _nearPlotPole = _fugitive nearObjects ["Plastic_Pole_EP1_DZ",DZE_PlotPole select 0]; _inSafe = false; {if (_fugitive distance _x < _safezonesRad) exitWith {_inSafe = true;};} forEach _safezones; _isFlying = ((getPosATL _fugitive) select 2) > 45; if (count _nearPlotPole == 0 && !_inSafe && !_isFlying) then { _txt = _txt + "Time Reward! " + (_fugitiveRewards select _slepBIndex select 1); _code = _fugitiveRewards select _slepBIndex select 2; _fugitive call _code; } else { _txt = _txt + "Time Reward!? In safe, on plot or flying. No reward..."; }; _sleepB = 0; _slepBIndex = _slepBIndex + 1; _sleepBMark = -1; if !(_slepBIndex == count _fugitiveRewards) then { _sleepBMark = round(((_fugitiveRewards select _slepBIndex select 0)*60)/_timeCell); }; }; if (_sleepC == _sleepCMark) then { _nearPlotPole = _fugitive nearObjects ["Plastic_Pole_EP1_DZ",DZE_PlotPole select 0]; _inSafe = false; _isHigh = ((getPosATL _fugitive) select 2) > 300; {if (_fugitive distance _x < _safezonesRad) exitWith {_inSafe = true;};} forEach _safezones; if (count _nearPlotPole > 0 || _inSafe || _isHigh) then {_timeInPlot = _timeInPlot+_sleepCMark*_timeCell}; _sleepC = 0; }; if (_sleepD == _sleepDMark) then { if (vehicle _fugitive == _fugitive) then { _sleepAMark = round(_updateMark/_timeCell); } else { if (vehicle _fugitive isKindOf "Air") then { _sleepAMark = round ((_updateMark/_timeCell)*0.25); } else { _sleepAMark = round ((_updateMark/_timeCell)*0.5); }; }; _sleepD = 0; }; if (_txt != "" && _txt != "Time Reward! ") then {[nil,nil,rTitleText,_txt,"PLAIN",7.5] call RE;}; uiSleep _timeCell; _txt = ""; _sleepA = _sleepA + 1; _sleepB = _sleepB + 1; _sleepC = _sleepC + 1; _sleepD = _sleepD + 1; _aliveTimePassed = (time - _aliveTimeStart); }; deleteMarker "DONN_FUGITIVE"; deleteMarker "DONN_FUGITIVE_DOT"; if (!isNull _fugitive) then { _lockedFugitives = _lockedFugitives + [_fugitiveID]; if (alive _fugitive) then { if (_timeInPlot <= _aliveTimeToWin*_maxTimeNearPlot) then { [nil,nil,rTitleText,(_fugitiveName+", time over! The prize is yours!\nColect your reward near you."),"PLAIN",7.5] call RE; _posToHolder = position _fugitive;_posToHolder set [2,0]; _veh = createVehicle ["CSJ_GyroC",_posToHolder,[],2,'NONE']; _veh setVariable ["ObjectID","0",true]; _veh setVariable ["ObjectUID",str round random 9999999,true]; _fugitive reveal _veh; _posToHolder = position _fugitive;_posToHolder set [2,0]; _holder = createVehicle ["WeaponHolder",_posToHolder,[],0,"CAN_COLLIDE"]; _holder addMagazineCargoGlobal ["ItemBriefCase100oz",4]; _fugitive reveal _holder; diag_log "[MOSTWA] Ending! Fugitive Win!"; _lastTimeConclude = time; } else { [nil,nil,rTitleText,("Hunt time over! "+(name _fugitive)+", you was too much near plot poles or safezones\n or high on sky. No pain no gain. No reward."),"PLAIN",10] call RE; diag_log "[MOSTWA] Ending! Fugitive not Fair..."; _lastTimeConclude = time-_runTimeInter*0.75; }; } else { [nil,nil,rTitleText,((name _fugitive)+", perished! Collect the prize on his body!\nMark is on map fo 45 seconds..."),"PLAIN",10] call RE; createMarker ["DONN_FUGITIVE",position _fugitive]; "DONN_FUGITIVE" setMarkerColor "ColorRed"; "DONN_FUGITIVE" setMarkerShape "ELLIPSE"; "DONN_FUGITIVE" setMarkerBrush "SolidBorder"; "DONN_FUGITIVE" setMarkerSize [100,100]; createMarker ["DONN_FUGITIVE_DOT",position _fugitive]; "DONN_FUGITIVE_DOT" setMarkerColor "ColorBlack"; "DONN_FUGITIVE_DOT" setMarkerType "Vehicle"; "DONN_FUGITIVE_DOT" setMarkerText "Fugitive Body..."; _posToHolder = position _fugitive;_posToHolder set [2,0]; _holder = createVehicle ["WeaponHolder",_posToHolder,[],0,"CAN_COLLIDE"]; _holder addMagazineCargoGlobal ["ItemBriefCase100oz",4]; diag_log "[MOSTWA] Ending! Fugitive perished."; uiSleep 240; deleteMarker "DONN_FUGITIVE"; deleteMarker "DONN_FUGITIVE_DOT"; _lastTimeConclude = time-240; }; } else { [nil,nil,rTitleText,("The hunt for "+_fugitiveName+" head is over... "+_fugitiveName+" disconnected."),"PLAIN",5] call RE; diag_log "[MOSTWA] Fugitive disconnected..."; _lastTimeConclude = time-_runTimeInter*0.75; }; } else { diag_log "[MOSTWA] Cant find an elegible fugitive..."; _lastTimeConclude = time-_runTimeInter*0.75; }; }; 2 - Unpack your mission file, open init.sqf and put the code line bellow at the end of it: if (isServer) then {execVM "\z\addons\dayz_server\andre_most_wanted.sqf";}; 3 - Take a look at the script, and set the configuration vars to what you want or leave it alone and use the default settings. 31_D!4b10, Seelanpro, ryker and 3 others 6 Link to comment Share on other sites More sharing options...
theduke Posted September 25, 2015 Report Share Posted September 25, 2015 very interesting... I run PVE servers...can this be spawned in as a event? The players would love to have this for sure.. Link to comment Share on other sites More sharing options...
Richie Posted September 25, 2015 Report Share Posted September 25, 2015 Can we have this for arma 3 please ? Link to comment Share on other sites More sharing options...
pr0dukt Posted September 26, 2015 Report Share Posted September 26, 2015 Looking forward to it :) Let us know the download link. Link to comment Share on other sites More sharing options...
Donnovan Posted September 26, 2015 Author Report Share Posted September 26, 2015 (edited) Don't need to spawn it as a event, you just need to change the configuration vars://=============================== // ANDRE MOST WANTED SCRIPT ===== //=============================== // By Donnovan ================== //=============================== //==================== // CONFIGURATION ===== //==================== //THE TIME THE FUGITIVE NEED TO RESIST ALIVE TO WIN *IN MINUTES* _aliveTimeToWin = 20; //THE TIME CYCLE THE FUGITIVE MARK WILL BE UPDATED *IN SECONDS* _updateMark = 100; //MAXIMUN TIME THE FUGITIVE IS ALLOWED TO BE IN A PLOT OR SAFEZONES RADIUS TO RECEIVE HIS REWARD IN CASE OF WIN (a percentage of _aliveTimeToWin) _maxTimeNearPlot = 0.15; //TIME CYCLE *IN SECONDS* TO CHECK FOR PLOTS NEAR THE FUGITIVE OR IF HE IS IN A SAFEZONE _onPlotCheckFrequency = 20; //THE RADIUS OF THE POSITION HINT (FUGITIVE WILL BE SOMEWHERE INSIDE THE CIRCLE) *IN METERS* _circleSize = 200; //MINIMUM NUMBER OF PLAYERS TO RUN _minPlayersToRun = 15; //TIME TO WAIT BEFORE TRY TO RUN AGAIN *IN MINUTES* _runTimeInter = 50; //FIRST RUN DELAY *IN MINUTES* _firstRunDelay = 30; //SAFE ZONES (READY FOR CHERNARUS) _safezones = [ [6325,7807,0], [4063,11664,0], [11447,11364,0], [1606,7803,0], [12944,12766,0], [12060,12640,0] ]; _safezonesRad = 160; //ADMINS STEAM ID (TO PREVENT THE SCRIPT TO SELECT ADMINS AS FUGITIVE) _admins = ["0","0","0","0"]; Edited September 26, 2015 by Donnovan Link to comment Share on other sites More sharing options...
Donnovan Posted September 26, 2015 Author Report Share Posted September 26, 2015 Richie, i believe it can be easily ported to Arma 3. Link to comment Share on other sites More sharing options...
Richie Posted September 26, 2015 Report Share Posted September 26, 2015 Richie, i believe it can be easily ported to Arma 3.Legend mate :D no rush of course, as and when you have time. Link to comment Share on other sites More sharing options...
Tang0 Posted September 26, 2015 Report Share Posted September 26, 2015 can the admins turn it on/off in game? Link to comment Share on other sites More sharing options...
Donnovan Posted September 26, 2015 Author Report Share Posted September 26, 2015 Tang0, they cant. Link to comment Share on other sites More sharing options...
Tang0 Posted September 26, 2015 Report Share Posted September 26, 2015 would it not be possibe for an admin ingame to say set the _firstRunDelay live therefore been able to have it not run (if server has 3 hour restarts he could change the first run to 4 hours), thinking it would be possible to use as an event but have the option to have it run when admin wanted and not run when not needed, you would already have the admin steam ids in the code. Link to comment Share on other sites More sharing options...
ElDubya Posted September 26, 2015 Report Share Posted September 26, 2015 You can run anything as admin. Just use this : theduke 1 Link to comment Share on other sites More sharing options...
Donnovan Posted September 26, 2015 Author Report Share Posted September 26, 2015 Tang0, those config vars can make it not run when the server have a small number of players or too much times in a restart://MINIMUM NUMBER OF PLAYERS TO RUN _minPlayersToRun = 15; //TIME TO WAIT BEFORE TRY TO RUN AGAIN *IN MINUTES* _runTimeInter = 50; Link to comment Share on other sites More sharing options...
Sporny Posted September 26, 2015 Report Share Posted September 26, 2015 Where can i get this script? Or is there no release yet? Link to comment Share on other sites More sharing options...
theduke Posted September 26, 2015 Report Share Posted September 26, 2015 im with eldubya...I was waiting for the script so i can test it with what eldubya posted... My ONLY issue is not everyone wants to participate in events lol and this script will grab everyone logged in game as possible suspects... I might be able to find a work around.. anyways i cant wait to see this. Thanks Donnovan for your hardwork :) Link to comment Share on other sites More sharing options...
Donnovan Posted September 26, 2015 Author Report Share Posted September 26, 2015 The script is there! Link to comment Share on other sites More sharing options...
pr0dukt Posted September 27, 2015 Report Share Posted September 27, 2015 Interesting Script, Is it possible to pick people with the highest kill count on the server ? Link to comment Share on other sites More sharing options...
Donnovan Posted September 27, 2015 Author Report Share Posted September 27, 2015 pr0dukt,Not sure, but this will make allways the same persons to be selected.May be select the players with most kill on the current restart. Link to comment Share on other sites More sharing options...
pr0dukt Posted September 27, 2015 Report Share Posted September 27, 2015 May be select the players with most kill on the current restart.Yes, per restart or per life. I know total kills isn't possible Link to comment Share on other sites More sharing options...
Donnovan Posted September 27, 2015 Author Report Share Posted September 27, 2015 (edited) Already did this modification on my server: a player can be choosen only one time per restart. Will add it here. Edited September 27, 2015 by Donnovan Link to comment Share on other sites More sharing options...
Alicat101 Posted September 27, 2015 Report Share Posted September 27, 2015 Hello Donnovan.. Thank you soooo much for this awesome work.Can i please ask for some help?I want to test if it works on test server with two players is this correct to start it cause it wont start on my server?//MINIMUM NUMBER OF PLAYERS TO RUN_minPlayersToRun = 2;//TIME TO WAIT BEFORE TRY TO RUN AGAIN *IN MINUTES*_runTimeInter = 1;//FIRST RUN DELAY *IN MINUTES*_firstRunDelay = 1;Thanks for reply Link to comment Share on other sites More sharing options...
Donnovan Posted September 27, 2015 Author Report Share Posted September 27, 2015 (edited) Alicat101,1 - You is on the admin list on the config?2 - If you is alone on the server, you need to set _minPlayersToRun = 1;3 - I recommend _firstRunDelay = 2; or the script can choose you when you is choosing character (to be fixed). Edited September 27, 2015 by Donnovan Link to comment Share on other sites More sharing options...
ryker Posted September 27, 2015 Report Share Posted September 27, 2015 Awesome script Donnovan, nice idea :-)Expect my donation for another great script for the community! Thanks for sharing your work! Edit: What if the fugitive stays in the safezone all the time? Link to comment Share on other sites More sharing options...
Nekuan Posted September 28, 2015 Report Share Posted September 28, 2015 (edited) } else { [nil,nil,rTitleText,("Hunt time over! "+(name _fugitive)+", you was too much near plot poles or safezones.\nNo pain no gain. No reward."),"PLAIN",10] call RE; So I guess the hunt is being called off?I wanted to test this out some time today can report to you if you haven't gotten a proper answer 'til then Edited September 28, 2015 by Nekuan Link to comment Share on other sites More sharing options...
xandinfjg Posted September 28, 2015 Report Share Posted September 28, 2015 (edited) thanks for scripts, plus a request if it is not too much to ask can create +2 updateMark for the guys example //THE TIME CYCLE THE FUGITIVE MARK WILL BE UPDATED *IN SECONDS* _updateMark = 100; //THE TIME CYCLE THE Vehicle MARK WILL BE UPDATED *IN SECONDS* _updateMarkVehicle = 50; //THE TIME CYCLE THE Heli MARK WILL BE UPDATED *IN SECONDS* _updateMarkHeli = 20; Edited September 28, 2015 by xandinfjg Link to comment Share on other sites More sharing options...
Nekuan Posted September 28, 2015 Report Share Posted September 28, 2015 Awesome script Donnovan, nice idea :-)Expect my donation for another great script for the community! Thanks for sharing your work! Edit: What if the fugitive stays in the safezone all the time?Haven't actually come around to properly test this out yet but judging from the code if more than 15% of the over-all time (default 20 minutes) is spent inside a safezone or plotradius the hunt will be called off Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now