Jump to content

Vdauphin

Member
  • Content Count

    730
  • Joined

  • Last visited

  • Medals

Everything posted by Vdauphin

  1. Vdauphin

    [MP] =BTC= Hearts and Minds

    Hello, Well if you decide to remove them you should already know their type, you should be able to differentiate them between unit, motorized vehicles... I don't know what is this but you should be able to search in the eden editor and spawn to see if it is a unit or vehicles... No, just ask a pilot to pick you up. This basically allow people to play long term operation and make pilot not pointless Cheers
  2. Vdauphin

    [MP] =BTC= Hearts and Minds

    Hello, That is a long list, you need to separate them by unit, (divers?), (boats?), motorized, static mg and gl. Then do something like this: case "UK3CB_TKM_O" : { btc_type_units = btc_type_units - ["Blabla","moreBlabla"]; btc_type_motorized = btc_type_motorized - ["UK3CB_TKM_O_MTLB_ZU23","UK3CB_TKM_O_V3S_Zu23","UK3CB_TKM_O_Ural_Zu23"] btc_type_mg = btc_type_mg - ["UK3CB_TKM_O_Igla_AA_pod"]; btc_type_gl = btc_type_gl - ["UK3CB_TKM_O_Igla_AA_pod"]; }; Don't have the time to sort all of them sorry H&M is fully persistent so you can't, but most of the time people deploy FOB and enable redeploy to base from FOB option So at the end of an operation they just join the closer FOB to come back home when no pilot is available You can suicide yourself with abort in A3 menu Cheers
  3. Vdauphin

    [MP] =BTC= Hearts and Minds

    Hello! The Hearts and Minds mission 1.23.4 hotfix is here! Now H&M requires CBA and ACE3 only. Changelog : Param.hpp changed. Mission.sqm not changed. FIX: Missing factions and add Spearhead 1944 CDLC (@Vdauphin). FIX: Remove ;; (@Vdauphin). FIX: Use CBA loadout for ACRE radio (@Vdauphin). Have fun!!!
  4. Vdauphin

    [MP] =BTC= Hearts and Minds

    Hello, Yes, hum may be you just have to add this line to your init box https://github.com/Vdauphin/HeartsAndMinds/blob/master/%3DBTC%3Dco%4030_Hearts_and_Minds.Altis/core/fnc/int/add_actions.sqf#L235 But replace btc_gear_object with "this", not sure if it will works Or you can copy and paste in the file those lines https://github.com/Vdauphin/HeartsAndMinds/blob/master/%3DBTC%3Dco%4030_Hearts_and_Minds.Altis/core/fnc/int/add_actions.sqf#L235C68-L235C130 and replace all reference to btc_gear_object to the name you gave in the Eden editor to your box You wrongly copy and paste it: please copy and paste it again: https://github.com/Vdauphin/HeartsAndMinds/blob/master/%3DBTC%3Dco%4030_Hearts_and_Minds.Altis/define_mod.sqf#L5 You are using a 3 years old syntax You need to know the class name of your unit (send it I will show you if needed) and follow the example given in the mission.sqf you quoted Good luck guys
  5. Vdauphin

    [MP] =BTC= Hearts and Minds

    Hello, Not by default see https://github.com/Vdauphin/HeartsAndMinds/blob/master/%3DBTC%3Dco%4030_Hearts_and_Minds.Altis/core/def/mission.sqf#L561-L584 Cheers
  6. Vdauphin

    [MP] =BTC= Hearts and Minds

    Hello, May be you contaminate vehicles around you Also dead body are contaminated Cheers
  7. Vdauphin

    [MP] =BTC= Hearts and Minds

    Hello, Check your .rpt for errors and fix them Make sure your server have right access to *.Arma3Profile https://community.bistudio.com/wiki/Arma_3:_Server_Profile Cheers
  8. Vdauphin

    [MP] =BTC= Hearts and Minds

    Slot are used to select role (medic, enginner, etc) and limit the amount of same role in a single session. The mission is not player centered but coop. When you select a slot, you select a character that can be play by an other player later
  9. Vdauphin

    [MP] =BTC= Hearts and Minds

    Hello, https://github.com/Vdauphin/HeartsAndMinds/blob/master/%3DBTC%3Dco%4030_Hearts_and_Minds.Altis/core/fnc/slot/createKey.sqf#L29 Try with the last version here: https://github.com/Vdauphin/HeartsAndMinds/releases Also read slot persistence section: Cheers
  10. Vdauphin

    [MP] =BTC= Hearts and Minds

    Hello, Yes this is intended http://vdauphin.github.io/HeartsAndMinds/Add-vehicle-or-boat-to-H&M-system#2-in-game You need to code your own function here: https://github.com/Vdauphin/HeartsAndMinds/blob/master/%3DBTC%3Dco%4030_Hearts_and_Minds.Altis/core/fnc/arsenal/garage.sqf You may replace btc_log_fnc_createVehicle with your own Cheers
  11. Vdauphin

    [MP] =BTC= Hearts and Minds

    You can't, it is BI Garage You can tweak like it has been done here: https://github.com/Vdauphin/HeartsAndMinds/blob/master/%3DBTC%3Dco%4030_Hearts_and_Minds.Altis/core/fnc/eh/server.sqf#L148-L152 No idea, ask ACE Team
  12. Vdauphin

    [MP] =BTC= Hearts and Minds

    Hello, Just follow this: http://vdauphin.github.io/HeartsAndMinds/Add-vehicle-or-boat-to-H&M-system#1-add-new-vehicle-to-hm This is weird. Try reset your database with the ACE interaction/db delete Cheers
  13. Vdauphin

    [MP] =BTC= Hearts and Minds

    Hard to tell but as you combine UK3CB_ADE_O and CFP_O_BOKOHARAM factions, the case statement will only filter CFP_O_BOKOHARAM, not the UK3CB_ADE_O You need to combine inside the CFP_O_BOKOHARAM statement the class name from UK3CB_ADE_O
  14. Vdauphin

    [MP] =BTC= Hearts and Minds

    Use debg console: https://community.bistudio.com/wiki/Arma_3:_Debug_Console I think it is case-sensitive
  15. Vdauphin

    [MP] =BTC= Hearts and Minds

    Does btc_type_motorized_armed still contain "UK3CB_ADE_O_Hilux_Mortar" ?
  16. Vdauphin

    [MP] =BTC= Hearts and Minds

    Hello and thank you! Yes you need to change everywhere here: https://github.com/search?q=repo%3AVdauphin%2FHeartsAndMinds ACE_Banana&type=code It is just a fruit 🤔 Cheers
  17. Vdauphin

    [MP] =BTC= Hearts and Minds

    Hello, Yes, you need to change in stringtable.xml : https://github.com/Vdauphin/HeartsAndMinds/blob/master/%3DBTC%3Dco%4030_Hearts_and_Minds.Altis/stringtable.xml#L1123-L1131 Take a look here: https://community.bistudio.com/wiki/Arma_3:_Leaflets You can ask more information in A3 Discord Cheers
  18. Vdauphin

    [MP] =BTC= Hearts and Minds

    Hello, You can add any type or parent here: https://github.com/Vdauphin/HeartsAndMinds/blob/master/%3DBTC%3Dco%4030_Hearts_and_Minds.Altis/core/fnc/ied/deleteLoop.sqf#L31 Cheers
  19. Vdauphin

    [MP] =BTC= Hearts and Minds

    Hello! The Hearts and Minds mission 1.23.3 hotfix is here! Now H&M requires CBA and ACE3 only. Changelog : Mission.sqm/Param.hpp not changed. FIX: Huron Fuel/Ammo Containers resetting to full on server restarts (@Vdauphin). Have fun!!!
  20. Vdauphin

    [MP] =BTC= Hearts and Minds

    Hello, Take a look to how to open the door: http://vdauphin.github.io/HeartsAndMinds/InGame-documentation#door-locked Cheers
  21. Vdauphin

    [MP] =BTC= Hearts and Minds

    Why do you want to enter in a house which is not your home
  22. Vdauphin

    [MP] =BTC= Hearts and Minds

    Hello, No, H&M save class name of unit in cities, not the loadout Cheers
  23. Vdauphin

    [MP] =BTC= Hearts and Minds

    Hello, Yes, as H&M is persistent, all units inside city will appear the next time you enter the city if you didn't kill them. If civ were rabbit, they will spawn again as rabbit even after changing the param Good luck! Cheers
  24. Vdauphin

    [MP] =BTC= Hearts and Minds

    Hello, May be ask to A3 discord? Looks like a bug from your mod Cheers
  25. Vdauphin

    [MP] =BTC= Hearts and Minds

    Hello, Just ACE interact with Arsenal/redeploy red box Cheers
×