Jump to content
Rosso777

Crafting Question

Recommended Posts

For a crafting recipe, how do I allow MULTIPLE tools to be used for a recipe (not requiring ALL, just 1 OR the other)?

 

    tools[] =
    {
        "Exile_Item_Shovel",

        "Exile_Item_Screwdriver"
    };
 

Share this post


Link to post
Share on other sites

I found an old addon that seemed to have a similar idea; would this be right?

 

 

    tools[] =
    {       
{"Exile_Item_Shovel",“Exile_Item_Screwdriver"}
    };

 

UPDATE: This did not work. I saw a code somewhere that was using an OR so I will try that next. I’ll update in case it helps others in the future. 

 

 

Share this post


Link to post
Share on other sites

×