Jump to content

mackurt

Members
  • Posts

    58
  • Joined

  • Last visited

Posts posted by mackurt

  1. Nice joob but i want to tell you that you should not print "PZD-21" on the real missil.e 

    PZD stand for "配重弹" or "Pei Zhong Dan" in chinese pronounce. which means a missile which could simulate the real missile with the same shape and weight, mostly for training. it doesn;t included any sensor, warhear or rocket motor. I don'd know how to describe this kind of "missile" in englosh.

    I think the official name should be AKD21, YJ21? ...

    • Like 2
  2. 4分钟前,ChillNG说:

    From what Bignewy says above, sounds like a bug in the shop and sounds like they are fixing it.  I had a user on my discord with a similar issue this morning, they opened a support ticket and it got fixed within the hour.

    Hoping ED could fix it as soon as possible. can't wait for this campaign.

  3. 2小时前,bushido说:

    It is definitly linked with localisation settings, I can buy the campaign going to the English e-shop.

    My only concern is that given my game is in French and that currently the campaign does not appears in the available / purchasable in-game DLC I'm not 100% sure that if I buy the campaign I will see it as available in my game.

    @mackurt did you buy it ? And if your game is in Chinese, did you see it as available in your game ? Are you able to download and install without issue?

    I bought it in English e-shop. but my DCS game is chinese and i cannot found it in my game...and thus cannot download it.

  4. Is this a bug? ( i download the mission a few days ago but i have just tried it). you need to select to main power to get into F10 radio. battery doesn't work.... and if you failed to hold and directly get into runway, no radio command and i'm not sure weather i could take off ( the runway was so narrow that i consider it as a taxi way....)

    But overrall very nice mission and i'm looking forward for this campaign.(when will it release)

  5. I'm trying to make a missiong that people search and capture/ recuse for an uncontroled space ship return capsule land on somewhere on the map. like dragon ,soyuz or shenzhou. The return capsule hanged with parachute.

    First i found there is no real air-drop model which could be used. Some air drop mod are the replacement of some high drag bomb...

    Then i'm thinking make an aircraft with return capsule shape,but seems no AI air craft could land directly on the ground or sea....

    So i'm wandering whether it is possible to achieve this in DCS world....

    Thanks

  6. i'm planing to try some thing like a helicopter collecting the air drops.  But i want to respawn the air drops in the air without any aircraft to respawn it , and the air drop could remain in the air with parachuter for more than 30minutes and finally drop on the ground....

    I find some mod like C-130. But finally i found the airdrop are actually bombs ...

    I don't know how to do it. Do i need to make a specific 'air drop mod'?(and how).... or i can creat it just by some lua or directly from the mission editor...

    Thanks

  7. does it work for the missiles?

    just like the internal weapon bay for F-22.

     

    pylon(1, 2, -4.2573, 0.015546, -1.078,

    {

    use_full_connector_position = true,

    connector = "Pylon1",

    },

    {

    { CLSID = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}" }, -- AIM-9

    { CLSID = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}" }, -- AIM-120C

    { CLSID = "{8D399DDA-FF81-4F14-904D-099B34FE7918}" }, -- AIM-7M

    }

    ),

     

    the missile just released from the bay through the door and the arg26 doesn;t work.

    and i try to add MK82 into the pylon and it works...

  8. if you look closely to the joystick of JF17 you will find that it is very similar to the F-16. Actually this fighter is designed for pakisitan. Many memoris told the story about it.

    There is one book called"东方枭龙" which told the story how this aircraft was born.

  9. That's awesome. Macross plus and zero are the best macross movie i have ever seen

    Hoping you could finished the project.

    And i still remember in the FC2 or even early period , i have seen the FFR-31 mod from Sentou Yousei Yukikaze. but i haven't seen it anymore.......

  10. Hello

     

    i'm now want to make a model for stonehenge from Ace Combat in DCS. Just for fun.

    the modeling is almost complete .and befor finish the model, i have replace the WWII packs flak-88 EDM with it .and it works! it could shoots.

    attachment.php?attachmentid=211492&stc=1&d=1559977218

    attachment.php?attachmentid=211493&stc=1&d=1559977256

     

    The texture was made in 5 minutes with auto unwrap's UV .so....

     

    But i wanna to made my own flak. since in the ace combat's world this gun shoot the nuclear warhead and have far more range than flak-88 . So i have the make my own gun and shells

    And it seems no available flak's lua (for big guns) could been studied...or copy ..or learn in the DCS now. WWII's seems to be coded in dll files.

     

    I have download another flak-88's model

    https://www.dropbox.com/sh/tmemz393gtmzur2/AADmt-dfFg5HsUBahe7cbaUVa/Flak_88?dl=0&subfolder_nav_tracking=1

     

    But accroding to this flak88.lua it shoots M256 shell. not VT shell.. and i wrote my own lua based on flak88.lua. The guns could follow the target but it cannot fire.

     

    Here are the lua , mainly the weapon parts.

     

    --GT.WS[1].LN[1]

    local __LN = add_launcher(GT.WS[ws], GT_t.LN_t.tank_gun_120mm);

    __LN.automaticLoader = true;

    __LN.beamWidth = math.rad(1);

    __LN.BR[1].connector_name = 'POINT_GUN_01';

    __LN.BR[1].recoilArgument = 23;

    __LN.BR[1].recoilTime = 1;

    __LN.PL[1].ammo_capacity = 100

    __LN.PL[1].shot_delay = 2.5

    __LN.PL[1].shell_name = {"M256_120_AP"};

    __LN.PL[2] = {};

    __LN.PL[2].ammo_capacity = 100

    __LN.PL[2].shot_delay = 2.5

    __LN.PL[2].shell_name = {"M256_120_AP"};

    __LN.type = 10;

    __LN.sightMasterMode = 1;

    --__LN.customViewPoint = { "genericTankblue", {1.6, 1.5, 0.3 }, };

    --GT.WS[1].LN[2]

     

    __LN = add_launcher(GT.WS[ws], __LN); -- HE gun

    __LN.type = 10;

    __LN.distanceMin = 100;

    __LN.distanceMax = 8000;

    __LN.PL[1].shell_name = {"M256_120_HE"};

    __LN.PL[1].ammo_capacity = 100;

    __LN.PL[1].shot_delay = 2.5

    __LN.PL[2] = {};

    __LN.PL[2].shell_name = {"M256_120_HE"};

    __LN.PL[2].ammo_capacity = 100;

    __LN.PL[2].shot_delay = 2.5

    --__LN.customViewPoint = { "genericTankblueHE", {1.6, 1.5, 0.3 }, };

    __LN.sightMasterMode = 2;

     

     

    Could any body help me to solve this problem?

    789452687_QQ20190608144744.thumb.png.d451aff4cc89f5e03a50cdbc2e5d01ee.png

    441541457_QQ20190608145959.thumb.png.3dfd241f86c62c402b7d468102907290.png

  11. i just wondered which mail service would send me the T-shirt. since i'm in china not in US.

    And did any one have get any updated tracking message since after i got the message' your order is on the way'. no more message is received....

×
×
  • Create New...