What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Creating Custom crafting profiles?

fardice

New Member
Joined
Feb 25, 2017
Messages
13
Reaction score
1
I'd like to try writing a simple production profile about craft. Are there any production-related syntax examples I can refer to?
 
I'd like to try writing a simple production profile about craft. Are there any production-related syntax examples I can refer to?



Craft while you have less then 3 of a given item:



Code:
				<While Condition="not HasAtLeast(5361,3)">
			<SmartSyntheize TargetQualityPercent="0" ItemId="5361" Count="1" />
		</While>
		<StopCrafting />


Always craft 3 of a given item using item id

Code:
				<SmartSyntheize ItemId="5361" Count="3" />
		<StopCrafting />

Always craft 3 of a given item using recipe id



Code:
				<SmartSyntheize RecipeId="1008" Count="3" />
		<StopCrafting />


You can get id's from using the reborn console plugin and execeuting the following code while the recipe window is open:

Code:
		Log(CraftingManager.CurrentRecipe);


Code:
				RecipeData: { CurrentLocaleName: Maple Lumber, EnglishName: Maple Lumber, HasCraftedRecipe: True, Ingredients: [RecipeIngredientInfo: { NormalInInventory: 11, HqInInventory: 0, NqSelected: 3, HqSelected: 0, ItemId: 5380, TotalNeeded: 3 }, RecipeIngredientInfo: { NormalInInventory: 0, HqInInventory: 0, NqSelected: 0, HqSelected: 0, ItemId: 0, TotalNeeded: 0 }, RecipeIngredientInfo: { NormalInInventory: 0, HqInInventory: 0, NqSelected: 0, HqSelected: 0, ItemId: 0, TotalNeeded: 0 }, RecipeIngredientInfo: { NormalInInventory: 0, HqInInventory: 0, NqSelected: 0, HqSelected: 0, ItemId: 0, TotalNeeded: 0 }, RecipeIngredientInfo: { NormalInInventory: 0, HqInInventory: 0, NqSelected: 0, HqSelected: 0, ItemId: 0, TotalNeeded: 0 }, RecipeIngredientInfo: { NormalInInventory: 0, HqInInventory: 0, NqSelected: 0, HqSelected: 0, ItemId: 0, TotalNeeded: 0 }], ItemId: 5361, RecipeId: 1008, Difficulty: 9, RecipeLevel: 1, RecipeCrystalInfo: RecipeCrystalInfo: { CrystalType1: 4, CrystalType1Amount: 1, CrystalType2: 255, CrystalType2Amount: 0 } }

Please let me know if you have any questions.
 
<Synthesize RecipeId="260" MinimumCp="256" HQMats="-1"/>
<While Condition="CraftingManager.IsCrafting">
<CraftAction Name="Waste Not" ActionId="279" />
<CraftAction Name="Basic Touch" ActionId="100031" />
<CraftAction Name="Standard Touch" ActionId="100034" />
<CraftAction Name="Basic Touch" ActionId="100031" />
<CraftAction Name="Standard Touch" ActionId="100034" />
<CraftAction Name="Waste Not" ActionId="279" />
<CraftAction Name="Basic Touch" ActionId="100031" />
<CraftAction Name="Standard Touch" ActionId="100034" />
<CraftAction Name="Basic Touch" ActionId="100031" />
<CraftAction ActionId="19304" Name="Veneration" />
<CraftAction Name="Basic Synthesis" ActionId="100030" />
</While>

If the processing flow looks like the one above, how do I edit the processing flow?
Replace it all with this.


<SmartSyntheize Recipeid="260" Count="1" />
<StopCrafting />
 
Last edited:
[17:30:01.021 D] [SmartSyntheize @ line 145] has attribute 'reciped' which is not implemented by the tag.

It's not work.
I typod recipeid in my earlier message, it's fixed now
 
Last edited:
[05:06:28.451 N] [CMM] Executing Basic Synthesis
[05:06:28.451 D] DoAction CraftAction 100015 0xE0000000
[05:06:30.748 D] [CMM] Unable to execute Master Mend
[05:06:30.748 N] [SmartSyntheize] Something went wrong crafting...
[05:06:30.748 N] Stopping the bot. Reason:[SmartSyntheize] Something went wrong crafting...
[05:06:30.748 D] CurrentBot.Stop()

CP still greater than 200. But Master Mend fail.
Is it buged?
 
Could you get me the entire log file please, it will be in the logs folder. If you could also share the profile that would help.

I'd also need the following stats, Craftsmanship and control, and CP

ffxiv_dx11_noaslr_2025-12-17_05-27-51.webp
 
Back
Top