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

Has anyone come up with a plugin to Extract Archuem from gear with Evenstone?

Status
Not open for further replies.

JoeBobJr

Member
Joined
Oct 25, 2014
Messages
151
Reaction score
1
Still looking for a plugin that will actually break gear down. I don't care if the I have to enter the exact name of the gear I want broken down that's fine for me. I'll compile a list of all the gear I want broken down and put a line of code for each piece of gear. I just need a code that works.
 
The free quester in the store has an option to break down gear that works, tried to look at that? :)
 
The free quester in the store has an option to break down gear that works, tried to look at that? :)

I've leveled many characters and it has never worked on any of them. I've seen it buy the everstone before then it puts a bunch of stuff in the log saying wasn't able to disenchant blah blah and it never works.
 
Easy:

Code:
foreach (var item in me.getItems())
           {
               if (item.name.EndsWith("(item name)"))
               {
                   item.Disenchant();
                   Log("done");  
                   Thread.Sleep(3000);
               }
               else{
                   Log("not done: " + item.name);
               }
               
           }
 
Easy:

Code:
foreach (var item in me.getItems())
           {
               if (item.name.EndsWith("(item name)"))
               {
                   item.Disenchant();
                   Log("done");  
                   Thread.Sleep(3000);
               }
               else{
                   Log("not done: " + item.name);
               }
               
           }

What if I want it to only do the items in my bag? This seems to check even storage I don't it checking storage at all only what is inside my bag. I tried me.getInvItems() and its giving me an error.
 
Status
Not open for further replies.
Back
Top