Search results

  1. coderanger

    EatDrink.ash: Optimize your daily diet (and see how your old diet stacks up).

    I think the changes to wads is also throwing things off.
  2. coderanger

    "There was a problem accessing the Map Manager" from combat scripts

    To answer my own question: zachbardon.com now uses LetsEncrypt for its TLS cert, and my Java was too old to trust that CA root. I tried manually importing the CA root cert but that didn't work (I suspect it should have but maybe I did something wrong), but upgrading to a newer JVM fixed it entirely.
  3. coderanger

    "There was a problem accessing the Map Manager" from combat scripts

    A little further digging, it's from trying to update the batfactors map. https://zachbardon.com/mafiatools/autoupdate.php?f=batfactors&act=getver gives me a normal response from a browser but Mafia is seeing "".
  4. coderanger

    "There was a problem accessing the Map Manager" from combat scripts

    I'm returning to Mafia after a bit of a hiatus and I've tracked down most of my scripting errors but I still get "There was a problem accessing the Map Manager" at the start of each combat. I'm using WHAM, but it's updated via SVN so maybe something else I added somewhere?
  5. coderanger

    SmartStasis -- a complex script for a simple CCS

    Is there a way to make SS use EXTRACT if it is available? I could just put it in my CCS before WHAM but it seems worth having as a global thingy.
  6. coderanger

    bumcheekcend.ash - A zero setup semi-automated ascension script!

    For those that updated to r15893, search and replace for the names (each appears twice): "Pre-Cyrpt Cemetary" is now "The Unquiet Garves" and "Post-Cyrpt Cemetary" is "The VERY Unquiet Garves".
  7. coderanger

    Scripting the birth of a new life.

    Missing a colon after the new case statement.
  8. coderanger

    Improved Builds Page

    Swanky!
  9. coderanger

    bumcheekcend.ash - A zero setup semi-automated ascension script!

    Another more generally relevant fix is that all the spleen-use calls need to be changed from use() to chew() for newer versions of Mafia. Just search for "groose grease", they are all right next to each other.
  10. coderanger

    bumcheekcend.ash - A zero setup semi-automated ascension script!

    I'm guessing not a ton of people are still doing paths where this is a thing, but it would be nice for me at least FaxBot seems pretty much dead at this point.
  11. coderanger

    Campground -> Ed's Tomb

    Hah, I'm actually using that script so I wonder if mafia's svn client will be smart enough to merge them. Woo contributing upstream!
  12. coderanger

    Campground -> Ed's Tomb

    Simple snippet for your campground.ash for those of you too lazy to change your top menu for Ed. void main() { if(my_path() == "Actually Ed the Undying") { visit_url("place.php?whichplace=edbase", false).writeln(); } }
  13. coderanger

    BatBrain -- a central nervous system for consult scripts

    I seem to be getting errors in the basement against the Ghost of the Grandfather. It is inside to_spread, the damage string being passed in is "3,445 hot,cold,spooky,sleaze,stench". I'm guessing that is just a high damage number and should have the comma removed: matcher decomma =...
  14. coderanger

    News on the main map

    If you are like me and auto-load in to chat you might sometimes miss important updates or announcements. Quickie fix to add the news feeds below the main map: // relay/main.ash void main() { string main = visit_url(); string updates = visit_url("chatlaunch.php", false); updates =...
  15. coderanger

    Allowing more files in SVN repos

    That's one option, or you can do what I've done now and make a second branch that has the README deleted, but it would still be a nice addition globally to support a README alongside scripts. I'm aware that most people writing Mafia scripts aren't full-time software devs, but it is something to...
  16. coderanger

    Allowing more files in SVN repos

    GitHub, and most other project hosting sites like BitBucket and GitLab, special case /README in the repo and show it as on the project page. Adding stuff under data/ will not have the same effect.
  17. coderanger

    Allowing more files in SVN repos

    So I have one of my scripts posted to GitHub. The SVN client in Mafia works great with GitHub's SVN support, but because Mafia doesn't allow extraneous files I can't include a README easily. Is there a major reason to leave this restriction? Whitelisting something like README* and docs/ would...
  18. coderanger

    New Content - Implemented Subscriptions page

    Yep, that's going to be the best option. The whole browser security model is built specifically to prevent this kind of tampering. You could make it work to view subscription status via mafia, but you will definitely need an intercept-and-warn at some point. It can either be for the whole...
  19. coderanger

    New Content - Implemented Subscriptions page

    From having just set one up, I can see the issue CDM is worried about. To actually create (or probably change/cancel) a subscription you'll have to be logged in with a cookie for kingdomofloathing.com because thats where Amazon will send your browser. You should be able to see your subscription...
  20. coderanger

    New Content - Implemented Subscriptions page

    Just for tracking purposes, this redirects outside of mafia, which you aren't logged in to so it dumps to the front page.
Top