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

bot not picking up plans?

zxcv

New Member
Joined
Jan 9, 2012
Messages
105
Reaction score
0
i found out that my bot in sarkoth does not picking up any plans and i state to pickup plan in the loot rules xml file..

Code:
<!-- Pick up designs and plans, blacksmithing/jewelcrafting -->
      <ItemRule itemName="Plan:*" stack="1" />
      <ItemRule itemName="Design:*" stack="1" />
	  
	  <!-- Pick up all Tome of Secerts -->
	 <ItemRule itemName="Tome of Secrets" stack="1" />

the bot do pick up tomes of secrets but is not picking up any plan
 
try this

Code:
      <!-- Pick up all pages and tomes, blacksmithing/jewelcrafting -->      
                <ItemRule itemName="Page of*" stack="1" />
                <ItemRule itemName="Tome of*" stack="1" />
 
try this

Code:
      <!-- Pick up all pages and tomes, blacksmithing/jewelcrafting -->      
                <ItemRule itemName="Page of*" stack="1" />
                <ItemRule itemName="Tome of*" stack="1" />

err tony that is for the pages for jewel and blacksmith...what i mean is the plan or design from blacksmith and jewelcrafting...plans or design that allows those npc to learn new crafting item
 
i found out that my bot in sarkoth does not picking up any plans and i state to pickup plan in the loot rules xml file..

Code:
<!-- Pick up designs and plans, blacksmithing/jewelcrafting -->
      <ItemRule itemName="Plan:*" stack="1" />
      <ItemRule itemName="Design:*" stack="1" />
	  
	  <!-- Pick up all Tome of Secerts -->
	 <ItemRule itemName="Tome of Secrets" stack="1" />

the bot do pick up tomes of secrets but is not picking up any plan

I noticed that as well, thought its a bug in my client. The plans are not named like 'Plan: ....', but they have something (colorcode i guess) at the start:

{c:ffffff00}Plan: Exalted Dread Shield{/c}

So *Plan:* should match on these
 
I noticed that as well, thought its a bug in my client. The plans are not named like 'Plan: ....', but they have something (colorcode i guess) at the start:

{c:ffffff00}Plan: Exalted Dread Shield{/c}

So *Plan:* should match on these
by using the pattern matching above do you manage to pickup those plan?
 
Use this:

<!-- Pick up designs and plans, blacksmithing/jewelcrafting -->
<ItemRule itemName="*Plan*" stack="1" />
<ItemRule itemName="*Design*" stack="1" />

Had an issue with the colon too - tested it and it works.
 
Back
Top