Jump to content

[aps]gnat

Member
  • Content Count

    6398
  • Joined

  • Last visited

  • Medals

  • Medals

Everything posted by [aps]gnat

  1. [aps]gnat

    Create Collision Model in O2

    I never bother trying to use an existing model. That level of detail is wasted on the Collision LOD (geometry lod). Its easiest made out of a series of standard "boxes" stretched and some overlapping to create the GENERAL shape of the main model. Don't forget to select FIND COMPONENTS once finished otherwise the lod won't work.
  2. [aps]gnat

    BI provided CaMSO - Cultivate The-Next-Big-Thing

    Well BI, if you want some momentum to the MAKE ARMA NOT WAR CONTEST then more than ever you should be providing CaMSO's And with prize money that big, surely you can be paying a few people/CaMSO's to help build this bright new future. The competition is after all aimed at creating The-Next-Big-Thing ...... .... and congrats on the whole DayZ thing BTW.
  3. [aps]gnat

    ship config pointers?

    Is this the "Geometry Phys" LOD or the "Geometry Buoyancy" LOD ? Both are available in the new O2 for ArmA3
  4. No, sorry, don't believe that will be related to your described problem. Proxies are generally HARDCODED into p3d's/models (via O2), so ......
  5. [aps]gnat

    ArmA 2 C-130J and MV-22 Redux

    Don't suppose you can define the FX point in a Resolution LOD, it produces "heat" and it can be animated .... ? Probably too much to ask for as a feature (of the game engine).
  6. [aps]gnat

    Kradnostrov Map for ArmA 3

    Terrain making is HUGELY time consuming and quite frankly ... boring at times. You really have to LOVE what youre doing, but as you can see from some User made terrain, the love can really shine through. Recommend you start with something small, a small sized terrain with a town and a forest. Get a feel for it. Theres plenty of simple things you'll learn (from mistakes etc) that will make your NEXT terrain 10x better. Read the various tutorials in the ArmA2 sections, and cross-fingers BI give us Visitor4 soon !
  7. [aps]gnat

    ship config pointers?

    Wow mankyle, thats one hell of a collection you've put together there ...... I'm now tempted to port a few ships :) Thanks!
  8. Impressive! ... does look like you "slip" rearwards during the re-load animation ?
  9. Well ...... Steam probably made most of that......
  10. [aps]gnat

    Not so fast...

    Agree. Certainly feel a good portion of makers will silently work on something, hoping to succeed by the closing next year. Raises many questions I'm sure. Like; X asks for (public) help to solve a problem. Y offers to help, spends 10 days back and forth working it out for X, gives it back to X. 12 months later it turns out X submitted it to competition and Y's contribution was a key feature. Is it OK? Is Y is entitles to remuneration if X's project wins a prize? Should X declare he/she is working on a Competition project when asking for assistance? Yes. Large dollars, seemingly TOO large for a largely rag-tag community. But, then again, DayZ stand-alone just made several $MM in little more than 48 hours ........... ! Every chance the prize will attract new, very professional start-ups, fast-tracking their learning of the engine and editing tools. Instead of stepping out on their own, seasoned scripters and/or addon makers could make a quick buck sub-contracting to these start-ups ......
  11. Can this be explained a little more, not sure I understand.
  12. [aps]gnat

    @A3MP - ArmA 3 Map Pack

    Bloody confusing.... So I gather this is a terrain pack, terrain from A2? The OP doesn't really clarify To me MAP = mission
  13. I've got it when I've tried to force a different class for inheriting. Eg, it was a Ship class, then I wanted to test briefly inheriting say a Car class. ..... I didn't explore any further.
  14. its weird, with AI in the turrets they are swinging the wrong direction and guns point to the sky ..... Works fine as a Player .... just the AI are doing odd stuff. ..... might have to see if this is a bug
  15. Yep, the later. Small works fine, i.e. my FSF. (Which I should "A3", so you have another (smaller) test craft) Huh? Whats the intersect commands? Booo ! Who wants to be fair :D lol They weren't listening back in A1 days :)
  16. Wow, DayZ Standalone and "walking on moving ships" on the same day! .... And they said it'd never happen. Well done MLNW, great start. HEY BI ! ... Are you lookin at this ... What's your excuse
  17. Maybe use these A2 files as a guide. A3 is little different. http://forums.bistudio.com/showthread.php?130929-Fixed-Wing-Multiple-Turrets-Testing-Bug
  18. [aps]gnat

    Textures not showing up on models in-game

    SOunds like your first project. You've picked something very difficult. Maybe start learning on something a little less difficult
  19. [aps]gnat

    Textures not showing up on models in-game

    I dont think its your config Based on that picture, likely you havent adjusted all the textures/texture paths and RVMAT definitions. Still pointing to A2 ones that dont exist ..... Black usually means a NOHQ problem.
  20. AWESOME Thanks Franze, a timely tutorial :D
  21. [aps]gnat

    ARMA 2 Frigate Port

    Or help us pester BI for a boat or ship Sample
  22. [aps]gnat

    Textures not showing up on models in-game

    Belongs in the Editing Section of the forums. Need more detail than you have provided. "Porting" obvious can have 1000's of details.
  23. [aps]gnat

    help with O2 LODS

    Use the PHP codes to post code Id suggest Try this. Rename you named selections to something thats easy to remember. GearLeft, GearRight, axisGearLeft, axisGearRight class CfgSkeletons { class Plane; class MY_Plane_Bones: Plane { isDiscrete=1; skeletonInherit = ""; skeletonBones[]= { "GearLeft","", "GearRight","" }; }; }; class CfgModels { class Plane; class THE-NAME-OF-MY-P3D-FILE: Plane { skeletonName = "MY_Plane_Bones"; sectionsInherit=""; sections[] = {"GearLeft","GearRight"}; class Animations { class MoveLeftGear { type="rotation"; source="gear"; selection="GearLeft"; axis="axisGearLeft"; memory=1; minValue=0; maxValue=1; angle0="rad 0"; angle1="rad +90"; }; class MoveRightGear { type="rotation"; source="gear"; selection="GearRight"; axis="axisGearRight"; memory=1; minValue=0; maxValue=1"; angle0="rad 0"; angle1="rad +90"; }; }; }; };
×