Jump to content

mackurt

Members
  • Posts

    58
  • Joined

  • Last visited

Everything posted by mackurt

  1. nullIn missiong 4, just after take off and proceding to waypoint 1, it will remind you to swith VHF to sword. There shoud be no '2' here. Just this small bugs.
  2. 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? ...
  3. Hoping ED could fix it as soon as possible. can't wait for this campaign.
  4. 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.
  5. you may change the language. i couldn't find this campaign in chinses but when i switch the website to english i could found it in e-shop.
  6. 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)
  7. 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
  8. 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
  9. I'v just quick the GS sever. Everyone is lagging, i can see the target warp during my radar and my missile drift to the target... and some aircraft still stick in the air after been hit....
  10. 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...
  11. 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.
  12. I got the package finally. in China ,Shanghai. This is my first time to get the package from Poland... Nice T-shirt. Thank you heatblur
  13. 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.......
  14. Is there any people in Asia got the t-shirt? Here in China and none of my friends who have order the tshirt got it
  15. 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. 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?
  16. 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....
  17. Is there any way that i could track the shipping of my Tshirt?
  18. a few days ago i saw cobra said" late this month" but now it almost April....
  19. same problem. but it depends. sometime it was just stuck at loading and 10+ minutes later nothing happened. i have to kill the DCS task
  20. i have wait such a long time...so actually i don't care about a few days delay.
  21. why the phonex card get another 10$ bouns but 80$ didn't get any other bouns...
  22. 21.00 pm in china now...hoping we can fly the hornet within today....
  23. Some gifs captured from the FA-18C Live Stream show in China!
×
×
  • Create New...