Search results

  1. taltamir

    autoscend - a sl_ascend fork/continuation

    Just so you know, it is possible to go into kol settings and give up on a run that started a long time ago. autoscend is mostly assuming that you run it from the beginning of an ascension. As it is hard to account for whatever weird things the player did first. It won't stop you from doing so...
  2. taltamir

    autoscend - a sl_ascend fork/continuation

    check the gCLI again, it should explicitly tell you how to continue. it should have said in blue text
  3. taltamir

    Character Info Toolbox

    It does, thank you. I will take a look at how garbo does it
  4. taltamir

    Character Info Toolbox

    void SVN_ChIT_fix() { if(svn_info("ChIT").last_changed_rev > 0 && !get_property("_chitUpdatedToday").to_boolean()) { cli_execute("svn delete Loathing-Associates-Scripting-Society-ChIT-branches-main-src"); cli_execute("svn checkout...
  5. taltamir

    Character Info Toolbox

    surprisingly some of them work. it is very mysterious. but yea, you need to regularly reinstall
  6. taltamir

    autoscend - a sl_ascend fork/continuation

    A little bit of column a, a little bit of column b. it will probably get beaten up a lot but can chug along and finish the ascension. It will attempt to buy necessary skills in run if possible. but meat is going to be very limited if you have so few perms. If you do not have essential perms I...
  7. taltamir

    Feature add preference which exposes amount of [11-leaf clover] bought / remaining from hermit today

    [11-leaf clover] is limited to 3 purchases per day. since https://github.com/kolmafia/kolmafia/pull/457 mafia tracks the number of clovers bought from hermit today internally, but does not expose this number. would be great if there was a variable such as _11-leaf_clover_remaining or...
  8. taltamir

    Feature - Implemented hermit(int, item) returns true on failure to buy clover

    The fix is incorrectly throwing an abort instead of just returning false. > ash hermit(1, $item[11-leaf clover]); print("test works"); Asking for 1 11-leaf clover, but 0 left today. Returned: false > ash hermit(1, $item[ketchup]); print("test works"); Visiting the Hermit... You acquire...
  9. taltamir

    autoscend - a sl_ascend fork/continuation

    something might have changed too. see https://github.com/Loathing-Associates-Scripting-Society/autoscend/issues/1011
  10. taltamir

    Feature - Implemented hermit(int, item) returns true on failure to buy clover

    using the hermit command returns true on failure to buy a clover (due to having reached the limit of 3 a day) > ash hermit(1, $item[11-leaf clover]) Returned: true it should only be returning true if it actually bought a clover
  11. taltamir

    crimbo script

    is it plausible to have both git and svn in mafia together? svn checkout svnscript git checkout gitscript That way you do not have to worry about making sure it still works with svn scripts, since those will be handled by the existing svn code svn scripts already instruct the user to install...
  12. taltamir

    crimbo script

    Mafia uses svn to access to git repositories instead of using git natively. Ever since autoscend renamed its main branch from beta to master github developed an unfixable (no user exposed method to touch it) fault that is messing up the ability of mafia to keep it up to date. necessitating...
  13. taltamir

    crimbo script

    I added the ability to (must manually opt in) spend your gooified matter in the gift shop automatically. Check the GUI if you are interested.
  14. taltamir

    crimbo script

    huh. that is pretty odd. I think maybe I should remove autoscend as a dependency and just make a note on the site to install autoscend seperately first? Glad to hear it.
  15. taltamir

    crimbo script

    I have been working on a crimbo automation script. Have been updating it every day as more content comes out. check the dropdown menu at top right of the relay browser and select crimbo. configure the options, then run the script. either from dropdown menu of scripts (be prompted to type in...
  16. taltamir

    Bug r26033 broke mall

    I tested several times (fully turn off mafia and then run it again on a different version) mall works with r26032 and is broken in r26032 https://github.com/kolmafia/kolmafia/compare/r26032...r26033 the specifics of the break are: 1. when using the purchase tab to search for items (ex: "cocoa...
  17. taltamir

    New Content Crimbo 2021

    So I used your PR here as a guideline https://github.com/kolmafia/kolmafia/pull/352 and then tried it. The github web editor was inconvenient and didn't even work at first because it wouldn't let me create a new branch. Instead it wanted me to commit the changes directly to one of the...
  18. taltamir

    autoscend - a sl_ascend fork/continuation

    Nobody got around to fix it.
  19. taltamir

    autoscend - a sl_ascend fork/continuation

    1. I think there might be an option to override equipment in the autoscend gui settings page. 2. someone is working on it right now 3. no current support. some of the devs want it, but everyone is busy with other stuff 4. No idea. sorry
  20. taltamir

    Bug - Not A Bug exception: org.tmatesoft.svn.core.SVNException: svn: E175002: connection refused by the server

    Yes that is what I am proposing. Actually thinking about it further. I think mafia should have something akin to int threadcount = get_property("svnThreadPoolSize").to_int(); if(update_url.contains_text("sourceforge")) threadcount = 1; to force threadcount to be 1 for sourceforge...
Back
Top