Search results

  1. taltamir

    Feature Track usage of quest items that unlock locations

    $item[Hypnotic breadcrumbs] is quest item that can be used once per ascension to unlock $location[Madness Bakery] $item[Map to a Hidden Booze Cache] is quest item that can be used once per ascension to unlock $location[The Overgrown Lot] $item[Bone With a Price Tag On It] is quest item that can...
  2. taltamir

    Feature - Rejected handle float = int/int. always calculate division as integers first then convert on storage

    That line was me describing what integer division is 1/2 = 0.5 is just how math works 1/2 = 0 is how integer division works I was not referring to any intermediaries, but to the mechanism of integer division itself all data in a computer is stored. even if it is only in the processor cache.
  3. taltamir

    Improved Guild Trainer

    This script sadly died some months ago due to mafia update breaking. I have made a fix of it which can be installed from here https://github.com/Loathing-Associates-Scripting-Society/better_trainer
  4. taltamir

    Feature pull meat option

    That is very flexible. nice. in that case how about this then this.usage = \"pull [command, command, command...]\". valid commands: all | outfit <name> | <quantity> meat | <quantity> <item> - pull items from Hagnk's storage.";
  5. taltamir

    Feature - Rejected handle float = int/int. always calculate division as integers first then convert on storage

    I have a math issue when using mafia > ash float x = (1/2) Returned: 0.0 > ash float x = (1.0/2) Returned: 0.5 in the 1/2 case it does step 1: "integer divided by integer is 0.5 which is stored as an integer 0" step 2: "convert integer 0 into float 0.0" My request is. when mafia detects a...
  6. taltamir

    Feature pull meat option

    how about this.usage = " all | outfit <name> | <quantity> meat | <quantity> <item> [, <item>]... - pull items from Hagnk's storage.";
  7. taltamir

    Feature pull meat option

    The rounding is done by kingdom of loathing itself. any number you type during ronin is rounded up to the nearest 1000 when pulling meat from hangk. I was not aware that the gCLI command pull could be used for meat using the format you gave. Thank you for informing me. As you mentioned it is...
  8. taltamir

    Feature pull meat option

    I was hoping for both an ash command and a gCLI command. in unrestricted I would suggest hot rounding... but it would probably be fine to round there as well to save on some code by just always rounding up to nearest 1000
  9. taltamir

    Feature - Rejected get_campground() does not parse terrarium

    get_campground() does not parse $item[Familiar-Gro&trade; Terrarium] > ash get_campground() Returned: aggregate int [item] Certificate of Participation => 1 Dramatic™ range => 1 Queue Du Coq cocktailcrafting kit => 1 Frobozz Real-Estate Company Instant House (TM) => 1 Discount Telescope...
  10. taltamir

    Feature pull meat option

    the commands pull and take_storage() allow you to take items out of hangk, but there is no option to pull meat. (you can type an exact amount but the price is always rounded up to 1 pull being used for 1000 meat) would be great if there was an option to pull meat
  11. taltamir

    Feature - Implemented exposing use limiter via function (patch inside)

    Some items cannot be used right now because of some limiter that prevents their use. for example $item[M-242] is only useable on dependence day. This is checked internally by mafia when you try to use the item. as per UseItemRequest.java's private static int maximumUses( final int itemId, final...
  12. taltamir

    Bug - Not A Bug Jenkins API ?tree= stopped working

    thank you. that is very helpful
  13. taltamir

    Bug - Not A Bug Jenkins API ?tree= stopped working

    oh, thank you. is there a mafia version option? I also noticed that [url,artifacts[relativePath]] work as well.
  14. taltamir

    Bug - Not A Bug Jenkins API ?tree= stopped working

    there seems to be a problem with the jenkins API. if I use a browser to access and compare https://ci.kolmafia.us/job/Kolmafia/api/json to https://ci.kolmafia.us/job/Kolmafia/api/json?tree=builds in the former if I find builds and look at them they each have _class, number and url in the latter...
  15. taltamir

    autoscend - a sl_ascend fork/continuation

    It is rather meh in handling the riot and party skill. been meaning to improve it but did not get around to it. you can go into the gui setting, there is a setting there for not breaking the prism automatically when done. ... although it is not supposed to break the prism for avatar paths...
  16. taltamir

    Automatically download the newest daily build

    Thank you for the explanation on what happened.
  17. taltamir

    autoscend - a sl_ascend fork/continuation

    We moved away from using a FAQ gdoc file to instead using a wiki. You can find the autoscend wiki here https://github.com/Loathing-Associates-Scripting-Society/autoscend/wiki
  18. taltamir

    Automatically download the newest daily build

    Not working for me either. Jenkins also appears to have recently purged all kolmafia history, which is when the issue started.
  19. taltamir

    Bug - Fixed After ascension kol thinks you are an astral spirit until restart.

    it works now. thank you BTW did this only fix thinking class is astral spirit, or did it also address how "refresh all" does not refresh your class?
  20. taltamir

    Bug - Fixed typing login in gcli always performs a "logout" followed by error

    can confirm it is fixed. > login login username - logout then log back in as username. Please provide username to login. using login taltamir also works. thank you
Back
Top