Jump to content

simicsko

Member
  • Content Count

    78
  • Joined

  • Last visited

  • Medals

Everything posted by simicsko

  1. simicsko

    RHS Escalation (AFRF and USAF)

    Can someone help me configure how the RHS pontoon build works. I've been trying for a few days but no luck. ๐Ÿ˜ž My steps so far: - I installed the required ACE and RHS MODs: CBA_A3, ACE, RHSUSAF, RHSAFRF. - According to the decsription on the Arma 3 pontoon scripts I did the following: - I copied the scripts into the mission folder (truck_load.sqf, place_pontoon.sqf, truck.sqf) - I placed the initialization of the necessary scripts in the init script: if (isServer) then { null = [] execVM "truck_load.sqf"; null = [] execVM "place_pontoon.sqf"; }; - For the pontoon objects I want to build with (I think these are the source pontoons), I copied the following line into their Init field: [this, true, [0, 3, 1], 10] call ace_dragging_fnc_setCarryable; At 03:19 a red circle and a Load inreaction appear. This will snap the pontoon bridge element into place. I don't see this red circle and the Load option in the the interactions. What do I need to make the joining of bridge elements work? Does anyone have experience with this and can help me with the configuration steps? Thanks in advance.
  2. Thank you for your tip. The problem was really with the ACE mod. ๐Ÿ‘
  3. Thanks for the idea, we'll try it, then I'll report back.
  4. Hi all! I would like to ask for a little help: We wanted to play a mission with three machines (my machine is the server), but one of the machines displays the following error and is rejected by the server: "0:00:00)cba_vesrioning - ace - Version Mismatch!" (Machine:Charlie_1 (Player) version: 3.16.0.72, serverVersion: 3.16.1.74, Level:4)" We deleted the CBA_A3 MOD on the client, unsubscribed on STEAM, then resubscribed, the same error remained. In the MOD list, on the property page of CBA_A3, we see the same parameters on all three machines: Author CBATeam Last Update 2023.10.25. 21:28 File size: 3,9 MB Status: Ready Multiplayer: Signed The other machine connects without any problems. Does anyone have any idea what could be causing this? Thanks in advance
  5. Thank You Gunter! ๐Ÿ‘
  6. Hi all! I would like to ask for a little help: We wanted to play a mission with three machines (my machine is the server), but one of the machines displays the following error and is rejected by the server: "0:00:00)cba_vesrioning - ace - Version Mismatch!" (Machine:Charlie_1 (Player) version: 3.16.0.72, serverVersion: 3.16.1.74, Level:4)" We deleted the CBA_A3 MOD on the client, unsubscribed on STEAM, then resubscribed, the same error remained. In the MOD list, on the property page of CBA_A3, we see the same parameters on all three machines: Author CBATeam Last Update 2023.10.25. 21:28 File size: 3,9 MB Status: Ready Multiplayer: Signed The other machine connects without any problems. Does anyone have any idea what could be causing this? Thanks in advance
  7. Ohh... Group synced with trigger. Tank you so much Hrazach. ๐Ÿ˜‰ In the meantime, I found another good solution: If group1 reaches a specific waypoint, events can also be activated with it. Thank you for your help.
  8. Hi! I am looking for a solution so that if any member of a group (that is, a part of the group) reaches the area of a trigger, the trigger will be activated. Does anyone have an idea for this?
  9. In the example you show, I don't see which group activates the trigger. In my example, group1 is an AI group. It is important that the trigger is activated only for this group.
  10. Ohh, I didn't say it exactly: So I have a group: group1. I want a trigger for this, so that if any live member of the group1 reaches the trigger area, the trigger will be activated.
  11. Hi, How to remove the progress bar from the screen after it has run?
  12. Hello All! How to use a script on behalf of a specific player in multiplayer mode? There is an object whose INIT field contains this line to run the script (for testing): this addAction [("<t color=""#00FF00"">" + ("PlayerName") +"</t>"), "PlayerName.sqf",[],1,false,true]; This is the content of the PlayerName.sqf script: _playerName = name player; if (_name == "Playername1") then {hint "Hello Alpha_1";}; if (_name == "Playername2") then {hint "Hello Bravo_1";}; hint str _playerName; Playername1 runs the server and Playername2 is the client. If I run it with PlayerName1, it shows "Hello Alpha_1", but if I run it with Playername2, it doesn't. The goal is to execute different code depending on the player's name. Can someone help me with this?
  13. No problem! ๐Ÿ™‚ Could you help me as much as how I can start the process on behalf of the player from the Scroll menu? I tried to include what you wrote for object init, but for some reason it doesn't work. The first menu item is self-healing, it works perfectly. But calling the helikpoter doesn't: menu0 = { player addAction[("<t color=""#7FFF00"">" + ("Heal Yourself") +"</t>"),{execVM "MEDICAL\selfHealing.sqf"}]; player addAction [ ("<t color=""#00FF00"">" + ("PlayerName") +"</t>"), { params ["_target", "_caller", "_actionId", "_arguments"]; [_caller] execVM "PlayerName.sqf"; }, nil, 1, false, true ]; }; []spawn menu0; hint "PLAYER MENU LOADED"; I tried a trigger (that might be the problem), which detects the spawning of the aforementioned players Alpha_1 and Bravo_1 (Object varNames) and starts the Scrollmenu.sqf script: Trigger Condition: Alpha_1 inArea thisTrigger; On Activation: execVM "ScrollMenu.sqf"; I would like to solve it with a menu so that the options are not limited by the number of radios that can be called with the trigger (Alpha to India).
  14. Brilliant solution! ๐Ÿ‘Œ Working perfectly. I found out why the helicopter didn't start: In the original mission, I started the helicopter with a trigger that was assigned with a waypoint activation. That's why it didn't start. ๐Ÿ™‚ One small thing: at the last waypoint, this line did not delete the helicopter: _Supp1wp3 setWaypointStatements ["true", "{deleteVehicle _x;}forEach ( crew Supply_Heli_1 + Supply_Heli_1 );"]; I replaced it with this one, it works like this: _Supp1wp3 setWaypointStatements ["true", "{deleteVehicle _x;}forEach crew Supply_Heli_1; deleteVehicle Supply_Heli_1;"]; Dear Larrow, thank you very much for your help! ๐Ÿ˜‰
  15. All right. Please be patient, I will probably be at the machine again on Sunday or monday
  16. I want the helicopter to be able to call any player to their position. The SupplyTransport_1 is the name of the helicopter group (Composition Variable Name).
  17. The following is still the problem: "PlayerName" appears in the object's menu, and when called, it attaches the jeep to the helicopter, but the helicopter does not start. I don't understand why the helicopter doesn't start, even though what you wrote seems logical. Do you have an idea?
  18. I'm sorry if I ask too much but I'm just learning scripting and I haven't managed to solve the secret of this "local" or "non-local" execution yet. ๐Ÿ™‚ The goal is to: There is a helicopter and a jeep on standby at the base and can be called to the battlefield with a trigger. When the script starts, the helicopter will bring the jeep to the location where the player is standing at the moment of the request. Then it goes back to the base (Supp_WP3) and is deleted. My son and I used to play together. Thus, there are two playable units in the mission, called Alpha_1 and Bravo_1. I would like to solve it within a script so that the given helicopter takes the jeep to the player who requests it. If I write it in a separate script for Alpha_1 and Bravo_1 (using getPosATL Alpha_1 and getPosATL Bravo_1 methods), it works great. But if the script is written in the following way, it will always recognize the Alpha_1 player who is hosting the mission. Of course, the name Player1 and Player2 is replaced by our real Arma3 name. It was also observed that if I remove the "if (isServer)" condition from the script, the helikpoter does not perform the "UNHOOK" task, it just descends with it, but does not release it, but raises it again. So I would like your help to understand why these things are not working. ๐Ÿ™‚ What do I do wrong? _name = name player; if (_name == "Player1") then {Alpha_1 sideChat "Alpha_1 requesting vehicle support!";}; if (_name == "Player2") then {Bravo_1 sideChat "Bravo_1 requesting vehicle support!";}; sleep 5; ["VEHICLE SUPPORT STARTED"] spawn BIS_fnc_infoText; if (isServer) then { _success1 = Supply_Heli_1 setSlingLoad SJeep_1; _POS11 = position player; _POS13 = getMarkerPos "Supp_WP3"; _Supp1wp1 = SupplyTransport_1 addWaypoint [_POS11, 0]; _Supp1wp1 setWaypointType "UNHOOK"; _Supp1wp1 setWaypointSpeed "FULL"; _Supp1wp1 setWaypointBehaviour "CARELESS"; _Supp1wp1 setWaypointCombatMode "GREEN"; _Supp1wp1 setWaypointStatements ["true", "Supply_Heli_1 flyInHeight 10;"]; _Supp1wp1 setWaypointStatements ["true", "_success1 = Supply_Heli_1 setSlingLoad objNull;"]; _Supp1wp3 = SupplyTransport_1 addWaypoint [_POS13, 0]; _Supp1wp3 setWaypointType "MOVE"; _Supp1wp3 setWaypointSpeed "FULL"; _Supp1wp3 setWaypointBehaviour "CARELESS"; _Supp1wp3 setWaypointCombatMode "GREEN"; _Supp1wp2 setWaypointStatements ["true", "Supply_Heli_1 flyInHeight 5;"]; _Supp1wp3 setWaypointStatements ["true", "{deleteVehicle _x;}forEach crew Supply_Heli_1; deleteVehicle Supply_Heli_1;"]; };
  19. Hi all! There is such a convoy script, but for some reason it is only willing to work with blue vehicles. If I set the B_MRAP_01_F vehicle, they spawn and go in a column to the waypoint. However, if I set a red vehicle (e.g. O_MRAP_02_gmg_F), they spawn but do not even start the engine. What could be causing this? Here is the script: convoyGroup1=createGroup EAST; _ConvoyPos = "RedConv1_Init1"; for "_i" from 0 to 3 do { _newVeh="B_MRAP_01_F" createVehicle getMarkerPos _ConvoyPos; _newVeh setDir 110; _newVeh setConvoySeparation 20; createVehicleCrew _newVeh; [_newVeh] joinSilent convoyGroup1; sleep 0.5; }; _RC1wp1 = convoyGroup1 addWaypoint [getmarkerpos "RedConv1wp1", 0]; _RC1wp1 setWaypointType "MOVE"; _RC1wp1 setWaypointSpeed "FULL"; _RC1wp1 setWaypointBehaviour "COMBAT"; _RC1wp1 setWaypointFormation "COLUMN"; Thanks in advance.
  20. Ohh my God! Really! That made me joke! ๐Ÿ˜ฎ "ALWAYS USE CODE BLOCKS ON THE FORUM." -> All right. Thank you very much for your help! ๐Ÿ˜‰
  21. Yes, 4 markers are created. The TypeSQF Editor writes that: Line 6: Syntax Error ("RC1Spawn" + str _i).
  22. Hello! There is some syntax error because I get the following error: ...Error Missing ) IF I try the apple method instead of the pear If I try getMarkerPos _ConvoyPos method instead of getMarkerPos ("RC1Spawn" + str _i), it works, but then, as you mentioned, the vehicles collide at the spawn. I don't see what's missing syntactically. Do you have an idea? The TypeSQF Editor writes that: Line 6: Syntax Error ("RC1Spawn" + str _i). [] spawn { convoyGroup1=createGroup EAST; for "_i" from 0 to 3 do { _newVeh = createVehicle ["O_MRAP_02_gmg_F", getMarkerPos ("RC1Spawn" + str _i) ๏ปฟ,[], 0, "none"]; _newVeh setDir 110; _newVeh setConvoySeparation 20; createVehicleCrew _newVeh; crew _newVeh joinSilent convoyGroup1; sleep 0.5; }; _RC1wp1 = convoyGroup1 addWaypoint [getmarkerpos "RedConv1wp1", 0]; _RC1wp1 setWaypointType "MOVE"; _RC1wp1 setWaypointSpeed "FULL"; _RC1wp1 setWaypointBehaviour "COMBAT"; _RC1wp1 setWaypointFormation "COLUMN"; };
  23. Thanks for the instructions, I'll try it in the evening and send you feedback. ๐Ÿ˜‰
  24. Hi all! There is an enemy infantry group. What I want to do is that if I hit any enemy soldiers and their injury is higher than 0.8, for example, they should die. It would be important that the players are not affected. How to handle this event? Does anyone have any ideas?
ร—