Search results

  1. 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(...
  2. Pazleysox

    sl_ascend - a cc_ascend fork

    Thank you so much for taking on this juggernaut of a script! I for one greatly appreciate it. I'm not a GREAT author, but would love to offer my services if I can help at all. In game: PazSox
  3. 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 =...
  4. Pazleysox

    get_property question

    to_int() is how ASH loads a "string" (integer actually) of numbers.
  5. Pazleysox

    MMG Martingale script

    I think it means you should stop playing MMG.
  6. Pazleysox

    Kramco Sausage Maker

    In that case, please just delete this thread. No use having it.
  7. 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...
  8. Pazleysox

    PhillaSausage-O-Matic (One-click multi-sausage creation!)

    This script is really neat! My only gripe is that I couldn't get it to fill any casings. I'm running Mafia build 19065 Also, I think changing grind and pump to pump and grind (bump and grind) would be much funnier
  9. Pazleysox

    Searching map_to_file

    YES! That's absolutely perfect, thank you so much. That's exactly what I needed. I appreciate your help!
  10. Pazleysox

    Searching map_to_file

    I'm trying to make a list of people who have spoken in clan.
  11. Pazleysox

    Searching map_to_file

    Ok. Here's the code I'm working on. string [int] my_list; file_to_map( "pazsox.txt" , my_list); for i from 0 to (count(my_list) - 1) { if (contains_text(my_list[i], sender)) { print ("true"); return; } if(!contains_text(my_list[i], sender)) { print("false"); record note {...
  12. Pazleysox

    Searching map_to_file

    The search wasn't as difficult as I first thought it would be. I've been scouring the forums for over an hour, and I can't find, nor can I figure out how to add info to an existing map. IE: Current map says: 0 Mr. Accessory 1 Mrs. Accessory 2 Time Sword I would like to keep all...
  13. Pazleysox

    Searching map_to_file

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

    get_property question

    haha, thanks ckb, ill fix it when I return from vacation on tuesday
  15. Pazleysox

    get_property question

    Of course it's that easy. I'm so good at making scripts work harder than they have to. In case anyone's interested, here's a way to use your free crafting everyday to make some wads. int bat_jacket; bat_jacket = 0; int borrow_knife = 0; string campground =...
  16. Pazleysox

    get_property question

    if ($item[Thor's Pliers].available_amount() >= 1 && get_property("_thorsPliersCrafting") == 0) { bat_jacket = bat_jacket + 10; } if ($item[Thor's Pliers].available_amount() >= 1 && get_property("_thorsPliersCrafting") == 1) { bat_jacket = bat_jacket + 9; } if ($item[Thor's...
  17. Pazleysox

    in_multi_fight

    I think my error stems from having this whole thing inside "{}" I removed it from another location on the script, and have no issues, and don't have anything else like that. I'll have to check tomorrow when I have more free fights. EDIT: That might not be the issue. I think there's a...
  18. Pazleysox

    in_multi_fight

    I'm running free turns with Eldritch Attunement active, so I can max out my free fights. { if (have_familiar($familiar[machine elf])) { cli_execute("familiar machine elf"); } { while (to_int(get_property("_machineTunnelsAdv")) < 5 ) adv1($location[The Deep Machine...
  19. Pazleysox

    Equipping specific wapon type

    How can I record what shirt a player is wearing? In the script I'm working on, it will have players equip the "PARTY HARD T-shirt" for the adventures at TNP. I need/want to switch the shirt back to the previous shirt. Can anyone help with this?
  20. Pazleysox

    Equipping specific wapon type

    Of course it's that simple. Is there a way to equip only the weapon from the maximizer? Also, I'm sure this exists somewhere in the forums, and if there is please point me to it. Is there a way to use an item against a specific monster without setting it up in the CCS? I think I know how...
Back
Top