Jump to content

Search the Community

Showing results for tags 'retexturing'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • BOHEMIA INTERACTIVE
    • BOHEMIA INTERACTIVE - NEWS
    • BOHEMIA INTERACTIVE - JOBS
    • BOHEMIA INTERACTIVE - GENERAL
  • FEATURED GAMES
    • Arma Reforger
    • Vigor
    • DAYZ
    • ARMA 3
    • ARMA 2
    • YLANDS
  • MOBILE GAMES
    • ARMA MOBILE OPS
    • MINIDAYZ
    • ARMA TACTICS
    • ARMA 2 FIRING RANGE
  • BI MILITARY GAMES FORUMS
  • BOHEMIA INCUBATOR
    • PROJECT LUCIE
  • OTHER BOHEMIA GAMES
    • ARGO
    • TAKE ON MARS
    • TAKE ON HELICOPTERS
    • CARRIER COMMAND: GAEA MISSION
    • ARMA: ARMED ASSAULT / COMBAT OPERATIONS
    • ARMA: COLD WAR ASSAULT / OPERATION FLASHPOINT
    • IRON FRONT: LIBERATION 1944
    • BACK CATALOGUE
  • OFFTOPIC
    • OFFTOPIC
  • Die Hard OFP Lovers' Club's Topics
  • ArmA Toolmakers's Releases
  • ArmA Toolmakers's General
  • Japan in Arma's Topics
  • Arma 3 Photography Club's Discussions
  • The Order Of the Wolfs- Unit's Topics
  • 4th Infantry Brigade's Recruitment
  • 11th Marine Expeditionary Unit OFFICIAL | 11th MEU(SOC)'s 11th MEU(SOC) Recruitment Status - OPEN
  • Legion latina semper fi's New Server Legion latina next wick
  • Legion latina semper fi's https://www.facebook.com/groups/legionlatinasemperfidelis/
  • Legion latina semper fi's Server VPN LEGION LATINA SEMPER FI
  • Team Nederland's Welkom bij ons club
  • Team Nederland's Facebook
  • [H.S.O.] Hellenic Special Operations's Infos
  • BI Forum Ravage Club's Forum Topics
  • Exilemod (Unofficial)'s General Discussion
  • Exilemod (Unofficial)'s Scripts
  • Exilemod (Unofficial)'s Addons
  • Exilemod (Unofficial)'s Problems & Bugs
  • Exilemod (Unofficial)'s Exilemod Tweaks
  • Exilemod (Unofficial)'s Promotion
  • Exilemod (Unofficial)'s Maps - Mission Files
  • TKO's Weferlingen
  • TKO's Green Sea
  • TKO's Rules
  • TKO's Changelog
  • TKO's Help
  • TKO's What we Need
  • TKO's Cam Lao Nam
  • MSOF A3 Wasteland's Server Game Play Features
  • MSOF A3 Wasteland's Problems & Bugs
  • MSOF A3 Wasteland's Maps in Rotation
  • SOS GAMING's Server
  • SOS GAMING's News on Server
  • SOS GAMING's Regeln / Rules
  • SOS GAMING's Ghost-Town-Team
  • SOS GAMING's Steuerung / Keys
  • SOS GAMING's Div. Infos
  • SOS GAMING's Small Talk
  • NAMC's Topics
  • NTC's New Members
  • NTC's Enlisted Members
  • The STATE's Topics
  • CREATEANDGENERATION's Intoduction
  • CREATEANDGENERATION's HAVEN EMPIRE (NEW CREATORS COMMUNITY)
  • HavenEmpire Gaming community's HavenEmpire Gaming community
  • Polska_Rodzina's Polska_Rodzina-ARGO
  • Carrier command tips and tricks's Tips and tricks
  • Carrier command tips and tricks's Talk about carrier command
  • ItzChaos's Community's Socials
  • Photography club of Arma 3's Epic photos
  • Photography club of Arma 3's Team pics
  • Photography club of Arma 3's Vehicle pics
  • Photography club of Arma 3's Other
  • Spartan Gamers DayZ's Baneados del Servidor
  • Warriors Waging War's Vigor
  • Tales of the Republic's Republic News
  • Operazioni Arma Italia's CHI SIAMO
  • [GER] HUSKY-GAMING.CC / Roleplay at its best!'s Starte deine Reise noch heute!
  • empire brotherhood occult +2349082603448's empire money +2349082603448
  • NET88's Twitter
  • DayZ Italia's Lista Server
  • DayZ Italia's Forum Generale

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Yahoo


Jabber (xmpp)


Skype


Biography


Twitter


Google+


Youtube


Vimeo


Xfire


Steam url id


Raptr


MySpace


Linkedin


Tumblr


Flickr


XBOX Live


PlayStation PSN


Origin


PlayFire


SoundCloud


Pinterest


Reddit


Twitch.Tv


Ustream.Tv


Duxter


Instagram


Location


Interests


Interests


Occupation

Found 8 results

  1. Attempting workaround for hidden selections that don't apply. (Think Huron, some CSAT vehicles, etc.) 1) Made new "TextureSources" class as a test for custom faction. 2) New class is obviously working in game and can be applied from list. 3) New class does not apply to vehicle by default despite being only item in list, defaults to original Sand texture from inherited vehicle. 4) Have to manually select new class for every vehicle put down in editor. Don't want to do that every time for multiple vehicles. 5) I want the vehicle to use new class as default when placed in editor. 6) Want to apply texture by default through CfgVehicles. Know this is possible because I did it years ago but lost the code. Must be an event handler in vehicle config with "BIS_fnc_initVehicle" function in "init =" or something? Looked at OEM configs and found nothing. No idea how to accomplish this because user is an artist and not a programmer. Help? class CfgVehicles { // Texture Vehicle class B_APC_Tracked_01_AA_F; class GGR_Test: B_APC_Tracked_01_AA_F { scope = 2; displayName = "[TEST]"; author = "Steve Sherber (GeeGeeRaffe)"; editorSubcategory = "EdSubcat_AAs"; faction = "GGR_F_USAF"; side = 1; crew = "B_crew_F"; typicalCargo[] = {"B_Soldier_F"}; hiddenSelections[] = {"camo1","camo2","camo3","CamoNet"}; // Define Custom Textures class TextureSources { class USAF_Woodland_APC_Tracked_01_AA { displayName = "USAF Woodland"; author = "Steve Sherber (GeeGeeRaffe)"; textures[] = {"A3\Armor_F_exp\APC_Tracked_01\Data\apc_tracked_01_aa_body_olive_co.paa","A3\Armor_F_exp\APC_Tracked_01\Data\mbt_01_body_olive_co.paa","A3\Armor_F_exp\APC_Tracked_01\Data\apc_tracked_01_aa_tower_olive_co.paa","a3\Armor_F\Data\camonet_NATO_Green_CO.paa"}; factions[] = {"GGR_F_USAF"}; }; textureList[] = {"USAF_Woodland_APC_Tracked_01_AA"}; }; // Vehicle Inventory class TransportItems{}; class TransportMagazines{}; class TransportWeapons{}; class TransportBackpacks{}; }; };
  2. Modeling, Retexturing Guides & Tutorials Compilation List Last Update: July 12th, 2022 This is a compilation of Modeling, and retexturing guides and tutorials for arma3, the list below is set in alphabetical order, there is no numerical order to the list, the numbers to the left of each number is only there as a an associative reference. This is what i found in my search, but there could be more, if you find or know of any not already on the list please let me know and i will add it. Modeling Guides & Tutorials [Tutoria] - Importing ArmA2 vehicles to ArmA3 [Tutorial] Basic model export from Maya to Oxygen 2 to Arma 3 [Tutorial] BI Sample Data Modding 102 - Intro to Static and Dynamic Objects in O2 [Tutorial] Bohemia Sample Data Modding 101 [Tutorial] New Oxygen2 Install Guide Aircraft Modelling Tutorials? Arma 3 Modding Characters Arma 3 Cars Config Guidelines Arma 3 Trees ARMA 3 Underwear modding guidelines Arma 3 Vegetation P3D Arma 3 Weapon Collimator Sights Custom Backpack Tutorial by STALKERGB DasParadoxon Gaming Blog: Arma 3 - How to import a blender model - Part 1 DasParadoxon Gaming Blog: Arma 3 - How to import a blender model - Part 2 DasParadoxon Gaming Blog: Arma 3 - How to import a blender model - Part 3 From Blender to ArmA 3 - Complete process tutorial Getting a 3D Model/Object into Arma 3 || Arma 3 Modeling Tut For NOOBS How to "zero" your gat and your scopes Importing Models from Blender and SketchUp LOD Model Config OPREP - VEHICLE CUSTOMIZATION | Dev Hub | Arma 3 Oxygen 2 - Manual RVMAT basics (SuperShader,MultiMaterial,SkinShader,Procedural etc) Simple O2 tutorials STALKERGB's Weighting overview User Animated Section of Model - Tutorial Using the FHQ Arma Toolbox for Blender – -FHQ- Visitor 3 Manual Retexturing Arma 3 Setting Textures for Wrecks Basic Retexturing Tutorial of Arma 3 content Character retexture guide by Scarecrow398 Help. Is there a simple guide on how to retexture? [Tutorial] Simple Re-texturing Guide (From Start To Finish) Credits This list goes out to those members of the community who took their time to create guides and tutorials for the subjects in this list, i would also hope that my list here will give these contributors more appreciation for their work and helping make our game here Awesome!
  3. Hey everyone, I got a real quick question. So, I've started making a lot of custom factions with the ORBAT tool, and I'm looking to create custom camo for different uniforms in order to make certain factions for my unit's campaigns. To get to the question itself, I've extracted the .paa file from the .pbo, I've converted it into a .png using TexView 2 from ArmA 3 Tools, and now I'm stuck at Photoshop since there are no templates that I've found I ran into a problem. I tried using Overlay to apply my camo to the .png, I removed the boots, belt, and whatnot using selection so they don't get affected. But my problem is this, whenever I apply my fairly bright camo to the darker variant from RHS, it darkens my camo, basically ruining it, the old camo is still very much so visible below it and all the little details like the folds and stretching in the clothing, where the clothing bundles up and the stitches all of it just is either barely visible or gone. From what I saw I seem to need a template to properly do this, so I can apply my camo over theirs, but I haven't found a template. I know people have managed to retexture before and I asked RHS but they say they can't provide the .PSD files which I completely understand. So is there a way for me to retexture this and how did the other people do it, since I was quite a few retextures both big mods and small private ones.
  4. Hi, I tried to do a mod with some retextured skins. The mod I used as a base worked bine, but the stats of the plate carriers were way off. They had no ballistic protection what soever. I tried to access the files but nothing would work. Even my friend who knows how to mod was unable to access it. (he's a map developer not an addon developer) Now comes the part where noone is going to help me: Could anyone please make this "mod" work? All I need is the config files because I failed miseabely at writing them myself. I am on the edge of just throwing everything into the bin and calling it a day. In the case anyone actually is going to help me, please write me and email and i will send you the files that I have. Have a great day neither way. E-mail: i123want123to123123die@gmail.com (Just so you know, that's a throwaway email adress)
  5. I have made a retextured version of a weapon, the KAC PDW by Robert Hammer. I want to make this into its own mod, or at least make it so that both my retextured version and the original version can be added into the game at the same time. Currently, when I add the original and the retextured version, the retextured version "overrides" the original, and it also does not let me add attachments or change the fire rate. I would be very grateful if someone knew how to fix this.
  6. I'm trying to retexture the AAF officer but I'm running into difficulties with my config. I've defined the hidden selections and the their locations but still my retexture fails to appear - I end up with an invisible chested guy (although the trousers appear). I've professionally (!) retextured original .paa file to a Grenadier Guard as one can see. I've posted my config below for anyone who can spot the issue. I apologize in advance for any obvious mistakes - this is my first shot at retexturing in A3! My config
  7. Up until now, I've been able to retexture plate carriers for NATO without a problem. However, after the Personal Protection update rolled out on devbranch, I haven't been able to change textures for the "V_PlateCarrier1_rgr", "V_PlateCarrier2_rgr", "V_PlateCarrierGL_rgr", and "V_PlateCarrierSpec_rgr". CfgWeapons_NATO: /// Vests class V_PlateCarrier1_rgr: Vest_NoCamo_Base { author = "$STR_A3_Bohemia_Interactive"; _generalMacro = "V_PlateCarrier1_rgr"; scope = 2; displayName = "$STR_A3_V_PlateCarrier1_rgr0"; picture = "\A3\characters_f\Data\UI\icon_V_plate_carrier_1_CA.paa"; model = "\A3\Characters_F\BLUFOR\equip_b_vest02"; descriptionShort = "$STR_A3_SP_AL_III"; hiddenSelections[] = {"camo"}; hiddenSelectionsTextures[] = {"\A3_Aegis_F\Aegis\characters\BLUFOR\data\vests_rgr_co.paa"}; class ItemInfo: VestItem { uniformModel = "\A3\Characters_F\BLUFOR\equip_b_vest02"; containerClass = "Supply140"; mass = 80; hiddenSelections[] = {"camo"}; class HitpointsProtectionInfo { class Chest { HitpointName = "HitChest"; Armor = 16; PassThrough = 0.3; }; class Diaphragm { HitpointName = "HitDiaphragm"; Armor = 16; PassThrough = 0.3; }; class Body { hitpointName = "HitBody"; passThrough = 0.3; }; }; }; }; class V_PlateCarrier1_mtp: V_PlateCarrier1_rgr { author = "$STR_A3_Night515"; _generalMacro = "V_PlateCarrier1_mtp"; displayName = "$STR_A3_V_PlateCarrier1_mtp0"; picture = "\A3\characters_f\Data\UI\icon_V_plate_carrier_1_mtp_CA.paa"; hiddenSelectionsTextures[] = {"\A3_Aegis_F\Aegis\characters\BLUFOR\data\vests_mcamo_co.paa"}; }; class V_PlateCarrier2_rgr: V_PlateCarrier1_rgr { author = "$STR_A3_Bohemia_Interactive"; _generalMacro = "V_PlateCarrier2_rgr"; scope = 2; displayName = "$STR_A3_V_PlateCarrier2_rgr0"; picture = "\A3\characters_f\Data\UI\icon_V_plate_carrier_2_CA.paa"; model = "\A3\Characters_F\BLUFOR\equip_b_vest01.p3d"; descriptionShort = "$STR_A3_SP_AL_IV"; hiddenSelections[] = {"camo"}; hiddenSelectionsTextures[] = {"\A3_Aegis_F\Aegis\characters\BLUFOR\data\vests_rgr_co.paa"}; class ItemInfo: VestItem { uniformModel = "\A3\Characters_F\BLUFOR\equip_b_vest01"; containerClass = "Supply140"; mass = 100; hiddenSelections[] = {"camo"}; class HitpointsProtectionInfo { class Chest { HitpointName = "HitChest"; Armor = 20; PassThrough = 0.2; }; class Diaphragm { HitpointName = "HitDiaphragm"; Armor = 20; PassThrough = 0.2; }; class Body { hitpointName = "HitBody"; passThrough = 0.2; }; }; }; }; class V_PlateCarrier2_mtp: V_PlateCarrier2_rgr { author = "$STR_A3_Night515"; _generalMacro = "V_PlateCarrier2_mtp"; displayName = "$STR_A3_V_PlateCarrier2_mtp0"; picture = "\A3\characters_f\Data\UI\icon_V_plate_carrier_2_mtp_CA.paa"; hiddenSelectionsTextures[] = {"\A3_Aegis_F\Aegis\characters\BLUFOR\data\vests_mcamo_co.paa"}; }; class V_PlateCarrierRecon_rgr: V_PlateCarrier1_rgr { author = "$STR_A3_Bohemia_Interactive"; _generalMacro = "V_PlateCarrierRecon_rgr"; scope = 2; picture = "\A3\characters_f\Data\UI\icon_V_plate_carrier_1_CA.paa"; displayName = "$STR_A3_V_PlateCarrier1_rgr_V_PlateCarrier_Kerry0"; model = "\A3\Characters_F_EPA\BLUFOR\equip_b_vest_kerry.p3d"; hiddenSelections[] = {"camo"}; hiddenSelectionsTextures[] = {"\A3_Aegis_F\Aegis\characters\BLUFOR\data\vests_rgr_co.paa"}; class ItemInfo: VestItem { uniformModel = "\A3\Characters_F_EPA\BLUFOR\equip_b_vest_kerry.p3d"; containerClass = "Supply120"; mass = 80; hiddenSelections[] = {"camo"}; }; }; class V_PlateCarrierRecon_mtp: V_PlateCarrierRecon_rgr { author = "$STR_A3_Night515"; _generalMacro = "V_PlateCarrierRecon_mtp"; displayName = "$STR_A3_V_PlateCarrierRecon_mtp0"; picture = "\A3\characters_f\Data\UI\icon_V_plate_carrier_1_mtp_CA.paa"; hiddenSelectionsTextures[] = {"\A3_Aegis_F\Aegis\characters\BLUFOR\data\vests_mcamo_co.paa"}; }; class V_PlateCarrierGL_rgr: Vest_NoCamo_Base { author = "$STR_A3_Bohemia_Interactive"; _generalMacro = "V_PlateCarrierGL_rgr"; scope = 2; displayName = "$STR_A3_V_PlateCarrierGL_rgr0"; picture = "\A3\Characters_F_Mark\Data\UI\icon_carrier_gl_rig_grn.paa"; model = "\A3\Characters_F\BLUFOR\equip_b_carrier_gl_rig.p3d"; overviewName = "$STR_B_SOLDIER_GL_F0"; overviewPicture = "\A3\Data_F_Mark\Images\watermarkInfo_page09_ca.paa"; descriptionShort = "$STR_A3_SP_ER"; hiddenSelections[] = {"camo"}; hiddenSelectionsTextures[] = {"\A3_Aegis_F\Aegis\characters\BLUFOR\data\carrier_gl_rig_rgr_co.paa"}; class ItemInfo: VestItem { uniformModel = "\A3\Characters_F\BLUFOR\equip_b_carrier_gl_rig.p3d"; containerClass = "Supply140"; mass = 100; hiddenSelections[] = {"camo"}; class HitpointsProtectionInfo { class Neck { hitpointName = "HitNeck"; armor = 8; passThrough = 0.5; }; class Arms { hitpointName = "HitArms"; armor = 8; passThrough = 0.5; }; class Chest { hitpointName = "HitChest"; armor = 94; passThrough = 0.6; }; class Diaphragm { hitpointName = "HitDiaphragm"; armor = 94; passThrough = 0.6; }; class Abdomen { hitpointName = "HitAbdomen"; armor = 16; passThrough = 0.3; }; class Pelvis { hitpointName = "HitPelvis"; armor = 16; passThrough = 0.3; }; class Body { hitpointName = "HitBody"; passThrough = 0.6; }; }; }; }; class V_PlateCarrierGL_mtp: V_PlateCarrierGL_rgr { author = "$STR_A3_Bohemia_Interactive"; _generalMacro = "V_PlateCarrierGL_mtp"; displayName = "$STR_A3_V_PlateCarrierGL_mtp0"; picture = "\A3\Characters_F_Mark\Data\UI\icon_carrier_gl_rig_mtp.paa"; DLC = "Mark"; hiddenSelectionsTextures[] = {"\A3_Aegis_F\Aegis\characters\BLUFOR\data\carrier_gl_rig_mcamo_co.paa"}; }; class V_PlateCarrierSpec_rgr: Vest_NoCamo_Base { author = "$STR_A3_Bohemia_Interactive"; _generalMacro = "V_PlateCarrierSpec_rgr"; scope = 2; displayName = "$STR_A3_V_PlateCarrierSpec_rgr0"; picture = "\A3\Characters_F_Mark\Data\UI\icon_carrier_spec_rig_grn.paa"; model = "\A3\Characters_F\BLUFOR\equip_b_carrier_spec_rig.p3d"; DLC = "Mark"; descriptionShort = "$STR_A3_SP_AL_V"; hiddenSelections[] = {"camo"}; hiddenSelectionsTextures[] = {"\A3_Aegis_F\Aegis\characters\BLUFOR\data\carrier_gl_rig_rgr_co.paa"}; class ItemInfo: VestItem { uniformModel = "\A3\Characters_F\BLUFOR\equip_b_carrier_spec_rig.p3d"; containerClass = "Supply100"; mass = 120; hiddenSelections[] = {"camo"}; class HitpointsProtectionInfo { class Neck { hitpointName = "HitNeck"; armor = 8; passThrough = 0.5; }; class Arms { hitpointName = "HitArms"; armor = 8; passThrough = 0.5; }; class Chest { hitpointName = "HitChest"; armor = 24; passThrough = 0.1; }; class Diaphragm { hitpointName = "HitDiaphragm"; armor = 24; passThrough = 0.1; }; class Body { hitpointName = "HitBody"; passThrough = 0.1; }; }; }; }; class V_PlateCarrierSpec_mtp: V_PlateCarrierSpec_rgr { author = "$STR_A3_Bohemia_Interactive"; _generalMacro = "V_PlateCarrierSpec_mtp"; displayName = "$STR_A3_V_PlateCarrierSpec_mtp0"; picture = "\A3\Characters_F_Mark\Data\UI\icon_carrier_spec_rig_mtp.paa"; DLC = "Mark"; hiddenSelectionsTextures[] = {"\A3_Aegis_F\Aegis\characters\BLUFOR\data\carrier_gl_rig_mcamo_co.paa"}; }; CfgWeapons: class CfgWeapons { class Uniform_Base; class UniformItem; class Vest_NoCamo_Base; class Vest_Camo_Base; class VestItem; class V_BandollierB_khk; class V_Chestrig_khk; class ItemCore; class HeadgearItem; class H_HelmetB_plain_mcamo; class H_Booniehat_khk_hs; class H_Cap_oli_hs; #include "CfgWeapons_CTRG.hpp" #include "CfgWeapons_GUER.hpp" #include "CfgWeapons_NATO.hpp" }; And CfgPatches: // Config class CfgPatches { class A3_Aegis_F_characters_BLUFOR { units[] = {}; weapons[] = {}; requiredVersion = 0.1; requiredAddons[] = {"A3_Characters_F","A3_Characters_F_beta","A3_Characters_F_Gamma","A3_Characters_F_Bootcamp","A3_Characters_F_EPA","A3_Characters_F_EPB","A3_Characters_F_EPC","A3_Characters_F_Mark"}; }; }; Anything I'm doing wrong?
  8. When applying text to a Strider template in Photoshop CS6, the text appeared correctly on one side and upside down on the other side in-game, however I found no fix to make both sides correctly orientated. Any help would be appreciated. Images: http://imgur.com/ogIiA8p,axUMElt,zR5ffNh#0 = shows template with text in photoshop http://imgur.com/ogIiA8p,axUMElt,zR5ffNh#1 = shows correctly orientated text http://imgur.com/ogIiA8p,axUMElt,zR5ffNh#2 = shows incorrectly orientated text
×