Jump to content

mrsandbox

Member
  • Content Count

    70
  • Joined

  • Last visited

  • Medals

  • Medals

Everything posted by mrsandbox

  1. Im searching urgently for a solution to spawn animals on a dedicated server on speficic places, where they move in a certain radius. I tried all the modules, scripts, but cant get a solution for this one. willing to pay for a script that works. thanks in advance.
  2. mrsandbox

    Faces of War [WW2]

    yea using many other mods. maybe u can test it with FOW only? great mod by the way and thanks for the hard work...!
  3. mrsandbox

    Faces of War [WW2]

    did that and they have german voices, but the american fow chatter is also there.
  4. mrsandbox

    Faces of War [WW2]

    How can you mute the chatter of soldiers? Its strange hearing the SS or Wehrmacht talking english and there are allready german voice profiles. I tried the module, but this didnt work. Thanks in advance.
  5. Thans lexx! Other thing i noticed, flags cant be added to Angora neither to Kuma and Varsuk. would be cool...
  6. Trailer shows Nymx can put out the periscope. no option with the nymx recon via action menue. missed something?
  7. Mods have many pro´s, so vanilla has many pro´s. Vanilla has so much content now, id rather see quality missions with more stability in vanilla, as missions which require tons of mods, which are buggy or low quality and frames are BS.
  8. The Angara, the most fearsome battletank. One shot in the tracks, crew jumps out, thread banned. This really should be adjusted.
  9. Im searching for the weapon class of the T-55A tank in Project Opfor to make AI fire its maingun. would appreciate a solution with code where i can read out all classnames of the vehicle. nothing in the readme and nothing found in configviewer. thanks in advance...!
  10. Couldnt find any documentation about the civilian presence modules. Can someone link me one if one exists or give a short description how it works? Thanks in advance.
  11. would be cool if somebody can upload a little sneak peak of the operations....
  12. I wanted to create some tankshells for decorative purposes. Are there even models for Sh_105mm_HEAT_MP_T_Red for example ingame? Thanks.
  13. I want to check, in a waypoint, would be the best, if a VTOL (Xiang) has NOT the specific vehicle in its cargo. I found those script commands, but cant transform them into a simple waypoint condition. Thanks in advance.
  14. mrsandbox

    ArmA 3: Callsign Minotaur

    I wonder why there is only so few feedback for your campaign so far ! You have done excellent work and it was great fun to play through and like the most things you like very much, it ends too fast of course;-) May i ask where you found the guys for the iranian voice overs, were they paid? I thought i heard voice overs from the official campaign also, or am i wrong? If you decide to develope something new, best luck with it, il definitly keep an eye on your entrys!
  15. To make it simple. 1. Place a Prowler 2. Place a fireteam of 4 guys - the teamleader set as player 3. Drag them in the vehicle 4. Preview Ingame 5. You are the commander of the vehicle and can order with WASD to move and turn 6. Now get out of vehicle, get back in gunner slot 7. You cant command the vehicle any more (guess because the driver took the command somehow) Is this intended or is there a script solution? Thanks!
  16. i think you missunderstood. What i wanted to change was the distance they go in panic mode if a shotis fired. Right now civilians which are more then 70 meters away from the shooter dont react. Looks stupid if they have their animations stil standing around. but the eventhandler fired says in the biki, is only until 69 meters. im searching for a way to raise the distance to the gunshot they react. maybe a triggerare where they react would be cool. tried to code somtehing but my skills are not the enough sadly.
  17. Really great Script ! Is there are way to modify the distance they react to? I saw that the firedNear eventhandler just triggers in a distance of maximum 69 meters.
  18. Hey guys, i wanted to use this function here, but i dont know how i have to call it...Appreciate some help, thanks... //Defines #define ON 0 #define OFF 0.97 #define LIGHT "light_1_hitpoint" #define DUMMY "BIS_effectDummy" #define DESTROYED "BIS_lightDestroyed" #define SAMPLE "electricity_loop" #define HELIPAD "Land_HelipadEmpty_F" //Parameters private ["_position", "_type", "_timing", "_delay", "_condition"]; _position = [_this, 0, [0,0,0], [[]]] call BIS_fnc_param; _type = [_this, 1, "Land_LampShabby_F", [""]] call BIS_fnc_param; _timing = [_this, 2, [0.25, 0.50], [[]]] call BIS_fnc_param; _delay = [_this, 3, [1, 2], [[]]] call BIS_fnc_param; _condition = [_this, 4, { true }, [{}]] call BIS_fnc_param; //Find related objects private "_object"; _object = nearestObject [_position, _type]; //Make sure we found an object if (isNull _object) exitWith { ["Object at position (%1), of type (%2) not found", _position, _type] call BIS_fnc_error; }; //Light starts off _object setHit [LIGHT, OFF]; //Hit event handler _object addEventhandler ["Hit", { (_this select 0) setvariable [DESTROYED, true]; }]; //Effect private "_setState"; _setState = { private ["_object", "_on"]; _object = [_this, 0, objNull, [objNull]] call BIS_fnc_param; _on = [_this, 1, true, [true]] call BIS_fnc_param; //The dummy object private "_dummy"; _dummy = objNull; //Does the dummy object been created already if (isNil { _object getVariable DUMMY }) then { //Create dummy object private "_dummy"; _dummy = createVehicle [HELIPAD, position _object, [], 0, "CAN_COLLIDE"]; //Attach it to the light object _dummy attachTo [_object, [0,0,2]]; //Store _object setVariable [DUMMY, _dummy]; } else { _dummy = _object getVariable DUMMY; }; //Effect on or off if (_on) then { //Play effect _dummy setDamage 0; _dummy say3D SAMPLE; _object setHit [LIGHT, ON]; } else { //Destroy effect _dummy setDamage 1; _object setHit [LIGHT, OFF]; }; }; //Flag private "_lightOn"; _lightOn = false; //Main loop while _condition do { //Exit if destroyed if (!isNil { _object getvariable DESTROYED }) exitWith { //Light off _object setHit [LIGHT, OFF]; //Log ["Light object (%1) was destroyed", _object] call BIS_fnc_log; }; //Blinking loop for "_i" from 0 to 5 do { //Set state if (_lightOn) then { [_object, false] call _setState; _lightOn = false; } else { [_object, true] call _setState; _lightOn = true; }; //The timing sleep (_timing call BIS_fnc_randomNum); }; //Sleep sleep (_delay call BIS_fnc_randomNum); }; //Does it exist? if (!isNil { _object getVariable DUMMY }) then { //The dummy private "_dummy"; _dummy = _object getVariable DUMMY; //Detach and delete detach _dummy; deleteVehicle _dummy; }; //Return true;
  19. Is it possible to remove this fire again? I found solutions for old fire functions but not for this.
  20. mrsandbox

    Laws of War DLC Assets

    Thanks...! Splendid flags...;-)
  21. Hey guys, i want to know how i can check with a condition if a shot was fired by anyone in a trigger area. Thanks in advance...!
  22. mrsandbox

    Laws of War DLC Assets

    Can someone tell me what the script function is for attaching the little flags to the vehicles? is it only possible for Light Vehicles?
  23. mrsandbox

    Laws of War DLC Feedback

    Just wanted to say, im in "The Survivor" now and the Campagne is a blast ! Personally i think its the best official piece of SP content for Arma 3 for now, at least im enjoying at as much...!
  24. mrsandbox

    Laws of War DLC Feedback

    Best DLC confirmed...! ;-)
×