Search results

  1. Pazleysox

    Scripting the birth of a new life.

    There's a special on pickled eggplant Is there a need for this to be updated?
  2. Pazleysox

    Watching a script run

    Adding print to my script is what I've done in the past. I'm Workin on a partial script from someone else, trying to bend it to my will.
  3. 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?
  4. 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...
  5. Pazleysox

    Updating variables

    Looking at it again, you don't even need to make it an int. print(my_buffedstat($stat[Moxie])); will do the exact same thing. Just call it twice. print(my_buffedstat($stat[Moxie])); use(1, $item[tomato juice of powerful power]); print(my_buffedstat($stat[Moxie])); The only reason I can...
  6. Pazleysox

    Updating variables

    That's correct. int moxie = my_buffedstat($stat[Moxie]); // You're storing my_buffedstat($stat[Moxie]) in the intger called moxie print (moxie); // here you're printing what it has found use(1, $item[tomato juice of powerful power]); // This changes your moxie print (moxie); // You're...
  7. Pazleysox

    in_multi_fight

    Augh! I didn't even think of that. I do have a script that runs through my familiars that drop items after combat. I will switch it to a before adventure, and see if that fixes it.
  8. Pazleysox

    in_multi_fight

    While fighting at the Snojo, I get You are currently in a multi-stage fight. I've run into this for a few days while running Eldritch Attunement. Today it happened after 7 snowmen fights. Once it was after 10 fights. I re-ran the script, and it ran fine after...
  9. Pazleysox

    Rollover

    I will have to try this. Thank you. :)
  10. Pazleysox

    Volcano

    Here's the code from my rollover script for the Volcoino. if(contains_text(body,"airport_plane_70s.gif") && get_property("_infernoDiscoVisited") == "false" && can_interact()) { int smooth; int count_smooth; outfit ("birthday suit"); foreach smooth in $items[smooth velvet pocket...
  11. Pazleysox

    Volcano

    Here's 1 way you can do it: string WLFBunker = visit_url("place.php?whichplace=airport_hot&action=airport4_questhub"); // the URL is found by hovering your mouse over any location if (WLFBunker.contains_text("smooth velvet bra") && $item[smooth velvet bra].available_amount() >= 3 ||...
  12. Pazleysox

    Rollover

    So how can that be converted into a readable number?
  13. Pazleysox

    Rollover

    rollover() spits out the same number, regardless of the time of day for me. I tried it over a few minutes. Here's the output I get when I use the rollover() function. print(rollover() + " milliseconds to rollover"); print(rollover() / 6000 + " seconds to rollover"); print(rollover() / 60000...
  14. 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...
  15. Pazleysox

    Searching map_to_file

    Here's the script I came up with. It writes to a file everything that's been taken from the stash. It then checks to see if that item has been returned. If it hasn't been returned, it spits out a username, how many, and what was taken. I'm going to make my copy only look at yesterday stash...
  16. Pazleysox

    Searching map_to_file

    I'm trying to keep track of what's already in the stash, and has been taken/returned. The clan has a large number of (expensive) items that are used by multiple players. void main() { string ClanLog= visit_url( "clan_log.php" ); int start=index_of( ClanLog , "Stash") +55...
  17. Pazleysox

    Searching map_to_file

    I'm trying to write a clan stash checker script. I have a matcher written already that can look at the stash list, and return anything I'm looking for. I don't understand maps enough to be able to to anything with the information though. Here's my idea: Pasox added talisman of baio Set a flag...
  18. Pazleysox

    matcher issue

    This post said the mall is not directly accessible. 5 years ago.
  19. Pazleysox

    matcher issue

    I looked again, and I had missed the second \. I really thought I had fixed that. I did find the information I was looking for. Mafia will not allow you to create a matcher when mall.php is in the url. I was doing this: buffer checkmall = visit_url("main.php"); // buffer checkmall =...
  20. Pazleysox

    matcher issue

    I'm sorry my original post didn't have the \\. It IS in the script, and still didn't work.
Back
Top