Hey guys, i just started with modding so i started with changing some recipies to get comon with everything.
My idea was (just for practice) that you can craft SlingAmmo from normal Stone with your Pikeaxe (Material Preperation Skill).
So it did this in the dump.sql
i did in the recipe requierement this :
(4261,1087,241,1,50,5,0);
recipe table :
(1087,'Schleudermunition', 'Stelle Schleudermunition her',48,17,30,1096,50,10,1,0,'art\2D\Items\Urea.png');
on the client files i did this in recipe xml.
<row>
<ID>1087</ID>
<Name> Slingammo</Name>
<Description> Craft your own Ammo</Description>
<StartingToolsID>48</StartingToolsID>
<SkillTypeID>17</SkillTypeID>
<SkillLvl>30</SkillLvl>
<ResultObjectTypeID>1096</ResultObjectTypeID>
<SkillDepends>50</SkillDepends>
<Quantity>10</Quantity>
<Autorepeat>1</Autorepeat>
<IsBlueprint>0</IsBlueprint>
<ImagePath>art\2D\Items\urea.png</ImagePath>
</row>
and this in the recipe requierement:
<ID> 4261 </ID>
<RecipeID>1087</RecipeID>
<MaterialObjectTypeID>241<MaterialObjectTypeID>
<Quality>1</Quality>
<Influence>50</Influence>
<Quantity>10</Quantity>
<IsRegionItemRequired>0<IsRegionItemRequired>
</row>
All in all it works... if skill is lvl 30 you can use 5 Stone to craft 10 Slingammo via Shape Stone Skill.
But if this is added to the files, i do not get a preview in the Skill how many Stone is needed and how much i have even for all other skills this is gone... ! The problem must be in client files cause i checked on other servers and there is the same problem with this edited files...
Someone got an Idea?