Search results

  1. raorn

    Slime Tube Adventuring Script

    I guess you have to make free runaway just after using a base pair? I don't think it worth it. +1300 ML could be obtained without base pairs, which is enough for Slimeling run with several squeezes.
  2. raorn

    Slime Tube Adventuring Script

    O.A.F. patch attached. Also fixes weapon/offhand issues when changing outits.
  3. raorn

    Slime Tube Adventuring Script

    When O.A.F. is active, olny MCD and bladder squeezes should be counted as ML modifiers.
  4. raorn

    Slime Tube Adventuring Script

    I would like to see O.A.F. support. http://kol.coldfront.net/thekolwiki/index.php/O.A.F. "At the beginning of every combat, the O.A.F. will remove all increased Monster Level. The only exception is +ML provided by the three Mind-Control Devices." "The debuffing function only removes buffs...
  5. raorn

    basement.php - quick command buttons

    Hi everybody, I'm back again with new relay override script! When running Firefox via ssh from remote machine, there's a 3-5 second lag when opening any pull-down item. This really speeds down my basement diving, so I decided to add some buttons for changing outfits and running other commands...
  6. raorn

    charpane.php override :: add turn-count

    You could also add semi-rare counters. Here's my quick-and-dirty counter extraction code: record counter { int turns; string name; string image; }; counter [int] get_counters() { string [int] counters = get_property("relayCounters").split_string(":"); counter [int] ret...
  7. raorn

    fight.php override - action buttons and a little fight-related library

    Updated Patamancer untyped bonus damage caps and added Combat Ghost summoning button.
  8. raorn

    auto BHH and friends

    Then you are L12 or higher. IIRC, bounty is not available once you have accepted L12 quest from Council. If there's a better way to check bounty possibility, let me know.
  9. raorn

    auto BHH and friends

    This may happen when: 1. not enought moxie for Wine Cellar, 2. War is started (Hippy Camp not available), 3. Muscle sign, Degrassi Knoll is no-adventure zone. I'll add some explanation why particular zone is not available.
  10. raorn

    auto BHH and friends

    If anyone interested, here's my (updated) autobhh script. Usage: call bounty.ash list - list choices or current hunt call bounty.ash accept {easy|1|normal|2|hard|3} - accept bounty (not checking possibility) call bounty.ash abort - cancel current bounty call bounty.ash {COUNT|*}...
  11. raorn

    fight.php override - action buttons and a little fight-related library

    Added Llama lama gong support. Nothing special, just always display form-given skills and temporary hide unusable class skills when having Bird or Mole form.
  12. raorn

    fight.php override - punchcard helper

    Fixed couple of bad typos. Scripts updated.
  13. raorn

    auto BHH and friends

    Oops. I was so tired of coding, and didn't write any documentation ;-) Number of adventures is a number or "*" which means "all adventures". It will stop if you complete bounty earlier. It is safe to omit "moxie diff" or use zero diff. You will be hit only by crotical hits. However, it uses...
  14. raorn

    auto BHH and friends

    OK. Here's my rewrite of auto bounty script. I've tried to follow KISS principle. Script takes two arguments, maximum number of adventures and maximum moxie difference (difference between moxie and "moxie for no hit" in given area). All bounty data stored in map. Item, plural name, quantity...
  15. raorn

    Mad Hatrack equip helper (relay override)

    Hat data updated form wiki.
  16. raorn

    fight.php override - action buttons and a little fight-related library

    Updated for new Pastamancer spells. Requires recent KoLmafia snapshot.[hr] I've changed my mind ;-) This script is compatible with KoL's action bar, which can be used for items.
  17. raorn

    Discussion: Standards in relay over-ride scripts

    Well, now I can write scripts that doesn't send request to server at all. Or chain two scripts that can make request with different parameters. I would like to see these possibilities with new greasemonkey-like script registration interface. That was exactly what I mean by the word "nerf" in...
  18. raorn

    Discussion: Standards in relay over-ride scripts

    Making merging shell-script requires lot of hand-working and manual editing. Why do it myself, if machine can do it easier? I've been working with this model for a while and this is what I have in mind: 1. One script may be executed on different pages. So it must tell Mafia on which pages it...
  19. raorn

    Implicit typecasts? How?

    Typo. I mean print("n = " + n.to_string());. Looks like Can I shorten constructions like "int sk = $skill[CLEESH].to_int()" to "int sk = $skill[CLEESH]" in general? For non-builtin types this would look like: record range { int max; int min; }; string to_string(range r) { return...
  20. raorn

    Implicit typecasts? How?

    Looks like mafia does implicit typecats. For example, in int n = 5; print("n = " + n); n in assignment will be autoconverted to_int(). Can anyone describe these rules? When mafia does implicit typecasts and when it bails with "can's assign XXX to YYY type"? I may admit, that mafia can...
Top