Search results

  1. I

    Four commands using registerSubstring

    > pvpmirror.ash Mirror stream closed. It's not so much that it's just the mirror, but that it's something that could be fixed. But yeah. I'll whip up some PRs Also found the commit for mirror streams. It doesn't really explain why it's needed The first commit...
  2. I

    Four commands using registerSubstring

    Can add "brewery" as a command alias. Same for mirror, "mirrorend" and the like added. The reason I want to make this change is because it's effectively removing "mirror" from a possible script name. Which makes finding a name for the full length mirror semirare script a bit difficult.
  3. I

    Four commands using registerSubstring

    So I was looking at why I can't make a script called "pvpmirror" Then I realized it's due to some weird command registration behavior. So now I'm wondering why it's even a thing. Only 4 usages, and only one of them look valid. Github...
  4. I

    Feature Adding "stop" for scripts to gracefully stop

    You're effectively proposing that scripters should be scared of the users, that they should wrap everything in a series of tries. Abort is a pretty hard measure, while this proposal is about letting the program shut down safely. When the script is doing something it expects to error, it doesn't...
  5. I

    Feature Adding "stop" for scripts to gracefully stop

    Yes, but the key idea of this is that a script can exit gracefully on its own terms. If you really need to abort the script immediately, don't run anything more. Press escape. If you want to have the farming script stop midway after it's in a good state for the user to take over. Then use this...
  6. I

    Feature Adding "stop" for scripts to gracefully stop

    I agree that the reasonable stopping point should be determined by the script, so this would be something the script itself has to support. We have hard aborts, which forces the script to stop. And this is a graceful stop, which only the script would know. Just because I finished a combat...
  7. I

    Feature Adding "stop" for scripts to gracefully stop

    There are two ways for a script to exit. The first is on their own terms, the second is by aborting (Esc / Abort) which may leave the account in a bad state. But a lot of scripts are something that can exit midway gracefully, yet there's no actual way for the user to do this. Even with...
  8. I

    AccountVal - What are you worth? What can you sell..

    This is better something you look at yourself, you can filter the script to bound only, which should include only iotms. And filter familiars as well, and ignore those that are less than X meat. accountval fam bound limit=999
  9. I

    AccountVal - What are you worth? What can you sell..

    Try !familiar or !bound
  10. I

    AccountVal - What are you worth? What can you sell..

    Whoops! That's entirely on me. I forgot to ensure that the github actions would update the accountval_binds.txt as well. Should be resolved now.
  11. I

    AccountVal - What are you worth? What can you sell..

    That's weird, it's like you're running a older version of the script and a newer version. That code was added to fix an issue that was already corrected. Try reinstalling.
  12. I

    r26025 - Add autoForbidIgnoringStores property by @Veracity0 i

    @Veracity https://github.com/kolmafia/kolmafia/blob/main/src/net/sourceforge/kolmafia/request/MallPurchaseRequest.java#L52 Did you mean\\s?,\\s? or \\s*,\\s*
  13. I

    AccountVal - What are you worth? What can you sell..

    Instead of filtering, I've changed it to output into a single line.
  14. I

    AccountVal - What are you worth? What can you sell..

    svn checkout https://github.com/libraryaddict/KolMallHistory/branches/release/
  15. I

    AccountVal - What are you worth? What can you sell..

    Script has been updated to allow a ton more filtering, use "help" as a parameter to get more information. May also be more accurate.
  16. I

    AccountVal - What are you worth? What can you sell..

    Yes, this one isn't excluded. But as Crow said, it's pulling data from mall sales data. Which this one does as well.
  17. I

    AccountVal - What are you worth? What can you sell..

    This script allows you to view what your account is worth, what your expensive items are, what would be some good stuff to sell to make liquid.. Etc. This also pulls data from coldfront sales data. This is heavily inspired, and a rewrite of Soolar's script found at...
  18. I

    Scripts on SVN

    https://raw.githubusercontent.com/libraryaddict/KolAccountVal/master/script.json { "repo": "https://github.com/libraryaddict/KolAccountVal/branches/release/", "author": "Irrat", "name": "AccountVal", "shortDesc": "Script to value the worth of your account", "category": "information"...
  19. I

    Bug - Fixed my_class() returning void for Actually Ed the Undying

    This would be caused by https://github.com/kolmafia/kolmafia/commit/c82d28d5ee5969ecb970ede7f8db2a7b0167c852 The class is reported by KOL as "Ed the Undying" however Mafia expects "Ed" public static final void setAscensionClass(final String className) {...
Back
Top