kolton / d2bot-with-kolbot

d2bot game manager by D3STROY3R with kolbot libs by kolton for d2bs
346 stars 332 forks source link

How to add pickit line for "increased chance to block" ? #1431

Open Saucyjoy opened 5 years ago

Saucyjoy commented 5 years ago

I want to craft safety amulets with increased chance to block, but I don't know the syntax for this mod. Obviously, [fbr] wouldn't work.
Right now, I have this: [type] == amulet && [quality] == crafted # [itemfasterblockrate] >= 1

Can someone tell me what the correct syntax would be? Thank you

tlwh163 commented 5 years ago

[fbr] >= 30

Saucyjoy commented 5 years ago

[fbr] >= 30

thats faster block rate, that isn't the same as increased chance to block. so that's not going work.

mf022 commented 5 years ago

line 938 from NTItemAlias.dbl is showing that [itemfasterblockrate] and [fbr] are the same

NTIPAliasStat["itemfasterblockrate"] = 102; NTIPAliasStat["fbr"] = 102;

maybe line 825 is more appropriate for what you are looking for

NTIPAliasStat["toblock"] = 20;

additional check http://www.theamazonbasin.com/wiki/index.php/Block

tlwh163 commented 5 years ago

When fbr=30, Under normal circumstances the blk=20, so i'd like to use fbr Covered blk BUT it's right, can going work, bro