Results 1 to 2 of 2

Thread: Cannot find my model in editor

  1. #1
    Rookie
    Join Date
    Aug 3 2012
    Location
    Reykjavík, Iceland, Iceland
    Posts
    4

    Cannot find my model in editor

    Hey, I'm following this tutorial for OFP: http://ofp.gamepark.cz/_hosted/brsseb/tutorials.htm (the crate one).

    And the config reads as follows:

    Code:
    class CfgPatches
    {
    	class Crate
    	{
    		units[] = {Crate};
    		weapons[] = {};
    		requiredVersion = 1.0;
    	};
    };
    class CfgVehicles
    {
    	class All {};
    	class Static: All {};
    	class Building: Static {};
    	class NonStrategic: Building {};
    	class TargetTraining: NonStrategic {};
    	class TargetGrenade: TargetTraining {};
    	
    	class Crate: TargetGrenade
    	{
    		model="\crate\crate";
    		armor=20000;
    		scope=2;
    		displayName="My lovely crate";
    	}
    }
    However, in the editor, I can't find it in: 'Empty/objects'.

    I'm not sure where else to look. I placed the .PBO in: C:\Program Files (x86)\Steam\SteamApps\common\arma 2 operation arrowhead\Expansion\Addons

    I also tried to place it in an @addon (random addon) AddOns folder but that didn't help either.

    Any help appreciated, thanks!

  2. #2
    Man are you in awesome luck! I just finished the tutorial you did under 2 days ago, and had the same issue (I used Arma 2 but, not an issue).

    This is the config file that will work (Thanks to PVPScene)

    PHP Code:
    class CfgPatches
    {
        class 
    YourTag_Crate
        
    {
            
    units[] = {"YourTag_Crate"};
            
    weapons[] = {};
            
    requiredVersion 0.1;
            
    requiredAddons[] = {"CAData"};
        };
    };
    class 
    CfgVehicles
    {
        class 
    Thing;
        class 
    YourTag_CrateThing
        
    {
            
    scope 2;
            
    displayName "LOLOLOL";
            
    model "\YourTag_crate\YourTag_crate.p3d";
            
    armor 20000;
        };
    }; 


    ---------- Post added at 18:40 ---------- Previous post was at 18:38 ----------

    Also, sir. You posted this in Arma (Original) forums. Since you have CO, It would have been ideal to check the A2 Editing section, where this exact fix is! But none the less, good luck. I felt awesome when I finished the tut and had a working model haha.

    https://dl.dropbox.com/u/23389642/ar...9-21-47-90.png (786 kB)

Similar Threads

  1. Where can I find chemlights in the editor?
    By Azimov in forum ARMA : MAP EDITING (VISITOR)
    Replies: 2
    Last Post: Jul 12 2012, 23:00
  2. Replies: 3
    Last Post: Jul 8 2012, 01:30
  3. Where can I find a parachute in editor?
    By RT_NR in forum IRON FRONT: LIBERATION 1944 - MISSIONS - Editing & Scripting
    Replies: 0
    Last Post: Jul 7 2012, 17:48
  4. Can't find CH-47 in the editor
    By finguide in forum ARMA 2 & OA : MISSIONS - Editing & Scripting
    Replies: 2
    Last Post: Dec 29 2011, 12:49
  5. Where can i find a model maker thingy
    By Sabor_Wolf in forum ADDONS & MODS: COMPLETE
    Replies: 5
    Last Post: Feb 15 2002, 06:31

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •