Search results

  1. H

    Morning/daily scriptlet, help?

    If you want to equip a custom outfit depending on your mainstat simply do if(my_primestat() == $stat[mysticality]){ outfit("SavedClothes"); } OR if you want to do it depending on your class... if(my_class() == $class[seal clubber]){ outfit("SavedClothes"); } Just change the mysticality or seal...
  2. H

    Spooky Surprise Eggs

    Sense acquire is already an ash function you might want to remove void acquire(int n, item it){ int x = 0; if (item_amount(it) >= n){ return;} if(closet_amount(it) <= n){ x = closet_amount(it); take_closet(x, it); n = n - x;} else{ take_closet(n, it); return;}...
  3. H

    Morning/daily scriptlet, help?

    What is it that you are trying to do? Here is something to help... if(my_name() == "NAME"){ INSERT COMMANDS }
  4. H

    Timeout during TPS drink creation causing script abort

    I see 1 problem. if(item_amount($item[cherry]) == 0) buy((6 - item_amount($item[cherry])), $item[cherry]); if(item_amount($item[boxed wine]) == 0) buy((3 - item_amount($item[boxed wine])), $item[boxed wine]); Should be: if(item_amount($item[cherry]) == 0) buy(6 -...
  5. H

    Hippymon's sidequest catalog, updated 09 December 2007

    Re: Hippymon's sidequest catalog, updated 27 Oct 2007 Um... Yea, to tell you the truth, that just complicates the scripts to a whole new level... Although, the last one is useful...
  6. H

    Random adventuring, string manipulation, and stat monitoring questions

    1: Yea, moods and auto recovery should take care of Hp/Mp/Effects. 2: I have no clue what the matrices stuff is.. :\ 3: It is alright to add pages... As long as the pages are for a constructive purpose and have to do with scripting....
  7. H

    Noob Quest ASHed

    One minor change: if((item_amount($item[worthless gewgaw])>0) || (item_amount($item[worthless knick-knack])>0) || (item_amount($item[worthless trinket])>0)){ no_trinket = false; }
  8. H

    Random adventuring, string manipulation, and stat monitoring questions

    Oh, oh, oh, ok I see. In that case, simply change this line: adventure(my_adventures(), AdvLoc); into: adventure(1, AdvLoc); And I believe that should work.[hr] Yes, there are autorecovery functions and effects fuctions. For your Hp and Mp; cli_execute{ ## Change the 0.0 to a number between...
  9. H

    Random adventuring, string manipulation, and stat monitoring questions

    Re: Random adventuring with conditions (and some string manipulation questions) For the first part I get what you want to do, but I need more info.... Is it completely random level && location? Or just random locations? I have made a few changes to your scriptlet and turned it into more of an...
  10. H

    Timeout during TPS drink creation causing script abort

    Just wondering if you got it figured out? If not, a copy of the script used would help...
  11. H

    Script timing?

    No such thing??? It would be nice to have a response..
  12. H

    Noob Quest ASHed

    Well, here are a couple sites: This one will help with the boolean operator's and such.... For your "and or" ash coding. http://www.wiki.kolmafia.us/index.php/if And due to extreme spamming of the KoLwiki site I have put together all of the information into one master site that is kind of my...
  13. H

    Noob Quest ASHed

    I understand, true, true... But personally I like to stray from gCLI use as much as possible.... Plus it may have some benefit to the server.. :-\
  14. H

    Noob Quest ASHed

    Well, a few changes: ## For URLs you may want to use: visit_url("URL"); ## For the adventuring for an item portions, it may be easier to do the "conditions" if (item_amount($item[XXX]) == 0){ cli_execute("conditions clear"); add_item_condition(1, $item[XXX]); adventure(my_adventures()...
  15. H

    ASH converter

    If you know how to do any of it type some up then post it in the appropriate forums. Or if you don't know how to do any than some people will help. I would be willing to, I am always looking for some sort of scripting to do.. As far as putting it together, that is hard to say.... It all depends...
  16. H

    ASH converter

    Nowhere. Well, I highly doubt you will find one, but if you have a CLI script or general functioning of the script I and others will help you put it together... Or, some people are willing to create the whole thing for you based on your wants/needs *me*... ;)
  17. H

    How to use only one item?

    The only thing I could think of if experiment with something like item turtle totem, none OR item none, turtle totem :\
  18. H

    Outfit Changer, a casual ascension aid

    Is there no thinking to include a check to see if one has double-fisted or torso awargness??
  19. H

    Best farming outfit script.

    Just posting the portions of the script for a friend.
  20. H

    Yet Another Meat/Item Farm

    "Castle in the Clouds in the Sky" is now "Giant's Castle"... Simple fix. If your not sure what something does or would like a more in-depth version of each function I have this page: http://www.wiki.kolmafia.us/index.php/User:ZammyWarrior it has a full list of MOST functions with descriptions...
Back
Top