Jump to content

cc_kronus

Member
  • Content Count

    87
  • Joined

  • Last visited

  • Medals

Everything posted by cc_kronus

  1. Hi I have a script which I copied from this forum ages ago to create crew in a chopper in multiplayer. _vehicle = _this select 0; _caller = _this select 1; _id = _this select 2; _helotype = _this select 3; //_class passed in addAction arguments player sidechat format["%1", _helotype]; _vehicle removeAction _id; //remove the action once it is activated _spawnpoint = getMarkerPos "pilotspawn"; _grp = createGroup west; /* */ if (_helotype == "RHS_UH1Y") then { _pilot2 = "rhsusf_usmc_marpat_wd_helipilot" createUnit [_spawnpoint, _grp, "this assignasgunner _vehicle; this moveinturret [_vehicle,[0]];"]; _crew1 = "rhsusf_usmc_marpat_wd_helicrew" createUnit [_spawnpoint, _grp, "this assignasgunner _vehicle; this moveinturret [_vehicle,[1]];"]; _crew2 = "rhsusf_usmc_marpat_wd_helicrew" createUnit [_spawnpoint, _grp, "this assignasgunner _vehicle; this moveinturret [_vehicle,[2]];"]; hint parseText "<t color='#33cc33'>Tripulació a l'aparell</t>"; }; The problem is that sometimes we have both a human pilot and a copilot, so the _pilot2 position does not need to be created. Is there any way to make the _pilot2 check if the seat is empty and if it is not, skip the creation of unit and move onto _crew1 and _crew2. ? I have seen the function fullcrew but I am totally lost on how to apply it and run a check of the turret 0 of the vehicle. Help with the right syntax would be highly appreciated.
  2. In Arma3 BI asset page https://community.bistudio.com/wiki/createVehicle/vehicles The building Land_MobileRadar_01_radar_F has a note: Radar_Rotation => user. Does it mean that there is a way to animate the radar and make it rotate?? anyone knows what line code would be needed in the object's init to make it happen?
  3. cc_kronus

    Immersion Cigs

    Any way to prevent the lollypop, cigarrette pack and lighter to load automatically on a player's equipment? It is messing my loadouts.
  4. Hi II am calling a script from the init.sqf but it on start up there is the black window with an error. (unfortunately, the window don't show the kind of error it is). I have tried many things but I am totally unable to figure what is wrong. this is the code. { if (side _x == civilian && _x isKindOf "Helicopter") then { _x addEventHandler ["GetIn", "if ((_this select 2) == driver (_this select 0)) then {nul = [(_this select 0),(_this select 2)] execVM 'helocrew\crewIn.sqf'}"]; }; } forEach vehicles; Can someone, please, take a look at it and let me know what may be wrong? Thanks
  5. PREI KMAOCH LUONG - Straw Houses are highly resistant: Bullets hardly penetrate. They resist direct rpg hits. They should go in flames when hit with enough tracer ammo and/or hit by RPG . Rifle ammo should go through the straw walls like hot knives through butter spaghetti! - Bridges cannot be destroyed. Vehicles do not recognize bridges as part of the road. - AI infantry is unable to cross even low depth water crossings. - Some of the houses have sound effects of civilian life ..... speaking in greek! better keep them silent at all if you can't find cambodian sound effects. - sounds of seagulls. You should use Tanoa's jungle sound suite instead. - Drug trafficker's runway has nowhere to park planes... you could at least leave a flat area at same level and next to the runway so trees can be removed by user if they want to use the area as parking/platform for small propeller planes
  6. cc_kronus

    Camofaces

    Hi Sk3y, I can't understand this. Can you be more specific on how to use the above data for the AI character to show a camo face? What specific line should I type in the unit's init? Thanks!
  7. cc_kronus

    Laws of War DLC Assets

    and don't forget the this animateSource ["outerTent_Hide",1,true]; to have all the complete set! :)
  8. yep very wrong thread. I was actually addressed to this post
  9. cc_kronus

    Laws of War DLC Assets

    Thanks Night 515!!!
  10. cc_kronus

    Laws of War DLC Assets

    Do you know if there is also a command to remove the walls and leave them as open tents? Thanks
  11. cc_kronus

    Laws of War DLC Assets

    Is there a template to edit the chalkboard " Land_wallsign_01_chalkboard_F" ? I tried with settextureglobal but it only changes the frame of the chalkboard.
  12. Hi When our RTO mark a point on the map and demand a virtual CAS support plane, the plane overflies the target point and then starts to circle it arround and arround and arround. It seems that if the AI pilot can't see the target, (which is most of the time in Dakrong map), they don't drop ordnance. Does anyone know of a way to force the airplane to drop the full Napalm load on the marker point placed in the map by the RTO? (regardless of what is below the jungle canopy, either VC or a lot of innocent bushes.!)
  13. Are those factions good for Echo version just released?
  14. I know it sounds like a noob question... but I am a noob! What should I type in the player combat supports' code box to remove the NVG to the chopper's crew?
  15. @eggbeast The radios I can see on 0:20 in this video https://youtu.be/mi-DushED4c will they be compatible with ACRE2? There are a lot of communities using ACRE2. I know that the ACRE2 team are very receptive to work with full mod developers to include compatibility of their system with the mod. Have you contacted them for this purpose? any news on that?
  16. Hi, With my very limited knowledge of programming (I am a copy-paster) I am trying to simulate a random radio broadcast to some radios placed in the scenario, but all radios must emit the same track. This is the code I am using in radios.sqf. The sountracks have already been defined in description.ext , and individually played, on a single radio as in - this say3d [ "voicetrack1" , 15,1] - they run OK. Now, I want all the radios. to play at the same time the same random track selected by the random function. _antena is an antena placed in the scenario. If destroyed, the transmissions end. _radios is the array of the devices I want to play the sound files, (the vanilla small black transistors) if !(isServer) exitWith {}; _antena = _this select 0; _radios = ["radio_1","radio_2","radio_3","radio_4","radio_5"]; _random = 3; while {alive _antena} do { _randomResult = floor(random _random); sleep 15; switch (_randomResult) do { case 0: {_radios say3D ["voicetrack1",15,1]; sleep 182;}; case 1: {_radios say3D ["voicetrack2",15,1]; sleep 197;}; case 2: {_radios say3D ["voicetrack3",15,1];sleep 171;}; }; }; The problem is that an error pops up and keeps telling me that it has found 5 elements (presumibly the radios) when only 2 where expected. I am totally lost and I have no idea on how to solve this issue. I would appreciate some help.
  17. vanilla + CBA As said before, if it is a characteristic of say3D, for the purposes of my mission, It would be better if each transistor played a random track
  18. @sarogahtyp & @Grumpy Old Man Thanks, both of your solutions makes all the radios sound and all play the same track, but I found a curious and unexpected issue. At the moment the player exits the listening radio of the say3D, the transmission pauses. This means that if you pass near a radio, listen to it, you get on your way until you can't hear it anymore and you get back within range to hear it again, transmission resumes right at the point you stopped hearing it. and when you get near the next radio, you hear the track start again from zero. it is not the case in the mission , but to give you an idea of the issue, Imagine you are hearing a terrorist making a speech trough a radio with a threat and a countdown, and you pass near radio1, and the speech starts, saying that after so many seconds he is doing whatever evil things terrorists do. you listen until he says that there is only half a minute left. you go away for maybe five minutes, you go back to the radio, and the next thing you hear is that you have 29 seconds left. Now if you get to the next radio2, you will listen the speech right from start. it destroys the inmersion and the purpose of the transmision. Is there any way to make all radios make the speech in a synchronized way? even if there is no player within the hearing radio of the transistors? If this synchronization can not be done due to the nature of say3d function. I would rather prefer that each radio1, radio3, etc. play a random track. @Grumpy Old Man I'm slowly getting into the dark side, but i cannot devote much time to it, so each aid is a great lesson on how the system works.
  19. Well, I hope that either he finds the time to finish this or let's see if someone else picks up the job of factions for Alive
  20. That would indeed be the easiest and cleanest solution for users
  21. cc_kronus

    ARMA 3 Addon Request Thread

    Does anyone know if there is any mod existing or WIP that would enable a Jungle Penetrator on helicopters? with maps such as Tanoa, (or any other with dense forests or jungles) sometimes it is not possible to get to a clear landing zone to evacuate injured or rescue a squad in dense forests For those of you who do not know what a jungle penetrator is: This is how the device looks like. https://goo.gl/images/FWGvvb it designed to get trough the most dense jungle or forest canopy down to ground level. Once at ground level, the fins of the device are opened. https://goo.gl/images/AmRhfo each of the 3 fins serves as a seat and after securing the men to the penetrator with a safety belt, the device can hoist up to the helicopter a maximum of three people (one for each fin/seat) https://goo.gl/images/Uzk5bE https://goo.gl/images/sv7S5h It would also help to rescue someone from the water without need to hover dangerously low https://goo.gl/images/GV8R5j Obviously after hoisting up the men, upon arriving to the top they should be moved to a free position in the helicopter cargo. Please, let me know if anyone knows of the existance of this mod, or if there is already a WIP or if someone is planning to work on it
  22. The fact is to replicate an Arc Light, you do not even need the actual plane. They flew so high that the only thing visible from ground were the condensation contrails of the flight formation. A few seconds after the contrails pass overhead, you hear the distant humm of the engines and then the string of bombs hitting ground. If a script magician could organize that it would be cool, order an arc light, set up initial point and direction of the bombing run on the map, and after a few minutes, you see the white contrails in the sky, the script make a pattern of markers following the direction of the "flight", and then it creates an explosion on each marker with a short interval between them. I wish I had the skills to program it!!!
×