Search results

  1. tyilo

    syntax highlighting for TextWrangler

    Nice dude! Btw the folder to place the plist-file is /User/<username>/Library/Application Support/TextWrangler/Language Modules/ Create the folder Language Modules if it doesn't exist!
  2. tyilo

    Discard script

    I know... Btw I only made this to discard my torn hellseal brain/hides/sinews lol
  3. tyilo

    Discard script

    Why?
  4. tyilo

    Discard script

    boolean discard(int number, item stuff) { int amount = item_amount(stuff); for counter from 1 upto number { visit_url("inventory.php?action=discard&pwd=" + my_hash() + "&whichitem=" + to_int(stuff)); } if(amount == 0) { print("You don't have any " + to_plural(stuff) + ".", "red")...
  5. tyilo

    making function hermit() not abort script

    Thank you both, i just used "boolean dummy = hermit(5, clover);"
  6. tyilo

    making function hermit() not abort script

    i have this script: item clover = $item[Ten-leaf clover]; hermit(5, clover); use(item_amount($item[Disassembled clover]), $item[Disassembled clover]); put_shop(1, 0, item_amount(clover), clover); When i run it will never execute line number 3 and 4, beacuse when the hermit() function returns...
  7. tyilo

    Bad item value?

    Lol, found the problem: Replace "$item[stuff]" with "stuff" in line 2
  8. tyilo

    Bad item value?

    When i try to execute this script, it fails with the error "Bad item value: "stuff": foreach stuff in $items[Wolf mask, Giant needle, Rave whistle] { put_shop(mall_price(stuff) - 1, 0, $item[stuff]); } Why is that?
  9. tyilo

    Auto-download latest SVN version (MAC)

    Auto-download latest build (MAC) First it checks if you have installed the latest version. If you have it does nothing. If you doesn't have the latest version it will replace the java file inside KoLmafia.app in your applications folder. I made this script in applescript and here are the...
  10. tyilo

    ZLib -- Zarqon's useful function library

    I get an error when running it: Function 'item_drops_array( monster )' undefined (zlib.ash, line 218) why?
  11. tyilo

    Help with statday

    I need to have a script that will say how many days there are to mus/mys/mox statday
  12. tyilo

    Teeny Tiny Suggestion

    You could also do so CLI-scrip ant must end with .CLId only show the *.ASH and *.CLI files in the menu!
  13. tyilo

    auto BHH and friends

    When i used the "auto bountyhunting.ash" it choosed the burned-out arcanodiode and it just used like 20,000 adventures before it was finished. Could you fix this? And how do you choose witch item you should choose first and second and third and... (if it is available)?
  14. tyilo

    Why does this not work?

    It is a valid script! It will popup with a box (like that you could choose which message icon you would use in this forum) where you could choose between true and false. And it didn't work with confirm!
  15. tyilo

    Why does this not work?

    when i run the code it will always popup and i have to answer. Why does it ignore the first if? if(my_fullness() == 0 && my_inebriety() == 0) { void main(boolean normal) { if(normal == true) { cli_execute("eat 5 peach pie"); cli_execute("drink 9 shot of peach schnapps")...
  16. tyilo

    Gender function

    1 I want it to unequip all your close and see if it contains _f.gif. Example i am an accordion thief name of picture when i am male: accordionthief.gif, and when i am female the name of the picture is: accordionthief_f.gif. 2 It says that there is an error in line 4.
  17. tyilo

    Gender function

    void unequip_all(string pet) { item it = equipped_item($slot[acc1]); unequip(it); it = equipped_item($slot[acc2]); unequip(it); it = equipped_item($slot[acc3]); unequip(it); it = equipped_item($slot[hat]); unequip(it); it = equipped_item($slot[off-hand]); unequip(it); it =...
  18. tyilo

    Mood Setup?

    Yes i mean 20. I'm trying to get the 500 pounds trophy and when i get a familiar to 20 then i will take a new familiar and train it. It is different what equipment they have to the familiar and I'm using empathy.
  19. tyilo

    Mood Setup?

    How do you make a script/What do you need to enter in the 2 lowest lines so it will stop when your familiars unbuffed weight = 25?
  20. tyilo

    PvP script

    Is there a search command? And a goal command like: flower, rank, booze, food, misc. and meat ???
Back
Top