Adam Gagorik
Adam Gagorik
I see a similar issue for [packagecloud.io](https://packagecloud.io/) based private package repo. However, it is with SHA1 hashes instead of MD5. The solution provided by @shea-parkes works to get around it...
A temporary workaround seems to be to use the command line tool instead of the raw HTML. Set `mermaid_output_format="png"` or `mermaid_output_format="svg"` while having the mermaid CLI installed.
@lordlarr I can tell by how the error is formatted that this message is from Python 3.11 - I think that the codebase is not compatible with this version of...
I would search the code for the buy_item method (probably the calls in manager.py). Before deciding to buy an item, generate a random number between 0 and 1 using the...
Hello @ghost, I added an experimental change in #28. It uses `item.rate01` and `item.rate12` columns of the CSV, along with a random number, to decide if or not to buy...
@xMANAx The code in #28 is more what we’d want for the following reasons: - `random.randint` will not sample correctly for non-integer buying rates - using the columns in `items.csv`...
Ok I will leave this open until someone can test the implementation provided in #28.
The idea behind the `items.csv` was that you edit it up however you want. Creating one from `ffxiah.com` was just meant to be starting point. I don't know what the...
If you want you can make a PR to update the default `items.csv` with prices that are not exploitable. For now I will close this issue.
The codebase has been migrated to Python 3.12, so I think this issue is no longer relevant.