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

How to edit Blacklists?

MaxxyDB

New Member
Joined
May 5, 2013
Messages
73
Reaction score
0
Hi guys,

I have started to try to add 'actorId's to my blacklist in some of the profiles I like to run.

What I need help with is how to add more actorId's.

So here is a sample profile, and one item added to the Blacklist.

How do I add another actorId to this blacklist?

Code:
<Profile>
	<Name>Blank</Name>
	<KillMonsters>True</KillMonsters>
	<PickupLoot>True</PickupLoot>
		<TargetBlacklists>
        <TargetBlacklist actorId="105321" />
</TargetBlacklists>
	<Order>
		<ToggleTargeting combat="false" killRadius="1" looting="false" lootRadius="1" />
	</Order>
</Profile>

Thank you for helping! :)
 
Just add another ID to the list.
It can look like:
Code:
  <TargetBlacklists>
    <TargetBlacklist actorId="79421" />
    <TargetBlacklist actorId="177439" />
    <TargetBlacklist actorId="167185" />
    <TargetBlacklist actorId="102927" />
  </TargetBlacklists>
And so on ;)
 
Back
Top