Search results

  1. oly0015

    Current mood buffs?

    k thanks, not a biggie just was curious if there was a way and it was not documented is all. I just associated a kingdom of buffing type format to my script with a "buffbot mood" for now which can handle skills and buffs. Ex if it asks for polka that will go through a buffbot but thingfinder...
  2. oly0015

    Current mood buffs?

    Sorry bale, guess i didn't explain that enough I was just asking if there was a way to read in the buff triggers for a current mood into an array for a script. I was just wondering for a buff function of one of my scripts if that could work vs. me having to input the data manually. If i could...
  3. oly0015

    Current mood buffs?

    Been reading the wiki for awhile and just curious if this is possible, would save me a lot of trouble. Now i know I can get the current mood name as a property but is there any way to get the buffs listed under the current mood?
  4. oly0015

    Island Buff?

    slyz got me the property i needed to check for it already, i was looking on the property list but its listed under sidequestareacompleted and i was searching for other words
  5. oly0015

    Island Buff?

    By chance is there a way to use an island buff without crashing a script if it happens that the user does not have the quest completed? I was thinking of using something like cli_execute("concert wink"); which works fine if you have the buff available even if the cast has been used. The...
  6. oly0015

    Castle farming script

    Thanks icon, the bounty part will come in useful for the one i'm doing
  7. oly0015

    Mojo Filter Use?

    Should be fine for now, only thing i got left later on is to see if i can get the number of times a hobo skill has been cast
  8. oly0015

    Mojo Filter Use?

    ty get_property( 'currentMojoFilters' )
  9. oly0015

    Mojo Filter Use?

    Trying to work on a consumption script for part of an overall script and I kinda ran into a bit of a bug. Is there a way to get the current amount of mojo filters used? I looked in the wiki but didn't see it posted in there so I was a bit curious, I know on the eatdrink script it just starts its...
  10. oly0015

    REQUEST: someone to tell me how exactly you start a script. documentation unhelpful

    if it helps, i can post an old version of my script, that will still do everything you want
  11. oly0015

    REQUEST: someone to tell me how exactly you start a script. documentation unhelpful

    if your looking for a farming script i'm actually in the process of making one, stay tuned :P
  12. oly0015

    acquireBuff - Get a buff from a buffbot

    Oh if it helps for bales code, i had to make a bit of an edit, in his math the hookah buff if its an AT song doesn't get counted. What this does is if the hookah goes beyond your maximum amount of songs this code will take off the song it buffed. boolean four_songs = boolean_modifier("four...
  13. oly0015

    acquireBuff - Get a buff from a buffbot

    Yep, I've got it set for now to use rinns script straight through, unless its ode
  14. oly0015

    acquireBuff - Get a buff from a buffbot

    Yep, seems i can't cheat to use $effect[] instead of the proper conversions. Anyway this works for now, i'm correcting my code still from last night for the other half atm. void getbuff (string buff) { if (have_skill( to_skill( buff ))) { if ((mp_cost( to_skill( buff ) )+1) < my_mp() ) {...
  15. oly0015

    acquireBuff - Get a buff from a buffbot

    might be just because its late, but i tried acquireBuff($effect[buff]); where buff = "ode to booze" and got No known buffbot is able to provide Surreally Buff Unable to acquire Surreally Buff time for some sleep then i guess i'll figure it out later
  16. oly0015

    acquireBuff - Get a buff from a buffbot

    should save me a couple lines, guess i got to go fix stuff, ty
  17. oly0015

    acquireBuff - Get a buff from a buffbot

    "Future Improvements: AT song count checking" If it helps, for the script i'm working on when I wanted to check the song count I made a list of the known songs in an array and ran through them with a foreach. Then all you have to do is use a if statement with have_effect(array item) > 0 to see...
  18. oly0015

    bogroll.ash - green screen hate for the masses

    it uses throw roll of tp in the cli to throw the roll if you read the script, this script just repeats the command and handles tp inventory cli_execute("throw toilet paper at " + who);
  19. oly0015

    bogroll.ash - green screen hate for the masses

    :P i like mine better still
  20. oly0015

    bogroll.ash - green screen hate for the masses

    Was a bit bored and got a request to toilet paper someone, ended up with a mass tp script. Enter the name and amount of tp to use and away it goes to bomb them in your name. Requires the zlib library to run http://kolmafia.us/showthread.php?2072
Back
Top