Jump to content

jw custom

Member
  • Content Count

    3464
  • Joined

  • Last visited

  • Medals

Everything posted by jw custom

  1. jw custom

    Grand Theft Auto V

    Haha funny stuff ^
  2. jw custom

    Star Wars Battlefront: impressive trailer

    With the combination of EA and DICE... computer says noooo!
  3. jw custom

    Grand Theft Auto V

    I bought it for PS4 and just the story mode alone made it worth the buy! Last time i enjoyed a single player campaign this much when i played the first Max Payne.
  4. jw custom

    Squad (PR:BF2 Devs)

    To me it looks like a mix of BF2, BHD and some ArmA... it could turn out to be fun but also as 'just another one'.
  5. jw custom

    Binkowski

    Good to hear you are back and recovering well :cool:
  6. Congratulation to all winners, good work :cool:
  7. jw custom

    Battlefield: Hardline

    Yeah that could very well be true, but the videos i have been watching was without stupid helis raping the battlefield. I will watch some more videos before i decide :)
  8. jw custom

    Battlefield: Hardline

    I enjoyed BF3 for a while until i got tired of helicopters dominating the maps i liked, then i skipped BF4 because i figured it was the same. I was really convinced i would never buy hardline but now after watching many gameplay videos i might change my mind, it looks fun.
  9. jw custom

    What do you think of ArmA3's futuristic setting?

    When ArmA 3 was released i thought the futuristic setting was nice,,,, now i'm just as tired of it as i am of the 'deserty arrowhead' setting. ..and as i have said before, the vietnam era would be my dream setting.
  10. This is indeed good news if they manage to get enough help to make it happen :cool:
  11. Did a quick test, Garand sounds great now :cool: Thanks
  12. jw custom

    Steam discussion

    I'm certainly not a steam fan but it won't hold me back from playing a game i'm interested enough in. Currently i only have ArmA3 and Iron Front: Liberation 1944 on steam.
  13. I haven't made any missions for Iron Front, just bought a few days ago but i sure will be making some :)
  14. jw custom

    unit config - need help!

    Add something like this: class cfgVehicles { class I_soldier_F; class Rnw_Chn_Soldier: I_soldier_F { .... .... [color="#0000FF"] side = 2; faction = "Your_Faction"; vehicleClass = "Your_Class";[/color] ... ... }; }; [color="#0000FF"]class CfgVehicleClasses { class Your_Class { displayName = "Your Class Name"; }; };[/color] [color="#0000FF"]class CfgFactionClasses { class Your_Faction { displayName = "Your Faction Name"; priority = 2; side = 2; icon = "path to your faction icon"; }; };[/color]
  15. I'm trying to make a little sound mod to the Iron Front A3 Mod but i can't get it to work as original sounds are still used instead of my new ones. After many attempts i did a copy/paste from the original library (LIB_US_Weapons.pbo from the d-day dlc). To make sure path/file was ok i changed fire sound to "drySound" > begin1[] = {"LIB\LIB_DLC_1\LIB_US_Weapons\Springfield\Data\Sounds\Springfield_dry.wss", 1.000000, 1, 10}; but i still get the original fire sound. Hopefully someone can help with this problem. The CfgSounds part work fine. Here is my config: class CfgPatches { class jwc_garand { units[] = {}; weapons[] = {}; requiredVersion = 1.020000; requiredAddons[] = {"LIB_US_Weapons"}; }; }; class CfgSounds { class LIB_M1_Garand_Empty { [color="#00FF00"]sound[] = {"jwc_garand\garand_eject.ogg", "db+25", 1, 100};[/color] titles[] = {}; }; }; class Mode_SemiAuto; class cfgWeapons { class RifleCore; class Rifle: RifleCore { }; class LIB_RIFLE: Rifle { }; class LIB_M1_Garand: LIB_RIFLE { scope = 2; displayName = "$STR_LIB_DN_M1_Garand"; cursoraim = "LIB\weapons\data\cursor_kar.paa"; picture = "\LIB\LIB_DLC_1\LIB_US_Weapons\Garand\Data\Icons\m1garand_icon_ca.paa"; handAnim[] = {"OFP2_ManSkeleton", "lib_dlc_1\animationsWeapons\LIB_US_Weapons\Garand\Data\Anims\lib_m1garand.rtm"}; modes[] = {"Single", "Far", "Medium", "Short"}; class Single: Mode_SemiAuto { [color="#FF0000"]begin1[] = {"LIB\LIB_DLC_1\LIB_US_Weapons\Springfield\Data\Sounds\Springfield_dry.wss", 1.000000, 1, 10};[/color] soundBegin[] = {"begin1", 1}; soundContinuous = 0; reloadTime = 0.100000; ffCount = 1; recoil = "recoil_single_primary_5outof10"; recoilProne = "recoil_single_primary_prone_4outof10"; dispersion = 0.000250; aiRateOfFire = 0.001000; aiRateOfFireDistance = 10; minRange = 0; minRangeProbab = 0.200000; midRange = 5; midRangeProbab = 0.700000; maxRange = 10; maxRangeProbab = 0.050000; }; class Far: Single { showToPlayer = 0; aiRateOfFireDistance = 500; aiRateOfFire = 10; minRange = 300; minRangeProbab = 0.050000; midRange = 400; midRangeProbab = 0.500000; maxRange = 500; maxRangeProbab = 0.040000; }; class Medium: Single { showToPlayer = 0; aiRateOfFire = 5; aiRateOfFireDistance = 300; minRange = 100; minRangeProbab = 0.050000; midRange = 200; midRangeProbab = 0.500000; maxRange = 300; maxRangeProbab = 0.040000; }; class Short: Single { showToPlayer = 0; aiRateOfFire = 1; aiRateOfFireDistance = 100; minRange = 10; minRangeProbab = 0.050000; midRange = 50; midRangeProbab = 0.500000; maxRange = 100; maxRangeProbab = 0.040000; }; drySound[] = {"LIB\LIB_DLC_1\LIB_US_Weapons\Springfield\Data\Sounds\Springfield_dry.wss", 1.000000, 1, 10}; reloadMagazineSound[] = {"LIB\LIB_DLC_1\LIB_US_Weapons\Garand\Data\Sounds\Garand_ReloadMagazine.wss", 1.000000, 1, 20}; magazines[] = {"LIB_8Rnd_762x63"}; class LIBrary { LIBTextDesc = "$STR_LIB_LIB_M1_Garand"; }; model = "LIB\LIB_DLC_1\LIB_US_Weapons\Garand\lib_m1_garand.p3d"; descriptionShort = "$STR_LIB_DSS_M1_Garand"; weaponInfoType = "RscWeaponZeroing"; discreteDistance[] = {100, 200, 300, 400, 500, 600, 700, 800}; discreteDistanceInitIndex = 1; }; };
  16. jw custom

    To All the Community (and BI, off course)

    Merry Christmas
  17. jw custom

    Far Cry 4

    ...sounds about right
  18. That would be instant buy for me, preferable Vietnam era.
  19. A game that really comes to mind is Vietcong, other games would Neverwinter Nights and of course OFP. Games that i currently play and really enjoy is GTA 5 and Middle-earth: Shadow of Mordor.
  20. jw custom

    Assassin's Creed Victory

    Even if you look past the bugs and performance issues Unity is still a big step backwards from previous titles, very boring and repetitive.
  21. jw custom

    TitanIM

    Show me where to pledge :D
  22. jw custom

    Assassin's Creed Victory

    I ignored the bad reviews and bought Unity mostly because i really enjoyed Black Flag and Unity's Paris setting looked stunning(and it is). I must say i'm already tired of Unity, not because of bugs but because it's so repetitive and nothing new is brought to the table. Unless Victory is getting great reviews i'm skipping it.
  23. jw custom

    Far Cry 4

    I had all 4 attacking me at the same time, impossible to do anything. Maybe they added just a bit too much wildlife.
  24. jw custom

    Far Cry 4

    Really love getting attacked by eagles, wolfs, snakes while some hunter is shooting arrows at ya... wooot. really?
×