Search results

  1. E

    Maddening? Annoying? Everyone please read!

    I can easily understand why some bugs in kolmafia might bother someone from time to time. But please! Think about how what you are saying sounds before you speak! After all, Kolmafia is a great program which has allowed many of us to keep our interest up in a great game that has it's boring...
  2. E

    CLI session command

    I posted about this in one of the daily build topics, and it is still holding true. The file saved when using the session command seems to not be usable anymore. I don't know if it's a change server side, or something broken inside kolmafia. I am working a little more with Greasemonkey now, and...
  3. E

    Java script question and Relay question

    I know this forum is kolmafia scripts, but this question relates to ash scripting in that I am working on a relay over-ride script, and the tag-along javascript files. http://kolmafia.us/index.php/topic,1420.0.html I am wanting to center a button on a form, and the button is generated using...
  4. E

    KoLmafia Praise

    I just noticed something new in a daily build that I really like! For a long time now I have been going to the bounty hunter hunter in the relay browser, accepting a bounty, then spending 1 adventure in that location and letting kolmafia take over. Now I see that I cont have to take the time to...
  5. E

    A couple informational functions I can't figure out

    Actually that isn't very hard at all. This should be good till the year 10000 at which point neither of us should worry much about it anyway: int dayofweek(string date) { int c = substring(date,0,2).to_int(); int y = substring(date,2,4).to_int(); int m = substring(date,4,6).to_int()...
  6. E

    Libram of Divine Favors caster

    while(contains_text(visit_url("campground.php?action=bookshelf"), "You have a Libram of Divine Favors")) { visit_url("campground.php?preaction=summonpartyfavor"); cli_execute("status refresh"); }
  7. E

    Mall Search Menu system: updated, more items!

    Re: Mall Search Menu system: Questions aboard! Further Debugging has led me to discover that there is a difference between "searchmall.php" and "/searchmall.php" I was using "searchmall.php" and that was the cause of the breaking of UpUp.us Favorite Mall Searches.
  8. E

    Semi Rare adventuring

    you need to use int index_of( string source, string search ) and/or int index_of( string source, string search, int startfrom ) to locate the positions of the : and \ Next, use string substring( string source, int start, int end ) to extract what you want, you will probably need to...
  9. E

    Semi Rare adventuring

    Scripting adventures isn't my thing anymore, but: test.ash contains: print( my_turncount( )); print( turns_played( ) ); My turn count this run: 30,032 My Lifetime turn count: 175,585 So that will get you this runs turn count, but as for the turn count in which a semi-rare will occur, I don't...
  10. E

    Mall Search Menu system: updated, more items!

    Problems/questions are below the horizontal line Derived from: http://www.dynamicdrive.com/dynamicindex1/hvmenu/index.htm Details about the script: The script places a menu driven "Quick Searches" button into mallsearch.php I tried to center the button, and I am pretty close on my screen, but...
  11. E

    Link back to manage store at the top of the store log page

    As the topic says, this script simply puts a link back to your manage store page at the top of your store log. This avoids the need to scroll all the way to the bottom if your store is really busy.
  12. E

    Adding items to mall store defaults to adding all

    This script takes advantage of the fact that if you enter 0 into the quantity field when adding items to your store, then all of that item gets added. It simply makes the default value in that field 0 instead of 1. This may take some getting used to if anyone uses it because when you see 0, you...
  13. E

    unaffect: removed?

    Typing "uneffect spiky hair" into the cli yields: > uneffect spiky Hair Searching for items... Purchasing soft green echo eyedrop antidote (30 @ 236)... You acquire 30 soft green echo eyedrop antidotes Purchases complete. Using soft green whatever... Spiky Hair removed. typing "unaffect spiky...
  14. E

    How Many Untainted Eggnogs Do I Have?

    No un-needed server hits: how many in the closet? <inline-ash-script> Print("your closet contains " + closet_amount( $item[Untainted Eggnog] ) + " Untainted Eggnogs"); </inline-ash-script> How many total do I have in my inventory and closet. <inline-ash-script> Print("you have " +...
  15. E

    Maps: "foreach" until satisfied..?

    If kolmafia doesn't support break...I think it does, this just popped into my mind. item [int] famitem; famitem[12] = $item[lucky Tam O'Shanter]; famitem[11] = $item[lucky Tam O'Shatner]; famitem[10] = $item[miniature gravy-covered maypole]; famitem[9] = $item[plastic pumpkin bucket]...
  16. E

    Auto attack, build 5449

    I keep setting auto attack to attack with weapon using the relay browser, and kolmafia keeps turning it off when I run a script, or even when I just use the GUI auto adventure feature.. Can anyone tell me why it's doing this, and how to stop it?
  17. E

    trade response script Version 2, fixed and working.

    Determining mall prices of items is impossible within a kolmafia script. This script is also not very suited to your needs as it wasn't meant to be used to buy items, then re-sell them, but to simply buy them. My whole reason for writing this script was because I got tired of miscalculating the...
  18. E

    Tiny Plastic Series 1 collection script

    if(shop_amount(it) > 0) { //print("You have " + it + ", but it's being sold in your store."); print("Pulling " + it + " from your store."); visit_url("managestore.php?action=take&whichitem=" + to_int(it)); } visit_url("managecollection.php"); Then proceed to get info about your DC...
  19. E

    Happy Birthday Holatuwol

    Happy Birthday holatuwol
  20. E

    basic question for relaying

    Did you upgrade to a recent daily build?
Back
Top