Search results

  1. C

    LevelUp find best location to level up

    Totally agree, that's why it's version 0.1 I wanted to get opinions on the approach to "safe adventuring" and XP calculation. Do you know a source for parseable non-combat data? I've scraped the wiki's non-combat pages but there's a lot of stuff to grind through. Eventually I want to include...
  2. C

    ZLib -- Zarqon's useful function library

    Oh right. I've been using my pageCache.visit_cached_url so that repeatedly checking the same page doesn't hit the server when I do it. I guess that means I should post my scripts. Done.
  3. C

    pageCache: simple LRU cache of visited URLs

    I'm also considering expanding the default cache size but I wanted to make sure it played nice first. I've tested it and the page cache is pretty small, so I think it might be ok.
  4. C

    LevelUp find best location to level up

    UpLevel find best location to level up UpLevel 0.2 What is it? A script to list the best places to adventure in order to get experience. This is an early release to get comments, it's not complete. Some possibly interesting features: Instead of depending on safe moxie, it relies on logic...
  5. C

    CanAdv can I adventure here?

    CanAdventure 1.2 What is it? A set of functions to determine if it's possible to adventure in a location. Inspired by zarqon's canadv, but takes a different approach. It's data driven, using a map of locations and predicates, and a general purpose predicate evaluator. Note: Depends on zarqon's...
  6. C

    predicate.ash: general purpose predicate expression evaluator

    predicate 1.0 What is it? A general purpose predicate expression evaluator. A predicate is a string expression that evaluates to true or false. Examples: primestat<29,ascensions>0,outfit=cloaca-cola uniform,quest=fernswarthy's tower or item=dingy dinghy,equip=pirate...
  7. C

    pageCache: simple LRU cache of visited URLs

    pageCache 1.1 What is it? A drop-in replacement for visit_url that implements a simple LRU cache. Script developers can use visit_cached_url(string) instead of visit_url(string). Note: Depends on zarqon's excellent zlib.ash and my log_lib.ash make sure you install them first. For Users...
  8. C

    log_lib message logging and printing library

    log_lib 1.0 What is it? A set of functions and constants for controlling printing of errors, warnings, informational, and debugging messages in scripts. Users can set the property log_verbosity to control how chatty scripts that use this library are. Script developers can use...
Back
Top