Is there any way to change the uh80 ghosthawk in the player resupply for heli insertion to another type of helicopter as I am using CUP units at the moment and would love to change it to a UH60. Sorry if this has been asked before.
Is there any way to change the uh80 ghosthawk in the player resupply for heli insertion to another type of helicopter as I am using CUP units at the moment and would love to change it to a UH60. Sorry if this has been asked before.
You should be able to do that, as you can change the transport bird to another type very easily.
I would think it's just a matter of replacing the UH80 editor name with whatever is the equivalent for the CUP UH60.
You know I actually don't think so. This method works for CAS/Transport/Arty choppers but I *think* the resupply is something simulated to spawn near the player that uses vanilla assets. I'm probably wrong though!
You have to run a script staticdata.sqf to change logistic vehicles, ammo crates found at objectives etc.
Spyder has one on here somewhere you can use i think.
Thanks chaps will look into that :)
I'll try looking for it here in a bit.
As usual with everytime this topic comes up, I couldn't find my previous post :(
Init.sqf
execVM "staticData.sqf";
staticData.sqf
https://gist.github.com/SpyderBlack723/b810f7439555f67bed4b
if all you want to change is the aerial resupply vehicle, your staticData.sqf can be as short as this
https://gist.github.com/SpyderBlack723/6682c9c3b77eaae45aba
You'll just need to change OPF_F
to the faction that will use the helicopter, and the ["O_Heli_Attack_02_F","O_Heli_Light_02_F"]
to ["uh60_classname"]
. Substituting uh60_classname with the classname for the wanted helicopter.
@SpyderBlack723 As usual with everytime this topic comes up, I couldn't find my previous post :(
Init.sqf
execVM "staticData.sqf";staticData.sqf
https://gist.github.com/SpyderBlack723/b810f7439555f67bed4bif all you want to change is the aerial resupply vehicle, your staticData.sqf can be as short as this
https://gist.github.com/SpyderBlack723/6682c9c3b77eaae45abaYou'll just need to change
OPF_F
to the faction that will use the helicopter, and the["O_Heli_Attack_02_F","O_Heli_Light_02_F"]
to["uh60_classname"]
. Substituting uh60_classname with the classname for the wanted helicopter.
Remember that secretary I said you needed? You need it. ;)
Thank you for that makes my mission a bit more plausible:)