Conan Exiles Wiki
No edit summary
Tags: Mobile edit Mobile web edit
(→‎LuzipherMST: Added one more german Tutorial)
Tag: Visual edit
(42 intermediate revisions by 8 users not shown)
Line 1: Line 1:
  +
{{Stub}}
  +
 
{{Guide infobox
 
{{Guide infobox
 
| levels = Modding
 
| levels = Modding
Line 4: Line 6:
 
}}
 
}}
 
{{tocright}}
 
{{tocright}}
:''See also: [[Guide#Modding|Guide]], [[Useful links]].''
+
:''See also: [[Guide#Modding]], [[Useful links]].''
 
A list of useful links for [[modding]] related [[guide]]s and useful links.
 
A list of useful links for [[modding]] related [[guide]]s and useful links.
   
 
==General==
 
==General==
* Community members have set up a [https://discord.gg/66jB9dN modding discord]. Please read the rules when you join!
+
* Community members have set up a [[Useful links|modding discord]]. Please read the rules when you join!
  +
   
  +
* [https://docs.google.com/document/d/1BV9OGwnOn-1jxfTw3vX5S_taNQySpAvZ8Lb1oBTOurY/edit# CE Modder's Field Manual] by Dr. Nash
   
 
* [https://www.dropbox.com/s/qp0u3bj9ork0v93/AllGuides.zip?dl=0 Robtheswede - All Guides, Dropbox]
 
* [https://www.dropbox.com/s/qp0u3bj9ork0v93/AllGuides.zip?dl=0 Robtheswede - All Guides, Dropbox]
 
:''This is a link to all guides maintained by Robtheswede (DevKit developer).<br>Most of these are not yet documented on the wiki, but are listed on the [[Guide#Modding|Guide]] page. Feel free to contribute them!''
 
:''This is a link to all guides maintained by Robtheswede (DevKit developer).<br>Most of these are not yet documented on the wiki, but are listed on the [[Guide#Modding|Guide]] page. Feel free to contribute them!''
   
* [https://steamcommunity.com/groups/conanexilesclienttools Conan Exiles Client Tools] <sup>([https://steamcommunity.com/groups/conanexilesclienttools Steam] - [https://discord.gg/CfhuUaF Discord])</sup>
+
* [https://steamcommunity.com/groups/conanexilesclienttools Conan Exiles Client Tools] <sup>([https://steamcommunity.com/groups/conanexilesclienttools Steam] - [https://discord.com/invite/CfhuUaF Discord])</sup>
 
:Created to replace and solve some problems with Conan Exiles in-game mod options
 
:Created to replace and solve some problems with Conan Exiles in-game mod options
   
Line 24: Line 28:
 
==Unreal Engine==
 
==Unreal Engine==
 
* [https://wiki.unrealengine.com/An_Introduction_to_UE4_Plugins An Introduction to UE4 Plugins - UE Wiki]
 
* [https://wiki.unrealengine.com/An_Introduction_to_UE4_Plugins An Introduction to UE4 Plugins - UE Wiki]
* [https://academy.unrealengine.com/Browse/game-development Game development - UE Academy]
+
* [https://www.unrealengine.com/en-US/onlinelearning-courses| UE4 Online Learning Courses]
 
* [https://www.youtube.com/user/UnrealDevelopmentKit/search?query=tutorial Tutorials - UE, YouTube]
 
* [https://www.youtube.com/user/UnrealDevelopmentKit/search?query=tutorial Tutorials - UE, YouTube]
   
Line 51: Line 55:
 
* Blueprint: movable widget code by Dragoonduneman ([https://blueprintue.com/blueprint/mmc5s28r/ Part 1] - [https://blueprintue.com/blueprint/y77h-jku/ Part 2] - [https://blueprintue.com/blueprint/02nqi80_/ Part 3])
 
* Blueprint: movable widget code by Dragoonduneman ([https://blueprintue.com/blueprint/mmc5s28r/ Part 1] - [https://blueprintue.com/blueprint/y77h-jku/ Part 2] - [https://blueprintue.com/blueprint/02nqi80_/ Part 3])
 
* Blueprint: [https://blueprintue.com/blueprint/9iwkwvya/ Fluid filling object] by Dragoonduneman. (No mesh editing required)
 
* Blueprint: [https://blueprintue.com/blueprint/9iwkwvya/ Fluid filling object] by Dragoonduneman. (No mesh editing required)
  +
* Blueprint: [https://blueprintue.com/blueprint/3129yy14/ Custom Weight table search] by Beherrit
  +
:I created my own datatable structure and wrote a search function for it.<br/>I included it in my own function library for reuse.<br/>It works on the same principle as the CE weight table.
  +
* Blueprint: [https://blueprintue.com/blueprint/f81ve8uw/ Work around for learning X feat then blocking X feat(s): Consumable version] by Beherrit
  +
:There is an Array you add multiple "Feats" in.<br/>The TemplateID is the Feat you want to learn when using this consumable.<br/>When you use the consumable it checks if you have already learned the feats in the Array or consumable.<br/>If you have not you learn the feat from the consumable.<br/>When you use the other feats in this array it will say "You already learned feats from this" or something along that.
 
* [https://cdn.discordapp.com/attachments/280392515625025537/573957171709083698/BP_MoveableMenu.uasset BP_MoveableMenu.uasset] by dougy
 
* [https://cdn.discordapp.com/attachments/280392515625025537/573957171709083698/BP_MoveableMenu.uasset BP_MoveableMenu.uasset] by dougy
 
<tabber>
 
<tabber>
Line 58: Line 66:
   
 
Workflow=
 
Workflow=
I created a new Widget, and set it up so the root and canvaspanel were visible, and created 3 borders that were variables. On each of the borders I binded an event to On Mouse Down and all it did was get the drag offset and set value of a variable I made called "Currently Dragging" which was a reference to a content widget. Here's an example of what the event bind looks like:
+
I created a new Widget and set it up so the root and canvaspanel were visible and created 3 borders that were variables. On each of the borders I binded an event to On Mouse Down and all it did was get the drag offset and set value of a variable I made called "Currently Dragging" which was a reference to a content widget. Here's an example of what the event bind looks like:
   
 
https://gyazo.com/59e443cb6613de1ec41e368e1ffd6daa
 
https://gyazo.com/59e443cb6613de1ec41e368e1ffd6daa
Line 80: Line 88:
 
* [https://github.com/MajinCry/ConanExilesDataTableParser/releases/tag/1.0 ConanExilesDataTableParser] by FiftyTifty.
 
* [https://github.com/MajinCry/ConanExilesDataTableParser/releases/tag/1.0 ConanExilesDataTableParser] by FiftyTifty.
 
:A program which allows you to automate replacing item ID's for a recipe's ingredients.
 
:A program which allows you to automate replacing item ID's for a recipe's ingredients.
* [https://cdn.discordapp.com/attachments/280392515625025537/623539394938273813/Conan_Masking_Group.spsm ConanMaskingGroup] by WaffleButter.
+
* [https://cdn.discordapp.com/attachments/280392515625025537/623539394938273813/Conan_Masking_Group.spsm ConanMaskingGroup] by Ephraim.
 
:A smart material for substance painter to help with tint masking. It adds colors so that you don't need to change the viewport channel to see your user masks. Before exporting your maps, move it to the bottom of your layer stack so that the colors don't bleed into your maps.
 
:A smart material for substance painter to help with tint masking. It adds colors so that you don't need to change the viewport channel to see your user masks. Before exporting your maps, move it to the bottom of your layer stack so that the colors don't bleed into your maps.
 
* [https://www.dropbox.com/s/bbzg8q0soj27wvc/blood_for_substance_heightmap_2.png?dl=0 The Blood .PNG file used internally to apply blood to weapons].
 
* [https://www.dropbox.com/s/bbzg8q0soj27wvc/blood_for_substance_heightmap_2.png?dl=0 The Blood .PNG file used internally to apply blood to weapons].
Line 150: Line 158:
 
Description=
 
Description=
 
Includes 5 features which make uploading to the workshop easier.
 
Includes 5 features which make uploading to the workshop easier.
  +
|-|
 
 
Features=
 
Features=
 
# Uploads new/updates workshop items
 
# Uploads new/updates workshop items
Line 166: Line 174:
 
:Unzip and drop in your local folder. All the magic happens in the construction script, but you can use the code in normal event graph etc.
 
:Unzip and drop in your local folder. All the magic happens in the construction script, but you can use the code in normal event graph etc.
 
:Scripts can also be used to change colors that are not normally changeable with dyes.
 
:Scripts can also be used to change colors that are not normally changeable with dyes.
  +
----
  +
[[File:RenderMapToHDR 1.png|200px|right|thumb|Scene Capture Interface for RenderMapToHDR.]]
  +
[[File:RenderMapToHDR 2.gif|200px|right|thumb|Offsetted render example of the Conan Exile default map for RenderMapToHDR.]]
  +
* [https://cdn.discordapp.com/attachments/273869365353644032/633761589677522975/RenderMapToHDR.zip RenderMapToHDR.zip]
  +
<tabber>
  +
Description=
  +
Renders maps in HDR.
  +
:''Warning! Requires a pretty decent PC and assumes your map is the same size as the conan exile map (806400 {-403200}, {403200}).''
  +
|-|
  +
RenderMaps=
  +
<code>RenderMap_8x8_Heat_4096</code>
  +
:Can be used as a guide when creating your heatmap (Use TempCalc.zip - also listed here).
  +
  +
<code>RenderMap_8x8_Offset_4000</code>
  +
:Will create a temporary map image you can use as a template to create your map image (T_FullscreenMap).
  +
|-|
  +
How-To=
  +
# Copy both blueprints to your local folder.
  +
# Create 2 "RenderTargets" (Materials & Textures->Render Target), 1 4000x4000, 1 4096x4096.
  +
# Open "RenderMap_8x8_Offset_4000" and set the 4000x4000 render target to the "Texture Target" of the SceneCaptureComponent2D. '''Or''', Open "RenderMap_8x8_Heat_4096" and set the 4096x4096 render target to the "Texture Target" of the SceneCaptureComponent2D.
  +
# Temporarily disable level streaming in the viewport "Viewport->Advanced Settings->Stream Levels Automatically When Camera Is Moved" should be unchecked.
  +
# load your map and set "all" heightmaps to be displayed (you should be able to see your whole map).
  +
# Drag the 2 blueprints into your level.
  +
  +
:It should also be noted, when you render your map you will probably want to switch the water out for something a little more suited, easier to see, no movement (waves) etc, your maps origin point should also be 0, 0, for more serious reasons other then just rendering the map.
  +
</tabber>
   
 
==Guides==
 
==Guides==
 
{{Main|Guide#Modding}}
 
{{Main|Guide#Modding}}
  +
 
* [https://www.youtube.com/watch?v=WZq-Y2Gn8OM DevKit Tutorial Vol. 1] playlist by RingerVulpe.
 
* [https://www.youtube.com/playlist?list=PLPbvA3wqExBIc2SnfC0idnH3jwP8GEwZc Tuto FR] playlist by swefpifh (FR)
 
* [https://cdn.discordapp.com/attachments/280392515625025537/402225370763493377/Setting_up_UE4_Conan_DevKit_to_use_Git_on_Win10_v1.pdf Setting up UE4 Conan DevKit to use Git on Win10 v1] PDF by Bumble.
 
* [https://cdn.discordapp.com/attachments/280392515625025537/402225370763493377/Setting_up_UE4_Conan_DevKit_to_use_Git_on_Win10_v1.pdf Setting up UE4 Conan DevKit to use Git on Win10 v1] PDF by Bumble.
* [https://cdn.discordapp.com/attachments/280392515625025537/458628637957292042/CE_Dev_Kit_Tutorial_-_Mask_Layers.pdf CE Dev Kit Tutorial - Mask Layers] PDF by Dr.Nash.
+
* [https://cdn.discordapp.com/attachments/280392515625025537/458628637957292042/CE_Dev_Kit_Tutorial_-_Mask_Layers.pdf CE Dev Kit Tutorial - Mask Layers] PDF by Dr. Nash.
  +
* [https://cdn.discordapp.com/attachments/280392515625025537/630814909147381762/WaffleButters_Abridged_UE4_io_Guide.pdf WaffleButter's Abridged IO Guide] PDF by WaffleButter.
  +
:A shortened guide on meshes brought into Blender from the DevKit.
 
* [https://cdn.discordapp.com/attachments/280392515625025537/453230823345487892/Creating_Clothing_in_CE_1.1.pdf Creating Clothing in CE] PDF by Wulfhere.
 
* [https://cdn.discordapp.com/attachments/280392515625025537/453230823345487892/Creating_Clothing_in_CE_1.1.pdf Creating Clothing in CE] PDF by Wulfhere.
 
* [https://cdn.discordapp.com/attachments/273869403186266112/622121261094666273/Clothing_Primer.pdf Clothing Primer] PDF by Ephraim.
 
* [https://cdn.discordapp.com/attachments/273869403186266112/622121261094666273/Clothing_Primer.pdf Clothing Primer] PDF by Ephraim.
 
* [https://docs.google.com/document/d/19BdgQW4_qvIpYi5qyB-MGA5OBrQy-y_6atPMmP-TD2g/edit?usp=sharing Custom Armor Easy Mode] by Darmok.
 
* [https://docs.google.com/document/d/19BdgQW4_qvIpYi5qyB-MGA5OBrQy-y_6atPMmP-TD2g/edit?usp=sharing Custom Armor Easy Mode] by Darmok.
 
* [https://www.youtube.com/watch?v=ozhTK1mr9V8 Custom Bows using Conan Exiles Dev Kit] by VALR.
 
* [https://www.youtube.com/watch?v=ozhTK1mr9V8 Custom Bows using Conan Exiles Dev Kit] by VALR.
* [https://www.youtube.com/watch?v=ml_Wwj4Ah_g Conan Exile Mod - Doorbell Example] by EZee_AP (Michael Craig)
+
* [https://www.dropbox.com/s/miijrw5m0wioiys/Creating%20A%20Shop%20Mod.pdf?dl=0 Creating A Shop With Custom Currency] PDF by Sylian.
  +
* [https://www.youtube.com/watch?v=ml_Wwj4Ah_g Conan Exile Mod - Doorbell Example] by EZee_AP (Michael Craig).
  +
* [https://cdn.discordapp.com/attachments/546345165447626785/780692006887751680/tut.zip How to get an item in the world] ZIP by Shryke.
 
:Works with doors / gates. ([https://cdn.discordapp.com/attachments/280392515625025537/608191074543992842/Doorbell.zip Doorbell.zip])
 
:Works with doors / gates. ([https://cdn.discordapp.com/attachments/280392515625025537/608191074543992842/Doorbell.zip Doorbell.zip])
 
* Playing anims -simple emotes- using the mod controller (without editing anim bp): [https://www.youtube.com/watch?v=kxEGm7peuHY video] - [https://cdn.discordapp.com/attachments/273869517455622144/598281544234303630/RPS.zip Rock, Paper, Scissors example] by EZee_AP.
 
* Playing anims -simple emotes- using the mod controller (without editing anim bp): [https://www.youtube.com/watch?v=kxEGm7peuHY video] - [https://cdn.discordapp.com/attachments/273869517455622144/598281544234303630/RPS.zip Rock, Paper, Scissors example] by EZee_AP.
* [https://www.youtube.com/watch?v=WZq-Y2Gn8OM DevKit Tutorial Vol. 1] playlist by RingerVulpe.
+
* [https://www.youtube.com/watch?v=RKNjuA6yhO8 Designing Blueprints the proper way in UE4] by Raymond Cripps.
* [https://www.youtube.com/playlist?list=PLPbvA3wqExBIc2SnfC0idnH3jwP8GEwZc Tuto FR] playlist by swefpifh (FR)
 
* [https://www.youtube.com/watch?v=RKNjuA6yhO8 Designing Blueprints the proper way in UE4] by Raymond Cripps
 
 
* [https://www.youtube.com/watch?v=UX4uNpWepEo UE4 quick tutorial: Custom collision from Blender] by Alen Loeb.
 
* [https://www.youtube.com/watch?v=UX4uNpWepEo UE4 quick tutorial: Custom collision from Blender] by Alen Loeb.
* [https://cdn.discordapp.com/attachments/280392515625025537/551745874657673216/Reflective_Modding_Documentation.pdf Reflective Modding Documentation] by Ephraim.
+
* [https://cdn.discordapp.com/attachments/280392515625025537/551745874657673216/Reflective_Modding_Documentation.pdf Reflective Modding Documentation] PDF by Ephraim.
 
:For anyone starting to go for fully custom models on their mod, this might help to gain some prior experience on the matter.
 
:For anyone starting to go for fully custom models on their mod, this might help to gain some prior experience on the matter.
* [https://www.youtube.com/watch?v=4BF-_8_bDDo UE4 tips: texture offset, rotate, mirror and tilling]
+
* [https://www.youtube.com/watch?v=4BF-_8_bDDo UE4 tips: texture offset, rotate, mirror and tilling] by M. Kaddouri.
 
* [http://www.jesskamstra.com/tutorial/apex-clothing-tutorial Nvidia Apex - Clothing Tutorial: From Maya to Unreal] by Jessica Kamstra.
 
* [http://www.jesskamstra.com/tutorial/apex-clothing-tutorial Nvidia Apex - Clothing Tutorial: From Maya to Unreal] by Jessica Kamstra.
 
* [http://golaem.com/content/doc/golaem-crowd-documentation/cloth-simulation-using-nvidia-apex Nvidia Apex - Cloth simulation] by Golaem.
 
* [http://golaem.com/content/doc/golaem-crowd-documentation/cloth-simulation-using-nvidia-apex Nvidia Apex - Cloth simulation] by Golaem.
 
:Setting up character volumes.
 
:Setting up character volumes.
* [https://cdn.discordapp.com/attachments/280392515625025537/547982214323896330/Maya_-_apex_workflow.pdf Maya - Apex workflow] by Ephraim.
+
* [https://cdn.discordapp.com/attachments/280392515625025537/547982214323896330/Maya_-_apex_workflow.pdf Maya - Apex workflow] PDF by Ephraim.
 
:An additional view on the whole armor creation process. Focused on Apex in Maya.
 
:An additional view on the whole armor creation process. Focused on Apex in Maya.
* [https://cdn.discordapp.com/attachments/280392515625025537/574222111397117954/Translation-How-To-v1.2.pdf Translation How To (v1.2)] by Senja.
+
* [https://cdn.discordapp.com/attachments/280392515625025537/631212024956977152/What_is_Replication_and_what_is_a_RPC.pdf What is Replication and what is a RPC] PDF by Void.
  +
* [https://cdn.discordapp.com/attachments/280392515625025537/574222111397117954/Translation-How-To-v1.2.pdf Translation How To (v1.2)] PDF by Senja.
  +
* [https://drive.google.com/file/d/1ezRwvALkM7exLrNPPAQLk0D5GnstZBBu/view?usp=sharing World Design] PDF by ContrastX.
  +
  +
===Robtheswede===
  +
Quickies.<ref>[https://www.dropbox.com/s/qp0u3bj9ork0v93/AllGuides.zip?dl=0&file_subpath=%2FQuickies "Quickies" Robtheswede, Dropbox]</ref>
  +
* [https://www.dropbox.com/s/qp0u3bj9ork0v93/AllGuides.zip?dl=0&file_subpath=%2FQuickies%2FAddMoreCraftResultsFromThrallTiers.jpg AddMoreCraftResultsFromThrallTiers.jpg]
  +
* [https://www.dropbox.com/s/qp0u3bj9ork0v93/AllGuides.zip?dl=0&file_subpath=%2FQuickies%2FAddingFeatsOnLearningBasegameFeatsNonInstrusive.jpg AddingFeatsOnLearningBasegameFeatsNonInstrusive.jpg]
  +
* [https://www.dropbox.com/s/qp0u3bj9ork0v93/AllGuides.zip?dl=0&file_subpath=%2FQuickies%2FAffect+Gravity.PNG Affect Gravity.PNG]
  +
* [https://www.dropbox.com/s/qp0u3bj9ork0v93/AllGuides.zip?dl=0&file_subpath=%2FQuickies%2FBuff+Function+Reference.PNG Buff Function Reference.PNG]
  +
* [https://www.dropbox.com/s/qp0u3bj9ork0v93/AllGuides.zip?dl=0&file_subpath=%2FQuickies%2FDisplaying+Lore+Popup+and+Writable+Note.jpg Displaying Lore Popup and Writable Note.jpg]
  +
* [https://www.dropbox.com/s/qp0u3bj9ork0v93/AllGuides.zip?dl=0&file_subpath=%2FQuickies%2FFlight+through+buffs.jpg Flight through buffs.jpg]
  +
* [https://www.dropbox.com/s/qp0u3bj9ork0v93/AllGuides.zip?dl=0&file_subpath=%2FQuickies%2FMake+an+actor+move+when+touching+it.jpg Make an actor move when touching it.jpg]
  +
* [https://www.dropbox.com/s/qp0u3bj9ork0v93/AllGuides.zip?dl=0&file_subpath=%2FQuickies%2FMake+texts+appear.PNG Make texts appear.PNG]
  +
* [https://www.dropbox.com/s/qp0u3bj9ork0v93/AllGuides.zip?dl=0&file_subpath=%2FQuickies%2FSingleBlueprintForAllSimplePlaceables.jpg SingleBlueprintForAllSimplePlaceables.jpg]
   
 
===Death2Mongo (DeadlyMidnight)===
 
===Death2Mongo (DeadlyMidnight)===
Line 198: Line 251:
 
* [https://www.youtube.com/watch?v=grfvYJPuAhU Part 3: Events and functions]
 
* [https://www.youtube.com/watch?v=grfvYJPuAhU Part 3: Events and functions]
 
* [https://www.youtube.com/watch?v=-rHTkYt6RMs Advanced: Creating The Sharables Mod] (Example)
 
* [https://www.youtube.com/watch?v=-rHTkYt6RMs Advanced: Creating The Sharables Mod] (Example)
  +
  +
===FireSpark81===
  +
''Pulled from [https://www.youtube.com/watch?v=HSAOIW9Jso4&list=PL3nJ9IXHJXaCm0SdwCRbcsEdqMVqepAM8 this playlist].''
  +
* [https://www.youtube.com/watch?v=HSAOIW9Jso4 Custom Server Mod]
  +
* [https://www.youtube.com/watch?v=6STbyD8EO4A Custom Potions]
  +
* [https://www.youtube.com/watch?v=2f3SDrbXCmU Edit Player Stats]
   
 
===HellsSauna (Hellsbreath)===
 
===HellsSauna (Hellsbreath)===
Line 212: Line 271:
   
 
===JustHorse===
 
===JustHorse===
* [https://www.youtube.com/watch?v=F5cTVXAZw8Q how to make map]
+
* [https://www.youtube.com/watch?v=F5cTVXAZw8Q How to make map]
* [https://www.youtube.com/watch?v=7EvvO2zeddg how to make night and day cycle]
+
* [https://www.youtube.com/watch?v=7EvvO2zeddg How to make night and day cycle]
* [https://www.youtube.com/watch?v=_8PfbHfqx0Y How to make The Real Map (SubLevels)]
+
* [https://www.youtube.com/watch?v=_8PfbHfqx0Y How to make the real map (SubLevels)]
  +
* [https://www.youtube.com/watch?v=k1zYBb8m2BQ How to make water]
  +
  +
===Sebastian Walter (Uruk)===
  +
German (DE).
  +
* [https://www.youtube.com/watch?v=CzvBH8mVfzg eine neue Karte erstellen und ins Spiel übertragen]
  +
* [https://www.youtube.com/watch?v=BnkerJX9gs0 Landschaftstexturen - Landscape textures]
  +
* [https://www.youtube.com/watch?v=mG2IdvRxJ4E NPC erstellen]
  +
  +
===Snowhunter===
  +
* [https://www.youtube.com/watch?v=bKleutflaSc Basic Dungeon Creation]
  +
* [https://www.youtube.com/watch?v=ZPeMnB2Lz-Y Basic Dungeon Creation Part 2]
  +
* [https://www.youtube.com/watch?v=HSbmIJm8Ais Water Volumes Physics]
  +
* [https://www.youtube.com/watch?v=eFZeZMBsEI4 Basic NPC Placement]
  +
  +
===TheBigBadBusch===
  +
* [https://www.youtube.com/watch?v=wqGCpUmeUL8 Advanced Weapon Tutorial]
  +
* [https://www.youtube.com/watch?v=vwy0e7q6VQ4 Armor]
  +
* [https://www.youtube.com/watch?v=LNHrPUuMfjA Intro to Understanding Nodes: Custom Buffs]
  +
  +
===LuzipherMST===
  +
German (DE).
  +
* [https://www.youtube.com/watch?v=HdPwCe_ECc0 Kapitel 1: DevKit Grundlagen (Map Erstellung)]
  +
* [https://www.youtube.com/watch?v=XjhYgFWp2LY Kapitel 2: Levels & Landschaften (Map Erstellung)]
  +
* [https://www.youtube.com/watch?v=T1VMcUYxOCo Kapitel 3: Assets & Foliages (Map Erstellung)]
  +
* [https://www.youtube.com/watch?v=A3BvvAAyeeQ Kapitel 4: Wasser & Flüsse (Map Erstellung)]
  +
* [https://www.youtube.com/watch?v=URQlADbj6wU Kapitel 5: NPC's & Camps (Map Erstellung)]
  +
*[https://youtu.be/5Jd_sCPApuA Kapitel 6: Höhlen / Caves (Map Erstellung)]
   
 
==Tips n' Tricks==
 
==Tips n' Tricks==
 
[[File:Testing mods on multiplayer 1.png|200px|right|thumb|Click the little button beside Play and tick Run Dedicated Server.]]
 
[[File:Testing mods on multiplayer 1.png|200px|right|thumb|Click the little button beside Play and tick Run Dedicated Server.]]
 
[[File:Testing mods on multiplayer 2.png|200px|right|thumb|Increase the number of clients if you want to see it from two perspectives.]]
 
[[File:Testing mods on multiplayer 2.png|200px|right|thumb|Increase the number of clients if you want to see it from two perspectives.]]
* If you want to test mods in multiplayer you can click the little button beside Play and tick Run Dedicated Server, And increase the number of clients if you want to see it from two perspectives.<ref>Cheese#0001, Modding discord - February 13, 2017</ref>
+
* If you want to test mods in multiplayer you can click the little button beside Play and tick Run Dedicated Server and increase the number of clients if you want to see it from two perspectives.<ref>Cheese#0001, Modding discord - February 13, 2017</ref>
 
* How to move a devkit installation:
 
* How to move a devkit installation:
 
# close the devkit and the epic launcher
 
# close the devkit and the epic launcher
Line 245: Line 331:
 
<references/>
 
<references/>
   
[[Category:Modding]] [[Category:Guides]]
+
[[Category:Modding]]
  +
[[category:Guides]]

Revision as of 09:34, 24 April 2021


This article is a stub. You can help Conan Exiles Wiki by expanding it.

Modding/Useful links
Levels: Modding
Author: Robtheswede
See also: Guide#Modding, Useful links.

A list of useful links for modding related guides and useful links.

General

  • Community members have set up a modding discord. Please read the rules when you join!


This is a link to all guides maintained by Robtheswede (DevKit developer).
Most of these are not yet documented on the wiki, but are listed on the Guide page. Feel free to contribute them!
Created to replace and solve some problems with Conan Exiles in-game mod options


Unreal Engine



Tools

Compresses pak files on cook.
If all is correct you should get something like this in your output:
"##Hi, Joshtech here. Just going to step in and perform magic on this pak file. kk thx##"
Allows for bulk scanning of mod pak files to gather which funcom assets they "touch".
An example of its use would be to place the executable and UnrealPak.exe in your workshop directory.
All scans are recorded within a timestamped output log.
An excellent sharing of blueprint utility for UE
I created my own datatable structure and wrote a search function for it.
I included it in my own function library for reuse.
It works on the same principle as the CE weight table.
There is an Array you add multiple "Feats" in.
The TemplateID is the Feat you want to learn when using this consumable.
When you use the consumable it checks if you have already learned the feats in the Array or consumable.
If you have not you learn the feat from the consumable.
When you use the other feats in this array it will say "You already learned feats from this" or something along that.

Asset for draggable UI.

I created a new Widget and set it up so the root and canvaspanel were visible and created 3 borders that were variables. On each of the borders I binded an event to On Mouse Down and all it did was get the drag offset and set value of a variable I made called "Currently Dragging" which was a reference to a content widget. Here's an example of what the event bind looks like:

https://gyazo.com/59e443cb6613de1ec41e368e1ffd6daa

Then, in the actual widget blueprint I created 2 overrides: On Mouse Move and OnMouseButtonUp (buttonup can technically can be optional). Here's how I set them up:

https://gyazo.com/2db13bf2033e4a1999e0a0c63a5bc426

https://gyazo.com/6dd476cab3661ec3f182d1f737373003

Final result is this:

https://gyazo.com/b99ed72c484edaf99e52e4680e396b47

There's other ways to do it too that are probably more efficient. In a mouse button down override you can detect a drag event and then in OnDragDetected override create a drag & drop operation and use a payload.

To determine if an item is a child of a class based on the ItemTable.
A spreadsheet tool for easy editing of the ItemTable and RecipesTable.
A program which allows you to automate replacing item ID's for a recipe's ingredients.
A smart material for substance painter to help with tint masking. It adds colors so that you don't need to change the viewport channel to see your user masks. Before exporting your maps, move it to the bottom of your layer stack so that the colors don't bleed into your maps.
If you want to use high IDs (this must be number) for hair and colors, you can use this or mod the character creation.
The character creation seems to count the number of rows in the datatable and use an ID incremented from 0 to that number. This needs to be changed to read the real available IDs.
The sources (GitHub) use an Apache license and can be used as long as you mention the original work, the author and agree that your use of the sources is your sole responsibility.

EZee_AP

CETagUpdator

CETagUpdator interface.

Can be used to update steam tags.
TempTool

TempTool interface.

Calculates the colours used for the temp of the map's TemperatureHeatMap.
HM Split

HM Split interface.

For "cutting" a big heightmap into tiles to be loaded with world composition.
(file should be .r16 format, resolution is the outputted tile sizes)
Simple LevelProp with custom interaction and its own "Floating Info" widget, including the RPC example from the wiki.

Small tool for level creators, tool can be used to generate instanced meshes from static meshes in the editor, tool respects mesh scale and materials, if you have 2 of the same mesh using different materials they will be counted as 2 individual unique meshes.

  1. Highlight all the static meshes you want converted into instanced meshes in the editor viewport.
  2. Open "BLU_InstanceTool" and press "Unique Mesh Count", this will output the number of instance actors to add to the level.
  3. Highlight all the static meshes and the instance actors in the editor viewport.
  4. Open "BLU_InstanceTool" and press "Make *TYPE* Instances".
  5. Delete your static meshes.

  • Before using the tool make sure to backup your level as a safeguard.
  • It is not optimised. It is only for use in the editor and it seems to work well so far.


Includes 4 example widgets and 3 UI components.

  1. User Widget, this widget saves data to a .sav file on the client PC (also has option to delete the data from client PC).
  2. Admin Widget, this widget saves data to the database on the server.
  3. MultiUser Widget, has user and admin options, user options are saved to .sav, admin options are saved to database on the server.
  4. Save To Player Widget, this widgets saves data to an actor component added to BasePlayerChar so you can save player specific data.

  • DropDownInfo, convenient drop down text.
  • YesNoDialogue, confirmation dialogue.
  • OnOffToggle, alt checkbox.


  • WorkshopUploader

    Workshop Uploader interface.

    Includes 5 features which make uploading to the workshop easier.

    1. Uploads new/updates workshop items
    2. Mod Tags
    3. Can inject WorkshopID into modinfo.json inside the pak file (needed for mod auto downloader, the devkit will do this the first time you upload via the devkit, when pak is rebuilt it does not use compression)
    4. Compress pak files
    5. Test integrity of pak file (when running IsConanExiles can highlight default content in blue depending on settings.json)

    There is a simple settings.json file in the dir, read the ReadMe.txt file for usage (read that file anyway), app not necessarily limited to Conan Exiles, although tags options will be removed when running without "IsConanExiles".

    In the "file" menu you can save/load all the app data for each mod, some features (compression/test/inject id) require you to copy UnrealPak from "Devkit\Engine\Binaries\Win64\UnrealPak.exe" to the application directory. Think of it as CETagUpdater v2.


    Unzip and drop in your local folder. All the magic happens in the construction script, but you can use the code in normal event graph etc.
    Scripts can also be used to change colors that are not normally changeable with dyes.

    RenderMapToHDR 1

    Scene Capture Interface for RenderMapToHDR.

    RenderMapToHDR 2

    Offsetted render example of the Conan Exile default map for RenderMapToHDR.

    Renders maps in HDR.

    Warning! Requires a pretty decent PC and assumes your map is the same size as the conan exile map (806400 {-403200}, {403200}).

    RenderMap_8x8_Heat_4096

    Can be used as a guide when creating your heatmap (Use TempCalc.zip - also listed here).

    RenderMap_8x8_Offset_4000

    Will create a temporary map image you can use as a template to create your map image (T_FullscreenMap).

    1. Copy both blueprints to your local folder.
    2. Create 2 "RenderTargets" (Materials & Textures->Render Target), 1 4000x4000, 1 4096x4096.
    3. Open "RenderMap_8x8_Offset_4000" and set the 4000x4000 render target to the "Texture Target" of the SceneCaptureComponent2D. Or, Open "RenderMap_8x8_Heat_4096" and set the 4096x4096 render target to the "Texture Target" of the SceneCaptureComponent2D.
    4. Temporarily disable level streaming in the viewport "Viewport->Advanced Settings->Stream Levels Automatically When Camera Is Moved" should be unchecked.
    5. load your map and set "all" heightmaps to be displayed (you should be able to see your whole map).
    6. Drag the 2 blueprints into your level.
    It should also be noted, when you render your map you will probably want to switch the water out for something a little more suited, easier to see, no movement (waves) etc, your maps origin point should also be 0, 0, for more serious reasons other then just rendering the map.

    Guides

    Main article: Guide#Modding


    A shortened guide on meshes brought into Blender from the DevKit.
    Works with doors / gates. (Doorbell.zip)
    For anyone starting to go for fully custom models on their mod, this might help to gain some prior experience on the matter.
    Setting up character volumes.
    An additional view on the whole armor creation process. Focused on Apex in Maya.

    Robtheswede

    Quickies.[1]

    Death2Mongo (DeadlyMidnight)

    Pulled from this playlist.

    FireSpark81

    Pulled from this playlist.

    HellsSauna (Hellsbreath)

    Pulled from this playlist.

    JustHorse

    Sebastian Walter (Uruk)

    German (DE).

    Snowhunter

    TheBigBadBusch

    LuzipherMST

    German (DE).

    Tips n' Tricks

    Testing mods on multiplayer 1

    Click the little button beside Play and tick Run Dedicated Server.

    Testing mods on multiplayer 2

    Increase the number of clients if you want to see it from two perspectives.

    • If you want to test mods in multiplayer you can click the little button beside Play and tick Run Dedicated Server and increase the number of clients if you want to see it from two perspectives.[2]
    • How to move a devkit installation:
    1. close the devkit and the epic launcher
    2. rename the devkit folder
    3. start the epic launcher
    4. start the installation of the devkit to your ssd
    5. wait until you see some download progress (~ 1%)
    6. stop the insatllation and close the epic launcher
    7. copy your old installation of the devkit to your new folder
    8. start the epic launcher and continue the installation of hte devkit
    9. the epic launcher will verify the current folder content and the installation is finished
    • If you are setting up an RGB mask, for example _M textures, from Substance you'll need to make your own export profile for Conan Exiles that uses those channels. These are not the default for Unreal. The
      • red channel is the metallic mask.
      • green is the roughness mask.
      • blue is the ambient occlusion mask.
    Note: M_Conan_Legacy_Skin is set up differently from every other material; Red is AO, green is roughness and blue is specular.
    • Use idle animation to help you position armor pieces.[3]
    • For anyone doing maps - if you're placing Skeletal meshes out, you really should click this checkbox, otherwise your SK's will tick quite a lot.
    • When creating UI (Eg. a crafting station), double click your icons and make sure that the texture sorting group or whatever it is called is "UI". This optimizes the use of them a bit.
    • You can use the console command SetServerSetting LogoutCharactersRemainInTheWorld 0 to start from wherever you do "play from here" (in case you always start in the last-logout place when running the game from the editor)
    • DLC Item-Ranges
    An extensive list of DLC item ID ranges. These are not available in the DevKit.

    References

    1. "Quickies" Robtheswede, Dropbox
    2. Cheese#0001, Modding discord - February 13, 2017
    3. Sibercat, modding discord - May 11, 2018