DariusBiersack
Member-
Content Count
8 -
Joined
-
Last visited
-
Medals
Community Reputation
0 NeutralAbout DariusBiersack
-
Rank
Private
-
[Request] Disguise/Undercover Script
DariusBiersack replied to DariusBiersack's topic in ARMA 3 - MISSION EDITING & SCRIPTING
this is exactly what i wanted :) nice work :) -
[Request] Disguise/Undercover Script
DariusBiersack replied to DariusBiersack's topic in ARMA 3 - MISSION EDITING & SCRIPTING
you guys are awesome <3 , i will test it out as soon as i get home :) , cheers -
[Request] Disguise/Undercover Script
DariusBiersack replied to DariusBiersack's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I actually did look into those coding and try to make up one for myself, but i messed it all up after day of work and research :( What i was trying to do is to make a disguise script that can use by players/playable in a random generated mission (etc MCC) for stealth missions . and Here are the coding i found on web and little bit by myself , basically messed up, init: ( which works fine, for action option added on dead enemies) { if (side _x == East) then { _x addAction ["Disguise", "Disguise.sqf", [], 1, false, true, "", "!alive _target"] }; } forEach allUnits; Disguise.sqf if !(local player) exitWith {}; _Unit = _this select 0; _Unit_2 = _this select 1; _Unit_Type = typeOf _Unit; _Damage = damage _Unit_2; _Magazines = magazines _Unit; _Weapons = weapons _Unit; _Items = items _Unit; titleText ["Changing Uniform...", "BLACK OUT"]; sleep 1; // hint format ["%1", _Unit_Type]; player forceaddUniform "U_O_OfficerUniform_ocamo"; player addheadgear "H_HelmetO_ocamo"; player setCaptive true; ( Did manage to change the uniform to the above options and "disguised") sleep 2; titleText ["You are now disguised.", "BLACK IN"]; player addEventHandler ["fired",{_this exec "playerfired.sqf"}]; _x = []; // all EAST units within 10m of player { if ((side _x == EAST && (_x distance Player) < 3)) then { {_player setcaptive false}; }; } forEach allUnits; ( i dont know what i messed up here, no errors, but not working)playerfired.sqf player addEventHandler ["fired",â€player setcaptive falseâ€]; titleText ["You are exposed", "PLAIN"];(message keep poping up when i fired, tried to add if then condition, but messed up.) actually, i was wondering if i can make a setcaptive false if the captive shot east side. Thanks for all the replies :) <3 -
[Request] Disguise/Undercover Script
DariusBiersack posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Do anyone has some coding/script for disguising? something like this https://www.youtube.com/watch?v=pg4i5CW09jo -
Vcom AI V2.0 - AI Overhaul
DariusBiersack replied to genesis92x's topic in ARMA 3 - MISSION EDITING & SCRIPTING
good work, this shld be done by BIS -
Script to lock out player slots
DariusBiersack replied to cobrosstuidos's topic in ARMA 3 - MISSION EDITING & SCRIPTING
nice one , was looking for this -
Civilian Occupation System (COS)
DariusBiersack replied to bangabob's topic in ARMA 3 - MISSION EDITING & SCRIPTING
-
Scripting Introduction for New Scripters
DariusBiersack replied to Ranwer135's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Yo, New here trying to ask for help :)- 97 replies