Search results

  1. Pazleysox

    matcher issue

    I was working on this script again today, and noticed that the only time you can see "Permanent Skills" when you are looking at your own profile. I figured out that the script was looking for people who had broken their hippy stone, and had 2 clans listed on their profile. The script was...
  2. Pazleysox

    who_clan()

    I get it now. I thought it would return true/false if someone was active vs listening regardless of being in the channel or not. This is what I was looking to work with.
  3. Pazleysox

    who_clan()

    I switched to the tabbed version, and come up with the same results. This time however, with one change. There is a player who is listening to clan, and not active. Nienor => true PazSox => true Ruby => true intermIssion => false When I do a /who (player) Nienor This player is currently away...
  4. Pazleysox

    who_clan()

    I wonder why mine are not returning as false. One of the players in a seperate clan was a multi of mine, and I know they have not spoken in chat, and kol returned true for them.
  5. 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...
  6. Pazleysox

    Feature - Rejected Daily Deeds: Fortune Buff and Spacegate Vaccination Machine

    You can always look at this script, bale wrote, for inspiration to write your own daily deed script. https://kolmafia.us/showthread.php?10670-Daily-Deed-to-Vamp-Out-with-your-Vampire-Fangs&highlight=vampout
  7. Pazleysox

    matcher issue

    I don't think the space in the name really mattered. It was something that had created an issue in the past, so I was just ruling it out. When I wrote the script originally, I had no idea that it would look at both clan names. Then I ran into an issue, where I couldn't get into a clan that I...
  8. Pazleysox

    matcher issue

    I think I found a bug? I was working with an existing matcher today, and it failed, where it had never failed before. The matcher is supposed to pull a players clan name from their character sheet. I spent some time mulling over it, and trying to work out why it failed. I could get it to...
  9. Pazleysox

    matcher issue

    That is absolutely correct. Here's my work around. Seems so simple, I feel kind of dumb for not thinking of this sooner. string Pooltable= visit_url( "clan_viplounge.php?action=pooltable&whichfloor=2" ); if ((my_name() == "ruby") && Pooltable.contains_text("showplayer.php?who=599575")) {...
  10. Pazleysox

    matcher issue

    I found the problem. Here's what you see when you are in charge of the table: Looks like you're in charge of the table, having won the last 113 games in a row. Here's what everyone else sees: Looks like your clanmate Ruby is in charge of the table, having won the last 113 games in a row...
  11. Pazleysox

    matcher issue

    This is all correct. The multi I wrote this script for is not under standard restrictions, and does in fact have the VIP key. They actually have control of the table also. Which is why I'm so confused.
  12. Pazleysox

    matcher issue

    So here's some interesting information. I upgraded Java this morning, because the script failed on the other computer. The script works for me, but there's something strange going on. I was on the computer that was having an issue. I ended up putting my settings folder, and a copy of build...
  13. Pazleysox

    matcher issue

    The 2 spaces was doing me in. I never would have thought of that! Here's what I ended up putting. matcher n_stash_put = create_matcher( "clanmate ([\\w\\s]+) is in charge of the table, having won the last (\\d+)" , PVPHill ); I use the ([\\w\\s]+) on a different script, which has never...
  14. Pazleysox

    matcher issue

    They are both running windows 10. The KoLmafia files and settings are very reasonably close. The response from visit_url is identical. They are separate characters in the same clan. Java... I do not know. I will look into this. Even if the computers weren't identical I had some of the...
  15. Pazleysox

    matcher issue

    void main(){ string Pooltable= visit_url( "clan_viplounge.php?action=pooltable&whichfloor=2" ); matcher n_stash_put = create_matcher( "clanmate (\\w+)" , Pooltable ); int J=0; while( J<1 ) { n_stash_put.find(); J=J+1; string group1= n_stash_put.group( 1 )...
  16. Pazleysox

    Standard Rollover Bonus

    I understand. Thank you.
  17. Pazleysox

    Standard Rollover Bonus

    What am I doing wrong here...? foreach it in $items[] { slot s = it.to_slot(); if(boolean_modifier((it), "single_equip") == true && available_amount(it) > 0 && s == $slot[acc1]) print(it);} Returned: void foreach it in $items[] { slot s = it.to_slot()...
  18. Pazleysox

    Standard Rollover Bonus

    Is there a setting to look at for this? Like a multi_equip()?
  19. Pazleysox

    ckb Standard Ascension

    I really appreciate all the work you have put into this script! This is something I certainly can not do! I tried it for the first time (this year) yesterday, with a brand new install. I ran into a few small snags, but I figured it was because I didn't have some of the items it was looking...
  20. Pazleysox

    Standard Rollover Bonus

    Ok, I've updated the script again. I'm not in HC, but I set it to not show items in storage if in hardcore. 2 of my clan members verified it works in HC. Then, taking heeheehee's advice, I set the script to ignore items in storage if you already have one equipped. I will set it so that if...
Back
Top