mirror of
https://github.com/spencershepard/RotorOps.git
synced 2025-11-10 15:45:30 +00:00
-UI update with QTmodern library -mist lua script updated and modified to deal with ED bug on Unit.getGroupsByName returning dead units -pydcs updated with Apache -pydcs update fixes 'transportable' mission editor bug
29 lines
496 B
Python
29 lines
496 B
Python
import dcs
|
|
|
|
client_helos = [
|
|
dcs.helicopters.UH_1H,
|
|
dcs.helicopters.AH_64D_BLK_II,
|
|
dcs.helicopters.Mi_24P,
|
|
dcs.helicopters.Ka_50,
|
|
]
|
|
|
|
e_attack_helos = [
|
|
dcs.helicopters.Mi_24P,
|
|
dcs.helicopters.Ka_50,
|
|
dcs.helicopters.Mi_28N,
|
|
]
|
|
|
|
e_transport_helos = [
|
|
#dcs.helicopters.Mi_26,
|
|
#dcs.helicopters.Mi_24P,
|
|
#dcs.helicopters.Mi_8MT,
|
|
dcs.helicopters.CH_47D,
|
|
]
|
|
|
|
e_attack_planes = [
|
|
dcs.planes.A_10C,
|
|
]
|
|
|
|
e_zone_sams = [
|
|
dcs.vehicles.AirDefence.Strela_10M3,
|
|
] |