Search results

  1. I

    BeachComber - fast and efficient beach combing

    To clarify, I think my current efforts is probably mostly treading your ground. But I already got my setup automated, so :D
  2. I

    BeachComber - fast and efficient beach combing

    Oh hey, I didn't realize you were already doing this too. I started on approx the 2nd of Sep. So I wrote my own script from scratch and the goal of that was to be self sustaining with it sitting in 2crs for a cheap diet. It's written as a standalone nodejs script which is half janky as it was...
  3. I

    Bug Prevent swing popups from stealing focus

    Popups from scripts, sorry. User_confirm()
  4. I

    Bug Prevent swing popups from stealing focus

    I think declining input for a second or two would be best, and the easiest to implement. Worst comes to it, just make it an opt-out/in. A history of inputs, it sounds good? But at the same time, it sounds meaningless. It'd be up to the script themselves to say what was done, which is generally...
  5. I

    Bug Prevent swing popups from stealing focus

    I'm on Windows 10, and I'm not sure if this is an issue elsewhere but sometimes mafia has a popup box appear for one reason or another. This is normally fine, but sometimes I'm typing in CLI or mafia's chat or sometimes I'm not even using mafia as my active window and I'm typing in another...
  6. I

    Feature - Implemented Persistent command history / control history size

    I'm assuming you are including parameters in this? Perhaps just use \n newline character? Doesn't sound like a newline should be something that we can expect to see in a command. An escaped newline, sure.
  7. I

    Feature - Implemented Persistent command history / control history size

    https://github.com/kolmafia/kolmafia/blob/main/src/net/sourceforge/kolmafia/swingui/panel/CommandDisplayPanel.java#L23 Command history has a size of 20, which means you can execute 20 commands before it'll start forgetting stuff. Two thoughts So I had two thoughts about this, the first is a...
  8. I

    Feature - Implemented Items placed in flea market are not tracked as removed from inventory

    Created a PR: https://github.com/kolmafia/kolmafia/pull/1923
  9. I

    Feature - Implemented Items placed in flea market are not tracked as removed from inventory

    I think there's a relay browser, he probably used that
  10. I

    Feature - Implemented Items placed in flea market are not tracked as removed from inventory

    Noticed that some items I'd placed into the flea market were not removed from mafia's inventory, aka tourguide claimed I still had three clovers on me. To test, I did a quick js itemAmount(Item.get("11-leaf clover")) Returned: 3 This is minor, would put it aside but I know I'd never...
  11. I

    Feature - Implemented Log when a client session starts and ends

    https://github.com/kolmafia/kolmafia/pull/1898
  12. I

    Feature - Implemented Log when a client session starts and ends

    This is somewhat niche in use, but currently if a player restarts mafia you have no way to tell if they did so as far as I can tell. Everything that is written to log seems to be non unique and can be replicated by a command invocation. The use case for this was kolfix, a script that aims to...
  13. I

    Bug - Fixed Using mall_price doesn't ignore forbiddenStores

    Funny I briefly removed that check in my mafia, then re-added it because it made my bot worse at buying it's daily items. But I don't mallbot anyhow.
  14. I

    Feature Statistics tracking, fork bstats. A thought.

    This has come to mind now and again, I would love to see statistics on scripts and mafia installations. https://www.bstats.org/global/bukkit That site is open source and can be forked, rewritten to be for mafia and it's scripts. Should be simple enough. In the interest of privacy, this should...
  15. I

    Bug - Fixed Using mall_price doesn't ignore forbiddenStores

    Thoughts on my creating a PR where I introduce new functions that can accept a boolean alongside the mall price functions. The existing functions will ignore forbidden store prices. But if you provide the boolean it will report the price including forbidden stores as well. Historical price, I...
  16. I

    Bug - Not A Bug Chat message deletion problem

    To clarify, this behavior is not so much a bug as it is a feature request. That behavior is normal and expected. It would be nice though.
  17. I

    Bug - Fixed Using mall_price doesn't ignore forbiddenStores

    Oh that's an interesting perspective I didn't consider. Of course, one obvious option is that we have two mall prices, one we share and one we don't. But from here, I could see a new function to include or exclude forbidden stores from the returned price. Or a preference that is by default...
  18. I

    Bug - Fixed Using mall_price doesn't ignore forbiddenStores

    The preference forbiddenStores is a list of player IDs which tells mafia to avoid buying from their stores. The list is automatically populated when an attempt to purchase from the store fails as you were ignored. However, other functions such as checking the mall price will return the price of...
  19. I

    Bug - Fixed Git projects outside of github are not named correctly

    tbh I don't think the specific site matters here, since I was playing with several different git hosting sites. That said, the url does seem somewhat reliable. https://bitbucket.org/chromiumembedded/cef/src/master/ https://source.cloud.google.com/project-name/repo-name...
Back
Top