Search results

  1. E

    Building from the SVN?

    When I use ant daily I get "KoLmafia-${revision}.jar" exactly. No version number.
  2. E

    trade response script Version 2, fixed and working.

    The original intentions of this script were for it to be manually run while in chat when you see a trade offer notification. Making it loop is simple. Start a new script. While(true) { cli_execute("call traderesponse_ver2.ash"); cli_execute("wait 120"); } Call it looped_response.ash or...
  3. E

    Alternate Trade Response Script

    config needs to be in a folder called tradebot, a sub folder of your scripts folder which you will need to create.
  4. E

    I'm starting to think I'm "Special"

    use "attack" if there is no next action, kolmafia will repeat repeatable commands.
  5. E

    Building from the SVN?

    1: http://www.mirrorgeek.com/apache.org/ant/binaries/apache-ant-1.7.0-bin.zip yes, Command prompt 2: http://java.sun.com/javaee/downloads/index.jsp click download with JDK, newer versions work. 3: yes
  6. E

    Building from the SVN?

    read the directions? http://ant.apache.org/manual/install.html#installing Pay close attention to the sections: "Windows and OS/2" and "The CLASSPATH environment variable"
  7. E

    Reducing server hits while debugging...

    when writing scripts that deal directly with html during debugging you have server hits to test the script. What's been done is you are now allowed to save the html and reload it instead of having to get it from the server every time.
  8. E

    Degrassi knoll general store: added items Version 2 more items!

    Re: String closing and Degrassi knoll general store knoll_buy was actually blocking the buy command from equipping travoltan trousers. Trying to keep true to the price listed in the store. The performance issue I can understand. I kind of hope more people will write up relay over-ride scripts...
  9. E

    Farming outfit equip weapon and off-hand not working.

    try: retrieve_item(2 - available_amount($item[bar whip]), $item[bar whip]); in the off hand function and: retrieve_item(1 - available_amount($item[bar whip]), $item[bar whip]); in the weapon section. It looks like you are equipping it to weapon in the weapon function, then retrieving 2 which...
  10. E

    Degrassi knoll general store: added items Version 2 more items!

    Re: String closing and Degrassi knoll general store I couldn't think of any other stores which had items which I would want to add right off, but I do prefer your way of writing it. I've actually used your way before, just this time I wasn't thinking much about it. Thanks! I see you...
  11. E

    Degrassi knoll general store: added items Version 2 more items!

    Re: String closing and Degrassi knoll general store Obviously I needed to take a break from it yesterday. When I went back to work on it I saw the ever so obvious. Where I meant to use the string Fail_no_meat I instead used the string ErrorStr. This was on top of the other problems noted. the...
  12. E

    Degrassi knoll general store: added items Version 2 more items!

    Re: String closing and Degrassi knoll general store Thank you Veracity, I have to admit that was pretty dumb of me. I wasn't looking at the parameter function call, just the main function call. New problems In the relay browser: I don't know how to word this problem, or describe it except to...
  13. E

    Degrassi knoll general store: added items Version 2 more items!

    Re: String closing and Degrassi knoll general store Thanks Holatuwol! I'm moving on with the script, and it's nearing functionality at which point I will move on to simplify the script. Problem is now I am getting an error message that doesn't make sense to me. Index has wrong data type...
  14. E

    Degrassi knoll general store: added items Version 2 more items!

    Re: String closing and Degrassi knoll general store I'm getting No closing " found (store.ash, line 20) Line 20 contains several ; in a string. I tried \; like with " but I still get the error message.
  15. E

    Degrassi knoll general store: added items Version 2 more items!

    Re: String closing and Degrassi knoll general store Thank you, now off to work on a script for a bit till I have to do other things!
  16. E

    Degrassi knoll general store: added items Version 2 more items!

    Re: String closing and Degrassi knoll general store Including quotes in a string is what I meant. For simplicity sake how about making this work: print("pet rock "Snooty" disguise"); print("pet rock \"Snooty\" disguise"); is the correct way? I'm not meaning sarcasm here, and hope it wont...
  17. E

    Degrassi knoll general store: added items Version 2 more items!

    Version 2 is here! Differences: 1: Added Items which can be smithed by Innabox, and require only NPC items, or meat stacks/dense meat stacks. 2: split the page a little to make finding desired item faster. [hr] This script was re-worked by Holatuwol, and attached to their post also. The...
  18. E

    Relay override ... what?

    Thanks for adding this Holatuwol! Soon I will be writing up some scripts which will make use of this feature, and you may like some of them enough to add them to the list of great relay features built into kolmafia.
  19. E

    Alternate Trade Response Script

    TradeBot Config.ash Nightmist may need to do a major re-write. A long time ago I had to rewrite my trade scripts for this same reason. There was an indexing change in kolmafia shortly after this script and mine were written.
  20. E

    Re: [CLI] Simple Scripts: Nemesis Prep

    Re: [CLI] Simple Scripts: Nemesis Prep Old topic. It may not have been possible when The script(s) were written.
Back
Top