Search results

  1. Pazleysox

    is_unrestricted

    Not sure how long it's been broken... But, this doesn't work. string body; body = visit_url("clan_viplounge.php?whichfloor=2"); if(is_unrestricted(contains_text(body,"aprilshower.gif") && get_property("_aprilShower") == "false")) { cli_execute("Shower cold"); } This does work though...
  2. Pazleysox

    Free Fights Script

    I wrote a free fights script long ago, but it gets stuck in the red zeppelin. Can someone point me in the direction of what I might have missed/mixed up here? string zep = visit_url("place.php?whichplace=zeppelin"); if (zep.contains_text("The Red Zeppelin")) { if...
  3. Pazleysox

    Latest version error

    I'm getting a Java error when I try and use the latest daily build. I have for some time now, so I use an old version. A JNI error has occurred, please check your installation and try again. I just updated my java, and got the same thing... Any suggestions?
  4. Pazleysox

    Overdrunk issue

    Fixed the issue.
  5. Pazleysox

    Question about custom combat script / banishing

    Ran into this today while working with my free fights script: [17077] The Hidden Bowling Alley Encounter: pygmy janitor Round 0: pazsox wins initiative! KoLmafia thinks it is round 2 but KoL thinks it is round 1 Round 1: pazsox casts REFLEX HAMMER! pygmy janitor banished by Reflex Hammer. This...
  6. Pazleysox

    Never seen this before

    I haven't ascended in a few months, so I haven't seen this. Maybe it's been there for a while, and I just haven't paid attention, but because the steel margarita isn't available anymore, should it still be on there?
  7. Pazleysox

    Cagebot / Scripting question.

    I found this thread, started by Alhifar about a Cagebot. It was very useful to start my own script. It was obviously out of date, having not been updated in probably 10 years. I already have a bot that can switch clans, and I've making a new chatbot was simple enough for me to do. Here's...
  8. Pazleysox

    Feature - Rejected LavaCo Lamp

    Is it possible to have mafia equip the lamp that is best suited for your class? I have all 3 colors, and it looks like Mafia always equips the green one. I'm typically a muscle class, and would benefit from the red one. I don't always remember to switch it, and I know a script could be easily...
  9. Pazleysox

    who_clan()

    ash who_clan() returns this: PazSox => true Ruby => true Skf => true Doing /who clan, returns (virtually) the same on the events tab. When I open a relay browser, open chat, and do /who, it shows me that Ruby, and Skf are away from chat. I've tried this in 2 separate clans. I"m using build...
  10. Pazleysox

    Items

    foreach it in $items[] { int nt = to_int(numeric_modifier(it,"Adventures")); if ( nt > 0 && can_equip(it) && is_unrestricted(it) ) { if (available_amount(it)>0) My standard rollover bonus uses that code. The script looks at ALL items, and spits out ALL items...
  11. Pazleysox

    map_to_file ...Error?

    I've been using this code for many months for my chatbot to help people in dreadsylvania with element, and monster banishing. I only just found out today that if a user has a space in their name, the script aborts. I did not write this, it was written for me. record note {...
  12. Pazleysox

    Bug - Not A Bug Mallmode error?

    I was scripting some turns, and this happened: In mallmode, couldn't find a best restorative. Huh? Please report this error on the Kolmafia.us forums! Not sure how much info to include, so I'll give you what I can. I was running my 'Rollover Management' script, which I've been running for a...
  13. Pazleysox

    Feature - Rejected Option to re-equip item

    I got my "I Voted!" Sticker today, and had the option to equip it right away in the accessory slot of my choice. I chose #1, which un-equipped my bejeweled pledge pin. I needed my pin equipped to finish the level 12 quest. My request is when an item is equipped, can we have the option to...
  14. Pazleysox

    Watching a script run

    Is there a setting so I can watch what a script does? I have a script that's getting hung up, and I don't know on what line. I wanted to know if I can see the code as the script is being run?
  15. Pazleysox

    Bug There is no swimming pool in this clan... But there is!

    Here's what my CLI said when I logged in today. It's likely said this for a while, I just never noticed it before. I'm running build 19077. I looked at my session logs, and it doesn't say anything about no swimming pool on any day, including current session, on which this happened. I did not...
  16. Pazleysox

    Rollover

    I've been looking around for an ash command that will return what time rollover happens. MrEdge73's script has "MinutesToRollover()", but I know that command doesn't work anymore. He also has the command "WaitMinutes()", and I know that doesn't work either. I can type /rollover into the...
  17. Pazleysox

    matcher issue

    Why does this fail: void main() { string thesea = visit_url("main.php"); matcher need = create_matcher( "title=\"(\w+) (\w+)" , thesea ); { need.find(); string group1= need.group( 1 ); { print(group1); } } } and this works: string CheckGrinderNext= visit_url(...
  18. Pazleysox

    Chat Time Out

    Is there a way to prevent chat from "timing out"? I have a chatbot that I'm trying to keep active, even when chat is not. It's not a monitored account, so if I have to spam the account with private messages, that's ok. I tried this, but it didn't fire off often enough. int timetoroll =...
  19. Pazleysox

    Kramco Sausage Maker

    I got tired of clicking a bunch of times to make my sausage every day. This script will make sausage for you, assuming you have enough "units of filling". v1.0 It will first check to see if you have any sausage casings, stopping if none. Then it checks to see if you have enough "units of...
  20. Pazleysox

    Searching map_to_file

    Is it possible to search for a specific word, or set of words inside a map?
Top