Jump to content

six_ten

Member
  • Content Count

    370
  • Joined

  • Last visited

  • Medals

  • Medals

Everything posted by six_ten

  1. I have an old cannon that I want to fire the old fashioned way -- light the vent with a match. I have a firedNear EH that works; when I "fire" the match weapon near the gun I want the cannon to fire just as it sits. I can't find any examples of how to do anything like that except with explosives, or forcing an AI to fire it. I just want the player or AI to fire the match and the gun go off. Can anyone suggest a way to do this?
  2. I've made some custom buoys and can't get them to appear in editor. (yes they have proper edcat and edsubcats, they ought to appear with my other custom stuff) So I'm digging around trying to figure out what's wrong, and I tried to load the A3 buoy -- it also doesn't appear in editor, and it should -- class Land_BuoyBig_F: Buoy_base_F ... scope = 2; In Eden, type "Buoy" into the search bar and nothing appears. In Preview mode, try null = createVehicle ["Land_BuoyBig_F", position player, [], 0, "NONE"]; and it appears fine, as do my buoys, but I can't get them to show in editor. What's happening here and how do I fix it?
  3. I still haven't found a solution to this. Has anyone else?
  4. I've successfully modified my configs so my mod assets show up neatly organized in Eden. One thing I haven't found it how to set the default open items -- I'd like the open item default to be one of my assets instead of NATO men -- how do I do this?
  5. Has anyone discovered a way to do this? (along with the random start position on the map (which I think I read is going to be changed in an update)) this is one of the few things that I don't like about 3Den.
  6. When I see that "missing tetrahedron" error I press Arrow Up, press enter, and get on with my terrrain modeling...
  7. six_ten

    A couple of O2 questions

    What's the limit now -- I've been fighting to keep all mine under 15,000. Is it higher now?
  8. six_ten

    A couple of O2 questions

    In your ARMA3 Tools folder look for steam_appid.txt open it up -- go to your ARMA 3 main directory find a file of the same name -- open it -- copy this number 107410 from it, paste it into the one in Tools (meanwhile erasing whatever number was there before, and save. Close them. Now try Buldozer.
  9. six_ten

    Have problem with wheels

    Have you compared your model to the Test_Tank in Samples_F?
  10. six_ten

    [WIP] Black Powder mod

    And not long after -- a successful boarding action and prize taken!
  11. six_ten

    [WIP] Black Powder mod

    The gunboat using her brand new bow gun -- a mighty 12-pounder - to shred the sails of and bring her quarry to heel offshore from Tangier.
  12. What are your specific questions? I've never heard of Substance Painter -- I make my own textures, so I can help you with getting them in game, but nothing to do with that software.
  13. What parts should "move top" and what should "move bottom", and what surface?
  14. The models you guys keep posting look great. I'd love to see some behind-the-scenes renders to help improve my own skills -- can you show some wireframes, textures, normal maps etc -- maybe even talk a bit about your process, how you create the textures and models?
  15. six_ten

    [WIP] Black Powder mod

    "Is the problem that all the getin commands are active in the useraction menu at the same time? or that you can jump from gun to gun? or both?" Yep. There's a list of all guns in the user menu, and also you cannot access the cannons from their getIn points. The only way to access any guns is to get in as driver or other cargo in vehicle, then move to a gun. From any gun you also get the full list of guns. When you eject or get out of a gun you land on the correct point, so I think some of it is working at least. " It might work that if you set it really low, only the memorypoints are then accessible if the circular action area is not in the way. Okay thanks! you've helped solve part of it -- I followed your suggestion, lowered the radius of the getIn points and they are now accessible! Now all that remains is to get rid of the list in the menu.
  16. six_ten

    Making a grenade

    Here you go -- class CfgPatches { class ART_Weapons_Grapple { units[] = {}; weapons[] = {"Throw_Grappling_Hook"}; requiredVersion = 0.1; requiredAddons[] = {"ART_Weapons"}; magazines[] = {"Mag_Grappling_Hook"}; ammo[] = {"Ammo_Grappling_Hook"}; }; }; class cfgAmmo { class Default; class Grenade : Default {}; class GrenadeHand : Grenade {}; class GrenadeHand_stone: GrenadeHand {}; class Ammo_Grappling_Hook: GrenadeHand_stone { model = "\ART\ART_Weapons\Grapple\Ammo_Grappling_Hook.p3d"; hit = 0.5; indirectHit = 0.2; indirectHitRange = 1; dangerRadiusHit = 6; suppressionRadiusHit = -1; CraterEffects = "NoCrater"; explosionEffects = "NoExplosion"; explosive = 0; soundHit[] = {"",1,1}; cost = 1; whistleDist = 0; timeToLive = 60; class CamShakeExplode { power = "(0*0.2)"; duration = "((round (0^0.5))*0.2 max 0.2)"; frequency = 20; distance = "((0 + 0^0.5)*8)"; }; class CamShakeHit { power = 5; duration = "((round (5^0.25))*0.2 max 0.2)"; frequency = 20; distance = 1; }; }; }; class cfgMagazines { class Default; // External class reference class CA_Magazine : Default {}; class HandGrenade : CA_Magazine {}; class HandGrenade_Stone: HandGrenade {}; class Mag_Grappling_Hook: HandGrenade_Stone { author = "gbs"; scope = 1; displayName = "Mag_Grappling_Hook"; value = 0.1; icon = "\ART\ART_Weapons\Data\UI\icon_Grappling_Hook_CA.paa"; picture = "\ART\ART_Weapons\Data\UI\pic_Grappling_Hook_CA.paa"; model = "ART\ART_Weapons\Grapple\Ammo_Grappling_Hook.p3d"; ammo = "Ammo_Grappling_Hook"; descriptionShort = "Mag_Grappling_Hook"; }; }; class cfgWeapons { class Default; class GrenadeLauncher : Default {}; class Throw : GrenadeLauncher {}; class Throw_Grappling_Hook: Throw { editorCategory = "EdCat_1776_Camp"; editorSubcategory = "EdSubCat_1776_FortField"; displayname = "Throw"; baseWeapon = "Throw_Grappling_Hook"; scope = 2; scopeCurator = 2; scopeArsenal = 2; muzzles[] = {"Muzzle_Grappling_Hook"}; class ThrowMuzzle: GrenadeLauncher { cursor = "EmptyCursor"; cursorAim = "throw"; sound[] = {"",0.00031622776,1}; reloadSound[] = {"",0.00031622776,1}; aiDispersionCoefX = 6; aiDispersionCoefY = 6; reloadTime = 0; magazineReloadTime = 2.5; enableAttack = 0; showEmpty = 0; autoReload = 1; modelOptics = ""; minRange = 10; minRangeProbab = 0.2; midRange = 45; midRangeProbab = 0.9; maxRange = 60; maxRangeProbab = 0.03; keepInInventory = 1; }; class Muzzle_Grappling_Hook: ThrowMuzzle { magazines[] = {"Mag_Grappling_Hook","Mag_Grappling_Hook","Mag_Grappling_Hook"}; }; }; }; //player addEventHandler ["Fired", {_this execVM "grapple.sqf"}];
  17. six_ten

    [WIP] Black Powder mod

    just thinking out loud here... I wonder if it is possible to move the AI aim target memory point in the ship via script -- something like if _SailDamageCoef < 0.5 then ... and move the point to be near the sail hitpoints, then when the _SailDamageCoef is bad enough to have slowed the enemy ship down significantly, move the point to the hull and crew, and switch ammo accordingly from bar or chain shot to ball and grape...
  18. six_ten

    [WIP] Black Powder mod

    I've been trying to fix this for days and just can't see why its not working -- can anyone spot why my gunner getin memory points arent working -- I have this long list (12) of turrets in the useraction menu, which I also want to remove -- i only want players to get in the turrets by walking up to the guns on deck and getting the option for that gun. Here's a labelled overhead view of the gundeck. 1. How do I activate the gunnergetIn points (as far as I can tell they're all correctly set and yes they exist in the memory LOD) 2. How do I get rid of the useraction text menu -- I only want players to access the cannons directly through the getIn points.
  19. six_ten

    [WIP] Black Powder mod

    You know, hiteffect sounds like it might work -- after all the engine must check surfaces for the effects. I'll dig into it. Thanks!
  20. six_ten

    [WIP] Black Powder mod

    Piracy just became possible in Black Powder. The ships don't use engines, they're sail-powered. I've just successfully tested a sail-damage modifier on the Bermuda Sloop and it works perfectly. I'm sailing along at 16 knots -- wind is on the beam (thats the best angle for the sloop) -- I entered SailingVessel setHitPointDamage ["HitMainSail", 0.25]; and it slows the ship to to 12 knots. setting damage to .5 slows me to 8 and a half knots. damage at .75 slows me to 5 knots. So a loaded merchant sloop is hauling cargo from Rum Point to Fishbone Island. You spot him and angle to intercept but he's too fast? Shoot his sails down and take that cargo! Now to figure out how to make chain and bar shot ammo so they do more sail and rigging damage than ordinary cannonballs. Anyone have any ideas how to make one particular kind of ammunition more effective against a certain kind of target?
  21. six_ten

    Napoleonic Era Addon's

    The Charleville looks nice. Do you have a good animation for the lock? Is there a delay between the lock snapping and the weapon firing?
  22. six_ten

    [WIP] Black Powder mod

    Overhauling the wind system at the moment.
  23. six_ten

    WRP File error

    Solution: Run ARMA3P. I hadn't done it since the latest update and this fixed it. Terrain processed just fine after.
×