Recent content by ElCarrot

  1. E

    Miner.ash - Automated ore farming

    One minor edit, I kept getting the error "Server returned response code 404 for mclargehuge.php", so I updated the line boolean m1open = contains_text(visit_url("mclargehuge.php"), "bottomright"); to read: boolean m1open = contains_text(visit_url("place.php?whichplace=mclargehuge")...
  2. E

    Bug - Not A Bug CEIL function not working correctly

    Thanks to everyone for the verbose explanation - I hadn't even considered many of the points made. I will be adding Fluxxdog's superior version of the calculation to my code.
  3. E

    Bug - Not A Bug CEIL function not working correctly

    I'm trying to calculate how many milk of magnesium's I need to use, so I use the calculation int numMilk = ceil((fullness_limit() - my_fullness()) / 15); In my testing, I ended up with 1 fullness, for a calculation of: ceil(14/15) This returns back 0 As a float - this is 0.933 repeating, so...
  4. E

    Small script for automating PVP fights

    Apparently mine was outmoded before I even posted it. I don't know why Donavin69's script didn't show up in my searches (I searched "PVP" and several other variants - wierd. Oh well - it was a fun exercise in coding.
  5. E

    Small script for automating PVP fights

    I was trying to automate my PVP fighting and I couldn't find any existing scripts for the new PVP fighting, and the old CLI commands didn't seem to work, so here's some basic code which will automate your PVP fighting for you. Notes: -The excise function comes from zlib so you will need to...
  6. E

    Feature - Rejected Tactic improvement requested for Unlucky Entryway

    Wearing Ring of Teleportation doesn't count for going through the three gates This has already been partially mentioned in this thread here http://kolmafia.us/showthread.php?5997-Tactic-improvement-requested-for-Unlucky-Entryway&highlight=teleportation, but one thing that I found was if I was...
  7. E

    Bug - Waiting for Info MP Restoration and Equipment Changing (Travoltan Trousers mostly)

    Mp restore not working correctly with Travoltan Trousers The issue I have been running into occurs in the following situation: 1. I have the Travoltan Trousers in my inventory 2. I have a mood running that purchases something from an NPC store (Such as hair spray) 3. My HP or MP go below the...
  8. E

    Question on how to define a mood that contains a semi-colon

    yup - I've tried using a comma, and you end up with an error like this: You don't have a skill uniquely matching "1 Fat Leon's Phat Loot Lyric, cast 1 Polka of plenty" (I've been testing with those two skills so I don't waste gongs or bugs)
  9. E

    Question on how to define a mood that contains a semi-colon

    Note: I am not sure if this is the proper place to ask - so if it necessary to move this question - please do. I am attempting to farm some feathers using Bale's excellent FeatherExpress script - and I was trying to define a mood which will automatically use a gong, and then use 5 yummy death...
  10. E

    Simple script for the Haunted House

    I wanted a simpler way for using up the guide's without having to click through all the time, so I made this quick and dirty script. Feel free to modify / re-use. int MapQuantity; int ChainQuantity; int MirrorQuantity; int ShellQuantity; void UseMap() {...
  11. E

    Unable to reliably change outfits in a mood script

    Ah - that explains it - thank you for the fast response.
  12. E

    Unable to reliably change outfits in a mood script

    I am trying to change the outfit that I use in a an unconditional trigger in my mood - but when I try to use the method cli_execute("outfit MinLvl"); Where the outfit can be any outfit, it only changes the outfit to whatever is currently being worn. The script is...
  13. E

    How do I Retrieve and Parse Dungeon Logs

    Thank you mredge73 - this works quite well. I am doing some testing - but so far it has performed perfectly. I haven't been able to test the following yet - but these test cases should still work. 1. If someone loses to mother slime 2. If someone gnaws through the bars in the CHUM cage 3...
  14. E

    How do I Retrieve and Parse Dungeon Logs

    Thanks - that seems to work fairly well. If anyone knows of a good way to do this in an ASH file so that I can incorporate it into a slime-tube script it would be great. e.g. -After killing all slimes, check total turncount, and if turncount is low enough to get bonus items, then get item-find...
  15. E

    How do I Retrieve and Parse Dungeon Logs

    In the clan that I am in, we get a lot of people adventuring in the slime tube at various ML. Some at very high ML, some at very low ML. As a result, when mother slime is up, I can't be sure if we managed to keep the turn count under 690. If we did, then I know that I should wear my item find...
Top