Search results

  1. C

    Edscension - Your #1 Karma Farming Script

    Okay, that's good to hear. Eventually, (assuming I continue to work on it for a while) I'd like for the script to be very tolerant of whatever starting conditions users throw at it, as well as any strange things they might decide to do mid-run. At the moment, though, that's not the case. And...
  2. C

    Edscension - Your #1 Karma Farming Script

    Hmm. Thanks for the feedback. Which astral gear did you pick? I believe my latest changes will work best with an astral bracer, (or the ring, which should be about the same, but not as well-tested) and sometimes I have had trouble if I pick something else. Also, on accounts that have done a...
  3. C

    New Content - Implemented Barrel full of barrels revamp

    By now i'm sure there's good info on the wiki, but I figured I'd point out that better items appear once barrels have been rotated out of the lowest row.
  4. C

    Edscension - Your #1 Karma Farming Script

    Oh. I had somehow gotten the impression that cc was no longer maintaining one. Or, not as an Ed script, or something.
  5. C

    Edscension - Your #1 Karma Farming Script

    Oh, wait. I've got it. The command should be: svn checkout https://github.com/wmarkham/Edscension/branches/master/
  6. C

    Edscension - Your #1 Karma Farming Script

    Cool, thanks! I got rid of them, though, and still get that same message.
  7. C

    Edscension - Your #1 Karma Farming Script

    Should I be able to: > svn checkout https://github.com/wmarkham/Edscension Starting Checkout... Validating repo... The requested repo failed validation. Complain to the script's author. Done. ? I also tried complaining to myself.
  8. C

    Edscension - Your #1 Karma Farming Script

    No worries. Let me apologize for not knowing how to set up the GitHub stuff properly for svn use by Mafia. I would do it, if I knew how. Would anyone care to enlighten me? I am also entirely new to git and github. Is there something about the project I made that prevents people from...
  9. C

    Bug - Fixed Mafia and KoL disagree about spleen limit, if spleen skills purchased out-of-order

    Yeah, I even had the Ka on hand to buy the other one, so it was not a big deal for me once I realized what had taken place. But since it's an easy fix, it's also good that KoL and Mafia are on the same page, now. Thanks!
  10. C

    Bug - Fixed Mafia and KoL disagree about spleen limit, if spleen skills purchased out-of-order

    So, the root issue here is due to a bug in my Ed script, that purchased a spleen skill before purchasing its predecessor. But, KoL seems to have accepted that, and given me the skill. When I did this, KoL credited me 5 spleen limit, but Mafia gave me 10. (The spleen in question was "Yet...
  11. C

    Edscension - Your #1 Karma Farming Script

    I made a fork in github to store my own version of Zen00's script. A few of the changes there may be of interest more broadly. In particular, I have some fixes to the handling of The Horror, that include the elimination of code that undid the equipment changes that the maximizer had performed...
  12. C

    Bug - Waiting for Info In HC Ed, but mafia is convinced my char is in aftercore

    Okay, just for the record, dropping hardcore didn't fix the problem, because I still have a few turns of ronin, which Mafia fails to recognize.
  13. C

    Bug - Waiting for Info In HC Ed, but mafia is convinced my char is in aftercore

    I want to avoid getting Ed skill points, in the interest of testing my version of Zen00's ascension script. (I don't mind getting karma, though, so I didn't see any reason to drop hardcore.) So, maybe not a good reason. But a reason, anyway. I'll just drop hardcore as well.
  14. C

    Bug - Waiting for Info In HC Ed, but mafia is convinced my char is in aftercore

    I'm having a similar-sounding issue (but presumably with a different cause) after dropping the Ed path. I dropped it immediately after defeating "You the Adventurer". KoL has the gash available to me, as if I had freed the King. However, I'm still hardcore, which Mafia recognizes. Yet Mafia...
  15. C

    SmartStasis -- a complex script for a simple CCS

    It doesn't seem particularly relevant that other familiars don't do anything after round 3 in the crown, since the chick and ghost are apparently the same in that respect. Or, are you responding to my mention of "round 3"? I was just referring to the fact that the burrito had dropped in round...
  16. C

    Priority queue implementation in ASH

    Also, I'm a little skeptical that your implementation is correct. In particular, "index / 2" in the add function doesn't seem like it could be right. Here's what I came up with: Heap add(Heap h, string value, float cost) { int index = count(h.heap); h.heap[index] = value; if...
  17. C

    Priority queue implementation in ASH

    You may be misunderstanding. The "last element of the heap" h is h.heap[count(h.heap)-1]. You should be able to do something like: string ret = h.heap[0]; remove h.cost[ret]; h.heap[0] = h.heap[count(h.heap)-1]; remove h.heap[count(h.heap)-1]; ...and then re-heap-ify, starting at index 0...
  18. C

    SmartStasis -- a complex script for a simple CCS

    I tried a couple adventures with a BRICKO chick in the Bjorn, and that appears to work fine. Here's a sample fight with the Ghost: Visit to Dungeon: Video Game Level 1 in progress... [663413] Video Game Level 1 Encounter: bulbous gopher fodder Strategy...
  19. C

    SmartStasis -- a complex script for a simple CCS

    Uh. The familiar in question is the Gluttonous Green Ghost. I don't think Mafia sets either of those variables when he drops a burrito. Or, am I just confused?
  20. C

    Edscension - Your #1 Karma Farming Script

    Yeah, I also noticed that the scripts use a few settings that aren't prefixed with "ed_": set_property("delayToDayFour", FALSE); set_property("ed_disableAdventureHandling", "no"); set_property("ed_doCombatCopy", "no"); set_property("doNunsRegardless", FALSE)...
Back
Top