SimCMinMax / AutoSimC

Python script to create multiple profiles for Simcraft to find Best-in-Slot and best enchants/gems/talents combination.
GNU General Public License v3.0
54 stars 17 forks source link

Request: ilvl Filter #44

Open Nexxxy opened 5 years ago

Nexxxy commented 5 years ago

Hi,

is it possible to implement a minimum item-ilvl Filter Setting for inBag Items ? like

MinimumItemILVL = 380

I carry many low ilvl items < 380 in my bags for other specs .. i dont want to filter them manually :p

Greetings Nexxy

scamille commented 5 years ago

I think this belongs in https://github.com/SimCMinMax/SimPermut

Nexxxy commented 5 years ago

im confused. Doesnt read your script the input.txt including the ### Gear from Bags lines and uses that information to create the permuations later on?

Is that profile generator not part of AutoSimC ? I just found a func named : itemElligible(item): witch would be good for filtering ilvl items in advance + adding a new option into settings.py

The ingame simc addon provides that ilvl information in the items in bag headline from each item : e.g # Sporenruferschleier (400)

in addition i had to add a zuldazar option in main.py ~Line 770 to take care of the zuldazar buff if line.startswith("# bfa.zuldazar"): splitted = line.split("=", 1)[1].rstrip().lstrip() player_profile.simc_options["bfa.zuldazar"] = splitted

Greetings

scamille commented 5 years ago

Sure item level filtering can be done in AutoSimC as well. I interpreted your post to filter things out directly in the ingame addon.