Search results

  1. 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
  2. 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
  3. 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...
  4. I

    Feature - Implemented Log when a client session starts and ends

    https://github.com/kolmafia/kolmafia/pull/1898
  5. 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...
  6. 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.
  7. 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...
  8. 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...
  9. 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.
  10. 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...
  11. 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...
  12. 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...
  13. I

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

    I was playing with third party hosting for some git stuff and was confused on why my script was being called null-release in the git information. > git checkout [Private Git Repo] release Starting remote: Enumerating objects remote: Counting objects remote: Compressing objects Receiving...
  14. I

    Feature - Implemented Relogging to improve ping

    You mean no one 1 right? 😉
  15. I

    Feature - Implemented Relogging to improve ping

    Am I missing some conversation? When I run "relog" it will log me out, then log me in. Which sounds fine, except I'm not sure why we're bothering to log out. Its always been my impression that you can log in without logging out. Which sounds weird if taken out of context tbh. So I commented...
  16. I

    Feature - Implemented Relogging to improve ping

    I think you had a bad test. js const funt = (url) => {const started = Date.now(); for (let i = 0; i < 5; i++) { visitUrl(url); } print( Date.now() - started);}; funt("council.php");funt("api.php?what=events&for=Antilag_by_Irrat"); You were calling api.php without any...
  17. I

    Feature Prefs Corruption Part II: timein vs saveToFile

    A bit of an offshoot from the current discussion, but in the context of corrupted preference files that are still readable we could add another insurance policy. A pref that exists only to log how many lines were written, and to get how many we read. If properties.size() !=...
  18. I

    Feature - Implemented Relogging to improve ping

    Edit: I am not advocating the use of the antilag user script, work has been done in mafia after this thread was created that makes this script redundant. There is a new tab "Connection" in the login menu, and in the preferences you can see options in "General > Connection Options". New commands...
  19. I

    New Content - Implemented Mar 2023 IOTM: closed-circuit phone system

    Rufus quest tracking doesn't update the item requested if we have the item requested. And we don't know what item was requested. This is only relevant for April Fools & playing turns outside of mafia (or corrupted prefs, and so on) Aka, April Fools `salad` broke the tracking. Visiting the quest...
Back
Top