Search results

  1. mredge73

    Feature - Implemented Let Main window remember last size when launched

    I have the same problem now, but it used to work perfectly.
  2. mredge73

    CounterChecker: Wormwood, Semi-rares, Dance Cards and more

    Thanks I didn't realize that something broke mafia's pathed run detection, assumed it was due to a recent script update. Looks like it was fixed right before I posted, my copy was only a day old at the time so I did not think it was mafia.
  3. mredge73

    CounterChecker: Wormwood, Semi-rares, Dance Cards and more

    This is new: Eating 1 fortune cookie... Pathed ascension. Eating 1 fortune cookie... Pathed ascension. Calling Universal Recovery for type=HP, amount=0 Calling Universal Recovery for type=MP, amount=0 I am in a Oxycore ascension, but counter checker is trying to eat cookies. It never did that...
  4. mredge73

    MacGuffin 2.0 -- level 11 quest, automated

    For some reason macguffin is skipping getting the mega gem: Verifying ingredients for wet stunt nut stew (1)... Creating wet stunt nut stew (1)... You acquire an item: wet stunt nut stew Successfully created wet stunt nut stew (1) Well, it's time to go stop evil "agnieb" Dr. Awkward being...
  5. mredge73

    GambleBot!

    This is a great tool for helping you learn regex: http://www.fileformat.info/tool/regex.htm You could avoid regex like Z and do something like my above example: //parse out command int spacing = index_of( message, "add notes:" ) + 10; string cropped = substring( message , spacing ); This code...
  6. mredge73

    GambleBot!

    In the example above, you are declaring the record and defining PMlog at the same time. A record is a user defined datatype, like string and int are pre-defined datatypes. So the line should be placed: record noteP {string sender; string message;}[int] PMlog; File_to_Map("PMlog.txt",PMlog)...
  7. mredge73

    GambleBot!

    exactly move this line: File_to_Map("PMlog.txt",PMlog); right after the record declaration.
  8. mredge73

    Feature - Implemented receive chat

    Wow I just saw this and am excited to try it out! Any chance adding: /hobopolis /slimetube
  9. mredge73

    Bug - Fixed When using chat_clan(), it doesn't show the message in the relay browser chat.

    It does show up on mafia's chat window. It does not show up on relay. The message does actually get sent (clannies will see it).
  10. mredge73

    GambleBot!

    Rahmus Here is my sticky note function. You should be able to modify it to meet your needs. //ChatBot Routines = Notetaking //used to pass notes to other players through chat //command order: 1 Add, 2 view, 3 erase, 4 count...
  11. mredge73

    GambleBot!

    Rahmuss I have implemented a note taking feature as well on my clan bot. It is pretty easy, give me a while and I may be able to build an example.
  12. mredge73

    GambleBot!

    unofficial release Gamblebot.ash Preliminary chat support for Rolling the Dice dice roll stole from this thread, chat bot stuff was imported from my bot. I haven't completely cleaned it up but it does work as is. publicroll xx[dD]yy will display results in both the clan channel and PM roll...
  13. mredge73

    Stuck in Cage detection

    That is what my original script did. But now that it is supported, it aborts the script before I get a chance to do manual visit_urls For some reason the original script will still work if restarted manually after logon. It will crash (manual control for choice 211) if it is used as a breakfast...
  14. mredge73

    Stuck in Cage detection

    Will do Is there a way to set 212 to 2 and have it only try once instead of looping endlessly? This is my current project, I am trying to build a work around but am running out of ideas.
  15. mredge73

    Stuck in Cage detection

    Ok So this is not going to work. I have to advance to choice 212. I have to hit the wait for rescue on Choice 211 or I will never be able to get out of the cage if I am rescued by another clannie. I think that it would not hurt for mafia to support choice 211 since it will not loop repeatedly...
  16. mredge73

    GambleBot!

    It would not work unless jick is in your clan. Chat Private will only chat to clannies now. I would recommend that you build your chat bot script to do very little, don't even hit the server. Then you can use a clanbot script to parse in messages at a specified time interval. This is my...
  17. mredge73

    First (real) attempt to make an ash script: Sewer.ash

    1) it is defining a function that is of string type, in other words it is a function that returns a string 2) matchers are complicated and tricky. Simple explanation, the (//d+) is matches all integers following the text. 3) matchers are complicated and tricky. Dot notation is not so tricky...
  18. mredge73

    GambleBot!

    Grotfang summed it up very well. Bets are placed through kmail, I don't think meat can be sent through chat. Chat is used by this bot to display results, not to take bets. I don't know if this script abuses the multi guidelines are not, I would caution you to keep the max bet fairly low as to...
  19. mredge73

    Stuck in Cage detection

    I tend to run choice to advance from choice 211 to 212 but I don't remember why I did that. For some reason I didn't like choice 211 but I may not need to do that, I will need to do some more research.
  20. mredge73

    Stuck in Cage detection

    my bad, manual control for choice 211 mini browser pops up and mafia aborts script I am guessing it is awaiting input from the user. Mafia change on Rev 8803 made this function obsolete, while I am glad that the choice is now supported I still need a method of detection so I can act in chat...
Back
Top