Search results

  1. xKiv

    Bug - Waiting for Info Can't grab scripts on mac version

    Off the side of my head, that looks like your mac has an obsolete version of java.
  2. xKiv

    Bug - Not A Bug svn update broken

    ... because they are on GitHub and not SourceForge?
  3. xKiv

    New Server

    Didn't the old server have working https? The new one doesn't seem to.
  4. xKiv

    Bug - Fixed Login <username> no longer resetting daily variables in some cases

    Rollover generally starts around UTC 3:30 (whcih is exactly midnnight in UTC-0330), give or take a couple (dozen) seconds, so basing it off "GMT-0330" is as close as we will get. It also lasts a nontrivial time, so it always *ends* after UTC 3:30. (UTC is almost the same as GMT, but IMAO more...
  5. xKiv

    New Content January 2018 IotM: January's Garbage Tote

    That would be nice. (also the burning newspaper derivatives, which "break" on rollover. They are why I forbid foldables - I don't want to spend (currently) 40k meat on something that's considered free).
  6. xKiv

    New Content January 2018 IotM: January's Garbage Tote

    BTW, I only recently realized there's a checkbox for that. I normally don't see it, because the maximizer's window pops out too small to fit the checkbox in, so it doesn't appear unless I resize the window (which I often do just to see more suggestions at a time, and give more room for the...
  7. xKiv

    My personal Meat farming script

    Not according to what I see in the code. Acquire (aka retrieve?) know how to create, but neither knows how to fold.
  8. xKiv

    Bug net.sourceforge.kolmafia.swingui.AdventureFrame could not be loaded

    The first NPE is in "selected.requestFocus()" in int currentTabIndex = KoLDesktop.INSTANCE.tabs.getSelectedIndex(); if ( tabIndex == currentTabIndex ) { JComponent selected = (JComponent)KoLDesktop.INSTANCE.tabs.getSelectedComponent(); selected.requestFocus(); } which at least...
  9. xKiv

    OCD Inventory control

    That's usually true, but at this moment the latest stable build (on sourceforge) is only two weeks old, which makes it only *slightly* old, and not yet ancient! It has (I presume) the current iotm, at least. But not crimbo places.
  10. xKiv

    Bug - Cannot Reproduce scripting appears broken? (r18325)

    That has likely all to do with starting new session(s), rather than build version.
  11. xKiv

    Bug - Cannot Reproduce scripting appears broken? (r18325)

    That's one of those things that Cannot Happen (tm) (r) (c), unless there's something seriously wrong with your computer, or java, or at least something like suddenly not having enough memory. I don't think we got anywhere the last time this happened to somebody.
  12. xKiv

    New Content - Implemented 2017 Crimbo content

    I just got 30 crystalline cheer from a cheer wine, so that's a half-confirm?
  13. xKiv

    Bug - Waiting for Info "since" with point version fails

    I am definitely running at least the part that sets KolConstants.REVISION (currently at "18292M"). Until I started doing that, every script using "since" would complain (unless I made it pass the check anyway).
  14. xKiv

    Bug - Waiting for Info "since" with point version fails

    This change makes it work for me. (are you running builds with KolConstants.RELEASED=false? Or maybe it's something with how I build from svn ...)
  15. xKiv

    Bug - Waiting for Info "since" with point version fails

    Ezandora's guide has since 17.6; Trying to activate it prints "Unexpected error, debug log printed." in the gCLI. The exception is an outofboundsexception at net.sourceforge.kolmafia.textui.Parser.enforceSince(Parser.java:4431) The line in question: currentVersion =...
  16. xKiv

    Vhaeraun's Glorious PVP Bookkeeper

    Yes. You need \\ in the source file to put a \ in the actual string value. And you need \* in the actual string value to match a literal asterisk. The second asterisk is just the normal greedy quantifier - match zero or more instances of the preceding "literal asterisk" (so it will match texts...
  17. xKiv

    Vhaeraun's Glorious PVP Bookkeeper

    regex has: align="center"> page has: align="center" colspan="1"> And the * is handled by: \\** (zero or more asterisks). So you probably want something like: (\\*|‡)* (modulo correct quoting and grouping)
  18. xKiv

    Bug - Waiting for Info Can't log in--"IOException during data post"

    Is it a new issue (i.e. did mafia work for you before this), or has it been happening for longer time? What version of mafia? Where did you get it? (it's probably best to get last build from http://builds.kolmafia.us/job/Kolmafia/ )
  19. xKiv

    Bug - Waiting for Info Custom Combat Script doesn't recognize random monsternames

    These are BALLS commands, no? Passed straight to kol's native macro processing anyway? And doesn't monstername only match canonical (manuel) name of the monster? If so, you need "match" and accept that it will have too many false positives. (I guess what I should say is: first test the same...
  20. xKiv

    How do I make mafia auto abort adventure automation when I get beatup?

    Oh. I must have gotten confused with who wanted what in this thread and reacted to something that does not even exist. On a reread: I guess you shouldn't abort in a mood, because then anything you try might trigger the mood first, which will abort again?
Back
Top