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

[REQUEST] Custom loot script Giles Trinity

CRN91

New Member
Joined
Nov 30, 2012
Messages
18
Reaction score
0
Hello,
I asked this question in another section, but it got deleted and I received a PM to put it here.
Can anyone make for me a special loot script for me? Which I can use? I am very bad at scripting..
Rings, necks: from ilvl:58
gloves from ilvl:61
shoulders, legs from ilvl:58
1h weapons from ilvl:61
2h weapons from ilvl:63
Ignore belt and boots and helms (rare)
Take all legendary

Thanks for anyone, who can help me out <3
 
I would say this goes in the request forum... but there you go:
PHP:
<?xml version="1.0" encoding="utf-8" ?>
<ItemRules name="glodna91 Rules" useRoundedValues="true" xmlns="http://tempuri.org/ItemRuleSchema.xsd" xmlns:xsi="http://tempuri.org/ItemRuleSchema.xsd">
  <Priority priority1="Keep" />
  <Categories>
    <Category ruleType="PickUp">
      <!-- Pickup all legendaries -->
      <ItemRule>
        <StatRules>
          <Rule stat="Quality" value="Legendary"/>
        </StatRules>
      </ItemRule>
      <!-- Pick up rings lvl 58+ -->
      <ItemRule itemType="Ring">
        <StatRules>
          <Rule stat="Quality" value="Rare4"/>
          <Rule stat="Level" minValue="58"/>
        </StatRules>
      </ItemRule>
      <!-- Pick up amulets lvl 58+ -->
      <ItemRule itemType="Amulet">
        <StatRules>
          <Rule stat="Quality" value="Rare4"/>
          <Rule stat="Level" minValue="58"/>
        </StatRules>
      </ItemRule>
      <!-- Pick up gloves lvl 61+ -->
      <ItemRule itemType="Gloves">
        <StatRules>
          <Rule stat="Quality" value="Rare4"/>
          <Rule stat="Level" minValue="61"/>
        </StatRules>
      </ItemRule>
      <!-- Pick up shoulders lvl 58+ -->
      <ItemRule itemType="Shoulder">
        <StatRules>
          <Rule stat="Quality" value="Rare4"/>
          <Rule stat="Level" minValue="58"/>
        </StatRules>
      </ItemRule>
      <!-- Pick up legs lvl 58+ -->
      <ItemRule itemType="Legs">
        <StatRules>
          <Rule stat="Quality" value="Rare4"/>
          <Rule stat="Level" minValue="58"/>
        </StatRules>
      </ItemRule>
      <!-- Pick up 1H lvl 61+ -->
      <ItemRule itemBaseType="Weapon" twoHanded="false">
        <StatRules>
          <Rule stat="Quality" value="Rare4"/>
          <Rule stat="Level" minValue="61"/>
        </StatRules>
      </ItemRule>
      <!-- Pick up 2H lvl 63+ -->
      <ItemRule itemBaseType="Weapon" twoHanded="true">
        <StatRules>
          <Rule stat="Quality" value="Rare4"/>
          <Rule stat="Level" minValue="63"/>
        </StatRules>
      </ItemRule>
    </Category>
    <Category ruleType="Keep">
      <!-- Keep all looted -->
      <ItemRule>
        <StatRules>
          <Rule stat="Quality" value="Rare4"/>
        </StatRules>
      </ItemRule>
    </Category>
  </Categories>
</ItemRules>
 
Back
Top