12-19-2011, 03:07 AM
(This post was last modified: 12-19-2011, 06:01 AM by RedResistance.)
Here are the boots and gloves pickit lines
// ##### Gloves ########################
//[Type] == gloves && [Quality] == rare && [Flag] != ethereal # [IAS] >= 20 && [Strength]+[Dexterity] >= 25
[Type] == gloves && [Quality] == rare && [Flag] != ethereal # [IAS] >= 20 && ([ItemAddSkillTab] >= 2 || [Strength] >= 10 || [Dexterity] >= 10) && ([LifeLeech] >= 3 || [ManaLeech] >= 3)
[Type] == gloves && [Quality] == rare && [Flag] != ethereal # [IAS] >= 20 && [ItemAddSkillTab] >= 2 && [Strength]+[Dexterity] >= 15
// ##### Boots #########################
[Type] == boots && [Quality] == rare && [Flag] != ethereal # [FRW] >= 20 && [FHR] >= 10 && [FireResist]+[LightResist]+[ColdResist]+[PoisonResist] >= 50
[Type] == boots && [Quality] == rare && [Flag] != ethereal # [FRW] >= 20 && [FHR] >= 10 && [Dexterity] >= 8 && [FireResist]+[LightResist]+[ColdResist]+[PoisonResist] >= 30
Edit: It crashed again, but this time it crashed when some magic scarabshell boots were on the ground. My bot is not even supposed to try to pick up magic boots, so I think the problem here is the scarabshell boots identification. I looked in the Item Alias file and it looks normal. Im going to continue to look into scarabshell boots, and ill post if i find a fix.
Update: I tested it with other boots and gloves and its for sure the scarabshell boots. Magic and rare only two ive been able to test.
Update: Copied all the files I editied and reinstalled all the other files and the problem persists, so it's 100% for sure something I did. xD
Update: Disabled the pickit lines for boots, still no dice.
Update: Disabled the pickit line for sandstorm trek (unique scarabshell boots) Guess what... IT FIXED IT! haha Now I have to figure out whats wrong with this line
[Name] == ScarabshellBoots && [Quality] == unique [Flag] == ethereal # [Strength]+[Vitality] >= 25 // Sandstorm Trek
Final Update with fix:
The line should've looked like this
[Name] == ScarabshellBoots && [Quality] == unique && [Flag] == ethereal # [Strength]+[Vitality] >= 25 // Sandstorm Trek
// ##### Gloves ########################
//[Type] == gloves && [Quality] == rare && [Flag] != ethereal # [IAS] >= 20 && [Strength]+[Dexterity] >= 25
[Type] == gloves && [Quality] == rare && [Flag] != ethereal # [IAS] >= 20 && ([ItemAddSkillTab] >= 2 || [Strength] >= 10 || [Dexterity] >= 10) && ([LifeLeech] >= 3 || [ManaLeech] >= 3)
[Type] == gloves && [Quality] == rare && [Flag] != ethereal # [IAS] >= 20 && [ItemAddSkillTab] >= 2 && [Strength]+[Dexterity] >= 15
// ##### Boots #########################
[Type] == boots && [Quality] == rare && [Flag] != ethereal # [FRW] >= 20 && [FHR] >= 10 && [FireResist]+[LightResist]+[ColdResist]+[PoisonResist] >= 50
[Type] == boots && [Quality] == rare && [Flag] != ethereal # [FRW] >= 20 && [FHR] >= 10 && [Dexterity] >= 8 && [FireResist]+[LightResist]+[ColdResist]+[PoisonResist] >= 30
Edit: It crashed again, but this time it crashed when some magic scarabshell boots were on the ground. My bot is not even supposed to try to pick up magic boots, so I think the problem here is the scarabshell boots identification. I looked in the Item Alias file and it looks normal. Im going to continue to look into scarabshell boots, and ill post if i find a fix.
Update: I tested it with other boots and gloves and its for sure the scarabshell boots. Magic and rare only two ive been able to test.
Update: Copied all the files I editied and reinstalled all the other files and the problem persists, so it's 100% for sure something I did. xD
Update: Disabled the pickit lines for boots, still no dice.
Update: Disabled the pickit line for sandstorm trek (unique scarabshell boots) Guess what... IT FIXED IT! haha Now I have to figure out whats wrong with this line
[Name] == ScarabshellBoots && [Quality] == unique [Flag] == ethereal # [Strength]+[Vitality] >= 25 // Sandstorm Trek
Final Update with fix:
The line should've looked like this
[Name] == ScarabshellBoots && [Quality] == unique && [Flag] == ethereal # [Strength]+[Vitality] >= 25 // Sandstorm Trek