Search results

  1. Ulti

    Weird name highlighting issue

    For some reason whenever my username appears in mafia's chat or gcli, it highlights the "ulti" part of it. For example if I execute: ashq print('ultibot'); It appears in the gcli like so: Notice the ulti part of my name is colored #735557 while the bot part is colored #373938 like so: ultibot...
  2. Ulti

    Thought I'd share a .bat file I wrote for executing the latest KoLmafia-*.jar build

    My setup looks something like: kolmafia/scripts/ kolmafia/relay/ kolmafia/KoLmafia-16261.jar kolmafia/KoLmafia-16396.jar Eventually, I got sick of navigating to my kolmafia directory and finding the latest jar file to open, so I wrote a .bat file to open the latest jar file. @echo off...
  3. Ulti

    The kolmafia wiki fast again

    Thanks for fixing the kolmafia wiki. (Not sure who to thank) I look forward to contributing again to make it a better resource now that the pages are loading faster.
  4. Ulti

    Feature - Implemented The scripts menu has no scroll bar and goes offscreen with 30+ scripts

    When there's 30+ files in your /scripts directory, the KolMafia's "Scripts" menu displays them all but the ones on the bottom get cut off the screen with no way to click them. There should be a scrolling feature to move up and down or a pagination of some sort, so you can click scripts near the...
  5. Ulti

    Feature cronjob-like setting

    I'd like to see the ability that every "x" seconds, KoLMafia can run a saved command in the gCLI. I don't care if it get queued or not, but the idea is that one should be added to the queue on an interval. I know it's possible to have the interval controlled by JavaScript and ping KoLMafia, but...
  6. Ulti

    Feature - Rejected Add storage capabilities to maximize for query optimization purposes

    I'm sure we can agree there's gotta be a better way of accomplishing this and having to wait for the same maximize query each day in case you gained access to a new item: Maximizing (1st time may take a while)... 15711 combinations checked, best score 1,177.74 34013 combinations checked...
  7. Ulti

    farm-barf-mountain.ash

    This is a script I wrote rather quickly for a clannie. https://github.com/Ultimater/farm-barf-mountain Installation: svn checkout https://github.com/Ultimater/farm-barf-mountain/branches/master/farm_barf_mountain Once ran, it equips the highest meat drops equipment it can find for you, your...
  8. Ulti

    Feature - Rejected safe multi-stage crafting

    Due to free crafting adventures remaining being unreliable and miscounted with multi-stage crafting, we can't be sure how many adventures were saved by the text alone, thus we're stuck making guesses how many adventures were saved based on the recipe we're making. With the above in mind, the...
  9. Ulti

    Bug - Fixed Can't break from foreach for aggregates of depth 3

    This works as expected, breaking after printing 'a -> apple' and hiding the 2nd two. ash string[string] agg;agg['a']='apple';agg['b']='blue';agg['c']='carrot';foreach k,v, in agg{print(k+' -> '+v);break;} Now, if I add an additional layer of depth, I'm unable to break from the loop and all 3...
  10. Ulti

    garbage collecting CLI command?

    Is there a CLi command for garbage collecting, the "Collect Garbage" icon on the top right in Mafia which results in something like "Reclaimed 42197 KB of memory". I'd like to be able to clear the garbage when memory is the lowest when the CLI is responding to scripts through the relay browser...
  11. Ulti

    Bug xpath() fails to handle node-set unions correctly which use the "|" operator

    xpath() fails to handle node-set unions correctly which use the "|" operator The mafia version I'm using is r15777. Run this and you'll get an "invalid xpath expression ()" error: ashq string[int] s=xpath(visit_url('questlog.php?which=7'),'//a[@href="campground.php"]/text() |...
  12. Ulti

    Feature ability to predefine records enabling record recursion

    While trying to create an ash equivalent of simple_html_dom.php to add to the framework I've been working on, I've been creating many workarounds to overcome ash's limitations. You can get an idea of what I've been busy with by running this state-of-the-art masterpiece in the making...
  13. Ulti

    understanding ash call() function example on the wiki

    http://wiki.kolmafia.us/index.php?title=Call I don't get how the output is: c = 5.0 hello world done There's no function named hello world.
  14. Ulti

    Feature - Rejected Adding a /kolmafia chat channel by extending api.php with CDMoyer's help

    The idea to my request is to have an extra chat channel added to the game (e.g. /kolmafia) where players running kolmafia can chat with each other (by means of a 3rd party server) with their KoL usernames . The "channel" would display in-game like all other channels and would show the usernames...
Top