![]() |
how do you script a level require on bots pickit? - 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 do you script a level require on bots pickit? (/thread-46866.html) |
how do you script a level require on bots pickit? - checkone - 11-26-2010 i use D2NT I like to know how to set a limit level require on a item so that my bots will keep, how do i do that? Example, if I want my bots to keep this kind of shield when the level require is lower then level 30 use. What do I have to edit the script? [Name] == ZakarumShield && [Quality] == rare # [Sockets] >= 2 && [FBR] >= 20 how do you script a level require on bots pickit? - skidude - 11-26-2010 checkone Wrote:i use D2NT add && [itemlevelreq] == 30 and it will only keep the item if its lvl30 how do you script a level require on bots pickit? - dekatorthorpe - 11-27-2010 skidude Wrote:add && [itemlevelreq] == 30 and it will only keep the item if its lvl30where do i insert it? item config or char config, and if item which of the three how do you script a level require on bots pickit? - checkone - 11-27-2010 is this synthax correct? [Name] == ZakarumShield && [Quality] == rare # [Sockets] >= 2 && [FBR] >= 20 && [itemlevelreq] <= 30 is all my comparation are correct?? A && B = A and B?? [A + B + C + D] > X = true when A+B > X ; A+B+C >X ; B+D >X ; etc... ?? A || B = A or B ??? dekatorthorpe Wrote:where do i insert it? item config or char config, and if item which of the three you edit it in your item config. the char config is mostly for boss and all other setting not related with items pick list. how do you script a level require on bots pickit? - Jammer74 - 12-02-2010 checkone Wrote:is this synthax correct?essentially thats true , but with [A+B+C+D] >= X if any variable is greater than X it will pick up the item provided it meets all other picket requirements example [Type] == ring && [Quality] == rare # [FCR] == 10 && [ColdResist]+[LightResist]+[FireResist]+[PoisonResist] >= 40 if any of the individual resists of this ring were greater than or equal to 40 and it was rare with 10% fcr, then the bot would snagit ,likewise if any combination of resists were greater than or equal to 40. |