Recent content by adeyke

  1. A

    Special type value--Veracity's tutorial

    The thing in the brackets needs to be a string literal (but without the double-quotes), not a variable of string type. A comma is just a normal character for a string to contain, and a single string containing a comma doesn't automatically get converted into multiple strings. You'd need...
  2. A

    Special type value--Veracity's tutorial

    $item[bottle of Pete's Sake] means the item named "bottle of Pete's Sake". $item[my_str] means the item named "my_str", but no such item exists. You can't use variable in the brackets like that. If you want to convert a string into an item, you have to use to_item(my_str) (or, equivalently...
  3. A

    Mainstat keeps decreasing and I have no idea why

    I see Bloodbathed in your active effects. You're using blood cubic zirconia's skills, which cost (an increasing amount of) substat points each time.
  4. A

    New Content Mobius Ring - Additional Prefs

    There's a choiceAdventureScript preference, so if you saved the script as x.ash, you can do a "set choiceAdventureScript = x.ash". Using the preferences GUI as you describe is an alternative way to do that. The two methods are equivalent. When you encounter a choice, the specified script will...
  5. A

    New Content Mobius Ring - Additional Prefs

    Here's a sample choice adventure script, based on the one I use: void main (int choice, string page) { int option = 0; string[int] options = available_choice_options(); switch (choice) { case 1562: // Mobius Ring string[] goals = { "Borrow...
  6. A

    Bug - Not A Bug Overspending wads at the HMS Bounty Hunter

    My guess was wrong. Watching it in real time, the count was decremented by a huge amount with each individual purchase.
  7. A

    Bug - Not A Bug Overspending wads at the HMS Bounty Hunter

    For the wad exchange at the HMS Bounty Hunter, if you enter a buy amount that's more than you can afford, it'll just keep going until you run out. However, after doing this, I noticed that the session result put the wads in the extreme negatives and my item_amount returned 0 for them, even...
  8. A

    Bug - Fixed Wet blanket is not a bed

    I had a wet blanket in my dwelling. On using a bed via the gCLI, there was a confirmation prompt about replacing the wet blanket. However, the wet blanket doesn't use the same slot.
  9. A

    Bug January's Garbage Tote in maximizer in Bees Hate You

    In the Bees Hate You path, you can't use items with 'b' in the name. KoLmafia handles most of this well. For example, if you just try to use a January's Garbage Tote, it'll tell you "(usable quantity of January's Garbage Tote is limited to 0 by bees)". The issue is that the maximizer will still...
  10. A

    Bug In Fall of the Dinosaurs, valuable dinosaur droppings not decremented

    I'm doing a Fall of the Dinosaurs run right now. I noticed that, when I go to the the Owner's Trailer to hand off my valuable dinosaur droppings, KoLmafia doesn't recognize that I no longer have that item.
  11. A

    Bug HP-boosting pants cause Hedge Maze recovery loop

    I encountered this problem when using the Quests -> Hedge Maze (Traps) option. I maximized all res, so I was wearing tearaway pants, which also have +50 max HP. It then looped these actions until I forced an abort:
  12. A

    Bug Familiar equipment stealing fails as Zootomist

    Restarting KoLmafia on day 1 did not fix the issue.
  13. A

    Bug Familiar equipment stealing fails as Zootomist

    Just now, I noticed it did steal an item through the maximize command, something I confirmed wasn't working yesterday. I'm not sure what the difference is. It's day 2 of the run, now, so maybe just restarting KoLmafia?
  14. A

    Bug Familiar equipment stealing fails as Zootomist

    As a Zootomist, if you try to equip a familiar equipment that's currently held by another familiar, it'll fail with "You don't have the item you're trying to equip." instead of stealing that item.
  15. A

    Bug Locket contents not detected after liberating king in Standard

    It turns out that visit_url("inventory.php?reminisce=1") just gives a regular inventory page, as though the reminisce part weren't there. Same for just typing "inventory.php?reminisce=1" in the gCLI.
Back
Top