Search results

  1. S

    Scripting tool?

    I have updated the Ultra Edit wordfile addition but I've run into some error.  For some reason it is not properly highlighting my text.  It works sometimes but I can't figure out the problem.   This is an update for up to 8.8.   Can someone help me troubleshoot this?  Thank you.  P.S. I did not...
  2. S

    New Mafia feature?

    Awesome I look forward to this addition.
  3. S

    New Mafia feature?

    I like the idea of this feature.  A simple function call that disables all eating, drinking, etc. features or even pass it an item that will ignore those item calls. If you need a suggestion of how to handle this for now, simply put a line like this bool eat = true; bool drink = true; and...
  4. S

    User input

    Yes that's exactly the type of functionality I would like from it.
  5. S

    User input

    I use a lot of scripts while I'm at the computer just because I like to play the game but I'm lazy enough (and content) just to sit and watch the script run to see what I get or what happens. I like to do a lot of administrative work with it too. So let's say I'm writing a script to give out...
  6. S

    User input

    Is there an internal ( function internal is what I'm saying I guess ) method of prompting a user for input? I have been using the parameters of main() to get some input but I was hoping for a way to prompt from within my code as well. Any ideas?
  7. S

    Olaf the janitor

    I have been trying string test = visit_url( "guild?place=paco" ); and finally realized what my n00b problem was.... pages like having extensions... like guild.PHP Begin hurling rocks my way.
  8. S

    Olaf the janitor

    I'm new to interacting with the site via URLs, which seems to be the way everything was done in the past, and I need some help. I'm trying to start a script for the White Citadel quest but it starts when you talk to Olaf. Since CLI and ASH have no written function for that (that I noticed...
  9. S

    Item Bot?

    Ok so I was thinking about something today and at some point my brain shut down. That's when I thought about this. Does KOLMafia have the functionality to support an Item Bot that would work much like a buff bot? It seems like something that could be fun. Send it a certain amount of meat in a...
  10. S

    Farming effects, are they worth it?

    Hey I was wondering if anyone had some numbers on whether or not Red Snowcones and Pink cupcakes are worth it to add to the farming effects - well if you don't own them already. The same thing with Black oyster eggs. I have support for them written into my script but I can't bring myself to...
  11. S

    Multi-account script...

    I'm actually more glad to hear that... I thought about it and then realized that could sound really shady (what I was asking ) and that it would be very unwise to keep the pwds unsecure. I just wish there was an easier way to save the pwd without having to log in completely - which I've already...
  12. S

    Looking for... less than legal scripts.

    I have a script that's only 16 lines long... I'm sure that's less than legal, well unless you're in the south. ;)
  13. S

    Multi-account script...

    Hey guys I noticed this thread which had the same question I do. Thanks to everyone that submitted help, my batch script is looking glorious ;D It brought up this question though. Where does KoLmafia store the password. I just looked at login in the user manual and it says that the password...
  14. S

    String into slot question

    seems like that will work, I look forward to testing it out in the morning... Thanks!
  15. S

    String into slot question

    I couldn't modify it because I wasn't registered at the time fo that post. while( acc_num < 4 ){    //Creat the slot    string slot_num;    slot_num = "acc" + int_to_string(acc_num);    slot acc_slot;    acc_slot = $slot[slot_num];    acc_num = acc_num + 1; }
Back
Top