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

[ItemRules2] Gnillers Super-Tight Loot Rules

Hey guys! i have indeed been away from the forums for a while :)

What better way to say i'm back than a fresh update? Change log below, download on the first page!

--1.4.1
- Fixed a bug in one handed rare mighty weapon rule applying to two handed rare mighty weapons
- Tightened The Witching Hour for strength (+33%)
- Tightened Inna's Favor (+10%)
- Tightened Natalya's Bloody Footprints (+7%)
- Tightened Ice Climbers without movement speed (+5%)
- Tightened Natalya's Sight (+26%)
- Tightened Visage of Giyua (+14%)
- Tightened Tal Rasha's Brace (+17%)
- Tightened Inna's Radiance (+12%)

On the subjects of off-hand loot rules, they need a full overhaul at some point. This is the one last big overhaul i have yet to implement but i haven't gotten to it as of yet.

And Biotin, sorry for answering this late.. thanks a lot for the donation! :D
 
one question

// bugged rare misc items like followerspecial and polearm
[QUALITY] == "Rare" && [LEVEL] > 62 && [BASETYPE] == "Misc"
//ignore rule
[QUALITY] == "Rare" && [LEVEL] <= 62 && [BASETYPE] == "Misc" -> [IGNORE]

why polearms are broken and in this section?
 
if i add this to the pickup.dis

[QUALITY] == "Rare" && [LEVEL] <= 63 && [BASETYPE] == "Armor" && [TYPE] == "Source" -> [IGNORE]
[QUALITY] == "Rare" && [LEVEL] <= 63 && [BASETYPE] == "Armor" && [TYPE] == "Mojo" -> [IGNORE]

bot wil not pick up them, right?
 
so... how to disable to pick up wiz offhands?

"Source" doesnt work for me
 
Almost everytime i restart demonbuddy, the script rules changes to trinity score. How can i fix this? or do i need to do this manually? kinda anoying if you start alot of bots.
 
so... how to disable to pick up wiz offhands?

"Source" doesnt work for me

i believe what you're looking for is orb, this is what i use

Code:
[QUALITY] == "Rare"  && [TYPE] == "Mojo" -> [IGNORE]
[QUALITY] == "Rare"  && [TYPE] == "Quiver" -> [IGNORE]
[QUALITY] == "Rare"  && [TYPE] == "Orb" -> [IGNORE]
[QUALITY] == "Rare"  && [TYPE] == "Shield" -> [IGNORE]
 
so is there any way to add to the loot rules for it to keep any Homunculus found if so could some one show me the code to add, thanks
 
Question:

How do I config my rules not to sell any .. lets say Tal Rashas helmet items?? No matter the stats, I want to keep them ALL?

What do I have to change in the loot rules to make this work ?

Thanks
 
i opened up the .dis files to edit some of the code but it's all jumbled together horizontally. Is there a way i can get a cleaner organized copy?
 
Use Notepad++
yeah figured that out earlier today when i remembered a friend of mine talking about it.

alright if i were looking to pick up all legendaries (so that i can brim them low stat/level) would these lines work? i tested it already and it does work, but i'm just wondering if my language logic is right. this is my first at reading/writing code

[QUALITY] == "Legendary" && [LEVEL] > 1
[QUALITY] == "Legendary" && [LEVEL] > 1 && [TYPE] == "Jewelry"
//ignore rule
[QUALITY] == "Legendary" && [LEVEL] <= 1 -> [IGNORE]

in other words if i was asking it to recognize all legendaries over level 1, these lines would be correct? and the third line (the ignore rule) is only applicable to lines with [ignored] right?
 
Back
Top