Jump to content

StingerMeGood

Member
  • Content Count

    3
  • Joined

  • Last visited

  • Medals

Community Reputation

10 Good

About StingerMeGood

  • Rank
    Rookie
  1. StingerMeGood

    Better weather in Warfare.

    Mattoso, Quite sure you would have to unpack the Warfare map and edit it from in the "Mission.sqm" file. Look for: startWeather=x.xxxxxx; forecastWeather=x.xxxxxx; Change "x" to whatever you feel like. I have mine at: startWeather=6.230000; forecastWeather=6.230000; Nice and overcast, rainy, stormy fun. :D forcastWeather will indicate the progressive weather. keep it the same as startWeather. Works fine for me. Hope this helps. StingerMeGood
  2. StingerMeGood

    Adding Units/Weapons/Vehicles

    Hoping someone could steer me in the right direction. Trying to add my own vehicle addons into warfare map. This is what I have done from the beginning: 1. Created @PMC folder and added to shortcut. 2. Inside @PMC folder is : addons\pmc_apache.pbo addons\pmc_apache.pbo.PMC.bisign keys\PMC.bikey 3. Unpacked Warfare map. 4. Under Common\Config\Config_AircraftFactory.sqs I have added: _u = _u + ["pmc_apache_multirole"] _d = _d + ["PMC Apache Multirole"] _c = _c + [200] _m = _m + [200 + (westBarracksCosts Select WPILOTTYPE) * 2] _t = _t + [55] _p = _p + [50] _o = _o + [false] _i = _i + ["\PMC_APACHE\icons\iah64.paa"] _u = _u + ["pmc_apache_closesupport"] _d = _d + ["PMC Apache Close Support"] _c = _c + [200] _m = _m + [200 + (westBarracksCosts Select WPILOTTYPE) * 2] _t = _t + [55] _p = _p + [50] _o = _o + [false] _i = _i + ["\PMC_APACHE\icons\iah64.paa"] _u = _u + ["pmc_apache_groundsuppres"] _d = _d + ["PMC Apache Ground Suppress"] _c = _c + [200] _m = _m + [200 + (westBarracksCosts Select WPILOTTYPE) * 2] _t = _t + [55] _p = _p + [50] _o = _o + [false] _i = _i + ["\PMC_APACHE\icons\iah64.paa"] Being the three models I wish to use(obviously). 5. Under Missions.sqm I have added "PMC_APACHE" under "addOns []=" AND "addOnsAuto []=" (Yes there is a comma after the last entry). Contents of PMC_APACHE.PBO: \icons\iah64.paa \sounds\engine_ah64.wss \tex\*(whole heap o texture files)* $PBOPREFIX$ config.bin pmc_apache_closesupport.p3d pmc_apache_groundsuppres.p3d pmc_apache_multirole.p3d From what I can gather this is all correct. I can start the warfare map and even select the chopper from the Buy Screen (even the description is there). What appears to happening is that the helicoptors are spawning around 21.5km away from my base. (Off the coast of the South Island) Always in the same spot. Ker-Plunk. Splashy Death. Oh, and the icons aren't working. That's no biggy. (but a fix would be appreciated) Any assistance would be appreciated. Cheers, StingerMeGood
  3. Hoping someone could steer me in the right direction. Trying to add my own vehicle addons into warfare map. This is what I have done from the beginning: 1. Created @PMC folder and added to shortcut. 2. Inside @PMC folder is : addons\pmc_apache.pbo addons\pmc_apache.pbo.PMC.bisign keys\PMC.bikey 3. Unpacked Warfare map. 4. Under Common\Config\Config_AircraftFactory.sqs I have added: _u = _u + ["pmc_apache_multirole"] _d = _d + ["PMC Apache Multirole"] _c = _c + [200] _m = _m + [200 + (westBarracksCosts Select WPILOTTYPE) * 2] _t = _t + [55] _p = _p + [50] _o = _o + [false] _i = _i + ["\PMC_APACHE\icons\iah64.paa"] _u = _u + ["pmc_apache_closesupport"] _d = _d + ["PMC Apache Close Support"] _c = _c + [200] _m = _m + [200 + (westBarracksCosts Select WPILOTTYPE) * 2] _t = _t + [55] _p = _p + [50] _o = _o + [false] _i = _i + ["\PMC_APACHE\icons\iah64.paa"] _u = _u + ["pmc_apache_groundsuppres"] _d = _d + ["PMC Apache Ground Suppress"] _c = _c + [200] _m = _m + [200 + (westBarracksCosts Select WPILOTTYPE) * 2] _t = _t + [55] _p = _p + [50] _o = _o + [false] _i = _i + ["\PMC_APACHE\icons\iah64.paa"] Being the three models I wish to use(obviously). 5. Under Missions.sqm I have added "PMC_APACHE" under "addOns []=" AND "addOnsAuto []=" (Yes there is a comma after the last entry). Contents of PMC_APACHE.PBO: \icons\iah64.paa \sounds\engine_ah64.wss \tex\*(whole heap o texture files)* $PBOPREFIX$ config.bin pmc_apache_closesupport.p3d pmc_apache_groundsuppres.p3d pmc_apache_multirole.p3d From what I can gather this is all correct. I can start the warfare map and even select the chopper from the Buy Screen (even the description is there). What appears to happening is that the helicoptors are spawning around 21.5km away from my base. (Off the coast of the South Island) Always in the same spot. Oh, and the icons aren't working. That's no biggy. (but a fix would be appreciated) Any assistance would be appreciated. Cheers, StingerMeGood
×