Blizzard Sector
How to pickup @res sc / gc? - Printable Version

+- Blizzard Sector (https://www.blizzsector.co)
+-- Forum: Diablo II (https://www.blizzsector.co/forum-4.html)
+--- Forum: Hacks Bots and Editors (https://www.blizzsector.co/forum-16.html)
+--- Thread: How to pickup @res sc / gc? (/thread-47744.html)



How to pickup @res sc / gc? - Akao - 01-06-2012

Heya,

I tried to figur it out but im not totally sure...

I know where to add/edit, but not sure how the prefixes goes when its for "All resistans" (@4+)

Id like to save all sc who have @4 as minium. @12 for GCs

This is how far i can get:

[Name] == SmallCharm && [Quality] == magic # ...... >= 4
[Name] == GrandCharm && [Quality] == magic # ...... >= 12

Can anyone help me fill out the gaps?


How to pickup @res sc / gc? - bugme143 - 01-06-2012

[Name] == SmallCharm && [Quality] == magic # [ColdResist] >= 4 && [LightResist] >= 4 && [FireResist] >= 4
[Name] == GrandCharm && [Quality] == magic # [ColdResist] >= 12 && [LightResist] >= 12 && [FireResist] >= 12


How to pickup @res sc / gc? - Akao - 01-06-2012

bugme143 Wrote:[Name] == SmallCharm && [Quality] == magic # [ColdResist] >= 4 && [LightResist] >= 4 && [FireResist] >= 4
[Name] == GrandCharm && [Quality] == magic # [ColdResist] >= 12 && [LightResist] >= 12 && [FireResist] >= 12

I dont need poisen? :O


How to pickup @res sc / gc? - comper - 01-06-2012

you can also go like this
[Name] == GrandCharm && [Quality] == Magic # [ColdResist]+[FireResist]+[LightResist]+[PoisonResist] >= 48
and
[Name] == SmallCharm && [Quality] == Magic # [ColdResist]+[FireResist]+[LightResist]+[PoisonResist] >= 16
just add the amount you want on the charm to keep by 4

for a item that has all resist and that is the only way it comes like a mara you can go with one resist like
[ColdResist] >= 30 - [Type] == amulet && [Quality] == unique # [Strength] == 5 && [ColdResist] >= 30


How to pickup @res sc / gc? - bugme143 - 01-06-2012

comper Wrote:you can also go like this
[Name] == GrandCharm && [Quality] == Magic # [ColdResist]+[FireResist]+[LightResist]+[PoisonResist] >= 48
and
[Name] == SmallCharm && [Quality] == Magic # [ColdResist]+[FireResist]+[LightResist]+[PoisonResist] >= 16
just add the amount you want on the charm to keep by 4

for a item that has all resist and that is the only way it comes like a mara you can go with one resist like
[ColdResist] >= 30 - [Type] == amulet && [Quality] == unique # [Strength] == 5 && [ColdResist] >= 30

He's right.

And for a allres SC/GC, you'd actually only need 2 resistances:

[Name] == GrandCharm && [Quality] == magic # [ColdResist] >= 12 && [LightResist] >= 12
[Name] == SmallCharm && [Quality] == magic # [ColdResist] >= 4 && [LightResist] >= 4

I just tend to avoid relying on psn resist since not many people think it's useful. *shrug*


How to pickup @res sc / gc? - Akao - 01-06-2012

Thanks man!