Search results

  1. D

    ascend.ash

    I think a nice framework for a user to add their own quest scripts is a better idea than a fully automated set of scripts. Even if the fully automated script is a steep learning curve to get running, new players will be tempted to try it and miss out on KoLs humour and fun gameplay That said...
  2. D

    Maximize.ash, maximize equipment in one command.

    did your familiar already have a time sword equipt? currenly the script uses available_amount([item]) to find out how many swords you have but if your disembodied hand has one of the equipt (but is not your current familiar) this isnt counted adding a weapon as off-hand shouldnt be needed as...
  3. D

    Maximize.ash, maximize equipment in one command.

    I dont know of anyway to write files to the data directory, but you can move them to the data dir and kolmafia will find them for the script... the next version will change equipmentDataFile to '.ItemMap' which will create the files in the base script directory but hide them from the scripts...
  4. D

    Holidays, make sure to enjoy the feast

    Hi, just a simple script to make sure you enjoy the Feast of Boris when it happens without kolmafia expecting it (such as today) (set it to be your breakfast script or add it to your existing script)
  5. D

    Maximize.ash, maximize equipment in one command.

    equipt.ash version 1.2 adds handling of familiar items when picking or specifying a familiar, you can now use -item[] on familiar items (it doesnt check that the chosen familiar can equip the item so familiar specific equipment for a different familiar will likely cause problems) I am posting...
  6. D

    Maximize.ash, maximize equipment in one command.

    I picked up some non-standard familiar equipment today, will see how to best add support for it
  7. D

    Script to mallsell/autocut hardcore-unuseable items?

    CLI command "ashref" lists all the ash functions (much better for scripting than using CLI and also needed for access to maps, just name your script with the .ash extension) food items are stored in "fullness.txt", booze in "inebriety.txt" EatDrink.ash uses some similar files, reading that...
  8. D

    Maximize.ash, maximize equipment in one command.

    added Spooky Putty support, now you can (if you choose) let the script squash your spooky putty into the best equipment for your needs, it should also be capable of supporting multiples spooky puttys but i cant test that... specifying -putty[sheet] will make sure atleast one of your puttys is a...
  9. D

    Maximize.ash, maximize equipment in one command.

    I dont think i have any class specific items but ive tried to make a work around... replacing getTrimmedList with the bellow code should work boolean getTrimmedList(string attrib) { if (count(itemMapTrimmed) > 0) { clear(itemMapTrimmed); } foreach i in outfit_list { int rate =...
  10. D

    Maximize.ash, maximize equipment in one command.

    a quick search of modifiers.txt (kolmafia's internal data) only shows... V for Vivala mask Single Equip, Muscle Percent: +30, Critical: 1, Softcore Only on the wiki it shows the mask only gives experience on a critical hit (not having the mask im not sure how it works) if you wanted to force the...
  11. D

    Maximize.ash, maximize equipment in one command.

    I think thats because the script is expecting an 'unquoted' attribute at the end "call equipt.ash Item Drop" would work and ... "call equipt.ash -fill[Moxie] Item Drop" would search for Item Drop then fill the gaps with Moxie in both the last attribute isnt contained in -fill[] and is handled...
  12. D

    Tattoos.ash - Updated

    another small tip would be to have visit_url outside of the loop, no need to request the page each time, easiest way would be.. void get_tats_main(){ string html = to_lower_case(visit_url("account_tattoos.php")); foreach key in Tat { if (contains_text(html, to_lower_case(Tat[key].Img))) {...
  13. D

    Maximize.ash, maximize equipment in one command.

    Hi I've remade (most of) the script, you can now specify a list of attributes you want... such as... call equipt.ash -fill[Item Drop] -fill[Moxie] Meat Drop will fill up your outfit with your best equipment for Meat Drop, then fill any gaps with your best for Item Drop, then finally fill with...
  14. D

    Check for missing hobo glyphs

    a quick update to avoid hammering the server with lots of visit_url()'s void main() { string html = visit_url("questlog.php?which=5"); void check_glyph (string where, string when) { if (!contains_text(html, where)) print(where + " - " + when); } void check_glyph (string where) { if...
  15. D

    Patches?

    the load on the servers during crimbo is incredibly high, any automation of crimbo content, the .patch would allow that, is frowned apon
  16. D

    Patches?

    the only .patch file ive seen is for the crimbo areas, the file has now been removed by a mod... unless there is another .patch file somewhere on the board i dont think anyone will help until crimbo has ended
  17. D

    Help!!

    there are two scriping methods, CLI and ASH, any filename ending with the .ash extension is considered to be programmed in ASH... its a more complex system but it allows conditional statements, if you reprogrammed hotwings.txt into ash you could check that you needed to buy a hot wing instead or...
  18. D

    Help!!

    im not sure what you mean by script title, but typing a scripts filename will execute all the code inside of it try creating a file called hotwing.txt in your scripts directory and paste in the following... buy 1 hot wing eat 1 hot wing typing "hotwing.txt" (without the quotes) should buy then...
  19. D

    EatDrink.ash: Optimize your daily diet (and see how your old diet stacks up).

    both files just have minor changes... Runtime imports 3 new librarys, defines the new buy (i would like to just call "buy <count> <item> max price <price>" but couldnt understand enough about the regex/pattens)... kolmafia.java makes changes to makePurchases (and makes a wrapper so it can be...
  20. D

    EatDrink.ash: Optimize your daily diet (and see how your old diet stacks up).

    ive got a similar script (not as complex) but its search for the best item is what takes the most time during a run, a simple change to only recalculating the best when it couldnt afford/consume the current best seamed to increase its speed quite a bit, i got a bit lost reading through your...
Back
Top