Search results

  1. R

    Feature manipulate moods in ASH

    Right now, the only way to manipulate moods is with the CLI or using CLI_execute. This is often good enough but one thing that can't be done is get a list of all existing moods and their effects. I propose these ASH functions: bool[string] mood_names() TYPE_TBD mood_triggers(string moodName)...
  2. R

    Tell you what you got in the fax machine 1.0

    I tested this out, but it seemed to not update photocopyMonster until after the page loaded, so that was no help. I've been burned before by forgetting to check, especially when in a rush because rollover is coming. Mafia's faxbot support is broken since the chat update. (unless you still...
  3. R

    Tell you what you got in the fax machine 1.0

    I kept getting annoyed when I wouldn't get the fax I wanted. So I've written this relay script which tells you what arrived in the fax machine. Enjoy. svn checkout http://svn.code.sf.net/p/rlbond86-mafia-scripts/code/fax_tell/trunk
  4. R

    Calling arbitrary scripts and passing information between them

    Zlib properties are stored in a map and therefore suffer the file_to_map issue mentioned here.
  5. R

    Calling arbitrary scripts and passing information between them

    Actually, this works great if I do cli_execute('ashq import<' + filename + '>; func(url_decode("' + url_encode(parameter) +'"));'); So thanks!
  6. R

    Calling arbitrary scripts and passing information between them

    This would still fail if the string contains a " or ' character. I mean, it could be possible to escape those characters, but things would start to get hairy...
  7. R

    Bug - Fixed map_to_file and file_to_map do not work correctly with strings which contain "\n"

    map_to_file and file_to_map do not work correctly with strings which contain "\n" KoLmafia's I/O functions fail with maps which contain strings with endline characters. Here's a little example: boolean[string] m; m["Hello\nGoodbye"] = true; print("Original:"); foreach i in m print(i + ": " +...
  8. R

    Calling arbitrary scripts and passing information between them

    The problem is that "filename" is not known until runtime. I was under the impression that the import command must use a literal (like most languages)
  9. R

    Calling arbitrary scripts and passing information between them

    I'm trying to execute a script whose name is known at runtime. So far the only way I know to do this is by saying cli_execute(filename); but there's a problem. I want to pass some information to this script. So far I've come up with two similar ways to do this, but I'd like to know if anyone...
  10. R

    Character Info Toolbox

    Chrome, but this happens in firefox too. If I put the familiar above the stats, the scrollbar goes away. chit.character.avatar true chit.character.title true chit.checkversion true chit.disable false chit.effects.classicons none chit.effects.layout songs,buffs,intrinsics chit.effects.showicons...
  11. R

    Feature Some sort of way to check if an ASH file exists

    One simple example I could think of is CHIT, which could have custom plugins for blocks on the wall, it could search for relay scripts in a folder or named CHIT_*.
  12. R

    Character Info Toolbox

    It's there even when there's more than enough space for everything.
  13. R

    Character Info Toolbox

    I am having trouble with the newest version of ChIT, there is a scrollbar in the "ceiling" section: <html><head> <meta http-equiv="X-UA-Compatible" content="IE=8" /> <link rel="stylesheet" type="text/css" href="http://images.kingdomofloathing.com/styles.css"> <style type="text/css"> #nudges...
  14. R

    Feature Some sort of way to check if an ASH file exists

    Is there any chance of being able to search for the existence of a particular script, or get a list of all installed scripts, or some sort of dir or ls command? It would be nice to be able to be able to have some sort of plug-in support for scripts.
  15. R

    Bug - Not A Bug "Encountered Lag Problems" in zombie

    I've had problems with skills failing to cast in zombie. The relay browser just shows a blank page and the spell is not cast. The CLI shows > cast 1 Disquiet Riot Casting Disquiet Riot 1 times... Loading character status... Encountered lag problems. I think it might have something to do with...
  16. R

    Feature - Rejected support for different choice.php overrides

    It does if multiple script writers have made scripts and you don't want to merge them all together.
  17. R

    Feature - Rejected support for different choice.php overrides

    It would be very convenient if mafia would support multiple choice.php relay overrides. Right now if I want to override one choice adventure, I have to create choice.php and test for that adventure, which conflicts with any other choice overrides. I was thinking maybe mafia could specially...
  18. R

    Character Info Toolbox

    I think something happened with the new update. I'm getting the error message "CHIT: Error parsing refresh"
  19. R

    Feature - Implemented re-enable "breakfast" daily deed after breaking crystal in zombie

    All the NPCs return so "breakfast" should be reenabled after coming out of zombie mode.
Back
Top