Search results

  1. A

    How do I get the script to ask me for an input?

    Here's what I want to do: I want to write a script that will, when ran, pop up a prompt into which I type something. I want specific phrases to correspond with different scripts. Simple as that. Why? I just want to know how. I don't want an alternative.
  2. A

    How do I get the script to ask me for an input?

    Yea yea I know. I just want to know how to do it.
  3. A

    How do I get the script to ask me for an input?

    Thank you guys, and slyz and roippi got it. I should have clarified my wants, which switched from how do I make a script ask for an input to how do I make a script automatically do the input for me. Okay uh...yea...last question. This isn't practical, but its for the learning. I'd rather not...
  4. A

    Mafia won't auto-reprice.

    Recently dumped a lot of crap into my store. Neither "undercut" nor the auto-reprice button work. My mall inventory clears, and nothing happens. If I check back in the mall, everything is still 999,999,999. Any ideas? I don't want to do this all manually... Nevermind..
  5. A

    Display case script?

    How about extracting EVERYTHING from your DC? Trying to manage mine, and its a pain. I realized it would be best to just en mass extract everything and then put the items I want in there back in. I have a lot of junk in there.
  6. A

    How do I get the script to ask me for an input?

    I have a script that calls my diet script, queen cookie script, etc. It also calls bounty.ash, which pops up and asks me how I want to bounty. I just type in "go" every time and "70" for the cookie script. I'd rather not have to type those in...because I'm lazy.
  7. A

    How do I get the script to ask me for an input?

    I get it now. Is it possible to write a code that will type and enter an input for you?
  8. A

    How do I get the script to ask me for an input?

    Hmmmmm.... void main(string param) { cli_execute( Azazel + azazel.ash); } Like that? Seems like it would call different scripts in order... I'm a little confused. Would you mind clarifying?
  9. A

    How do I get the script to ask me for an input?

    I've looked at bounty.ash for some inspiration, and have come across this following bit of code. I'm supposing its at least in part responsible for the little popup box that asks you what you want to do. Still very confused. Could someone give me a pointer to a resource or just a pointer in...
  10. A

    How do I make the maximizer equip the SS sword/bow?

    I did end up testing it xD I've become a little paranoid due to tiny bugs in my scripts causing horrible horrible things to happen
  11. A

    How do I make the maximizer equip the SS sword/bow?

    Space between the plus and equip or no?
  12. A

    How do I make the maximizer equip the SS sword/bow?

    Editing the cookie farming script. Currently it would rather equip my velcro paddle ball over my crossbow, and I'm assuming that's due to the line where is says "maximize item."
  13. A

    Looking to condense a script a little.

    Yea I know. I was actually looking at what you said, but was a little confused. Anyways. The script works! Thanks everyone.
  14. A

    Looking to condense a script a little.

    No need to apologize. You helped a lot :) And hmmm that's interesting. That's a relatively simple way of doing things multiple times.
  15. A

    Looking to condense a script a little.

    for x from 1 to 3 { So that should do it? How exactly does that line of code work?
  16. A

    Looking to condense a script a little.

    Yes I look at other scripts and try to understand :) And thanks for the link! Okay, so here's the code. It would be great if someone could do a quick glance-over. void obtain(item it, int num) { if(item_amount(it) < num) { buy( num - item_amount( it ), it ); } } void main () {...
  17. A

    Looking to condense a script a little.

    Wow. That is insane. Will take me a little time to understand, but I get the jist of it. foreach i in $items[Ol' Scratch's salad fork, Munchies Pill, Extra-Greasy Slider, Jar of Fermented Pickle Juice]] Is the double ] at the end supposed to be like that? If yes, what does having two in that...
  18. A

    Looking to condense a script a little.

    How would I do that?
  19. A

    Looking to condense a script a little.

    Hmmm okay. Just tested the script and it fails when it comes to the salad forks because they must be eaten. Is it possible to call the script from a specific line without running the whole thing over again?
  20. A

    Looking to condense a script a little.

    I've got a diet script. void main () { #### Obtain Ode to Booze for drinking. ## Modify by sending the right meat amount to your buffBot of choice. if(have_effect($effect[Ode to Booze]) < 1) { cli_execute("csend 1 meat to Testudinata"); } #### Wait for the buff to...
Back
Top