Search results

  1. N

    Daily Script

    Saw that request in the main thread... just curious though, why did you convert it into a ash script when a simple CLI script probably would of been sufficient (apart from waiting for the buffbot to respond, but your script doesnt wait anyway.) Tips: adventure * penultimate fantasy airship...
  2. N

    Helper Script

    You sort of need to use "==" when your trying to use a "=" (Debug says it expects a ")" but its really since "=" doesn't actually work.) And when your using "=> 0", that means we need to insert a negative number to not disable it? Why not make it also "=> 1" so its just a simple 0 to keep it...
  3. N

    Eating script

  4. N

    fighting script

    Haha personally when I looked in this thread I was thinking it was one of them "parse html of fight page and do stuff" scripts xD. Yeah I think CCS is broken in 9.3 (but was reported and fixed) so a daily build should have that CCS script working.
  5. N

    Visit_url()

    Looking back through this thread I noticed the request for a "Length of string" function. int Len( string TheString) { int Counter; while( substring( TheString, Counter) != "") { Counter = Counter + 1; } return( Counter); } Hahah, yeah it might lag when you have huge++ strings but it...
  6. N

    Meat Pasting

    Uhh if your using firefox... try this: Right click -> "View Page Info" -> "Forms" tab... Tahdah! In more depth: Finding the page name: Note the "Form Action" Heading on your top left... yeah it's the page the request is being sent to, in this case...
  7. N

    Visit_url()

    Messy and it lacks any comments but you should be able to follow it pretty easily.
  8. N

    Visit_url()

    *Continues to be lost* Ummm... I'm really bad at understanding you, (Self taught at computer stuff so knowledge = limited). >> Uhh well I edited my script to just print out ItemName=ItemQty And it shouldn't be too hard to change it around and add other things to print out such as the ItemLimit...
  9. N

    Visit_url()

    Uhhh so... *brain implodes* Uhhh could you just give me the layout of the data map? Name=Qty Name=Qty Name=Qty Name=Qty
  10. N

    "Sucker" links

    Personally I always thought that section 1 of the policies was for chat... and are you actually rewarded when people click on that link? If no but it still falls under 1.8 then thats just in my opinion, bad. I mean, "No linking to other games... period" would of been more fitting for 1.8 if it...
  11. N

    Visit_url()

    It would probably be alot easier if you just opened up a "view source" window of "managestore.php" and work from there. PS. If you want any help feel free to ask, my K-Mail parser is pretty much been put on "hold" until I find a use for it and so a store manager price finder might be a...
  12. N

    "Sucker" links

    What part of the policies are you referring to? I assume you mean that "Mafia!" link?
  13. N

    accessing KMail from ASH

    All I got to say is that after doing some personal work on this I can safely say that you do NOT need a external parser, visit_url and the other substring editing functions work wonders. Although it only parses for items//meat//playerID, it wouldn't be too hard to also grab the text from the...
  14. N

    curious bugs

    9.3's been released in case your interested in a official "login fixed" version.
  15. N

    curious bugs

    According to the KoLMafia thread in the KoL Forums, I assume thats the problem, I'm still on 8.8 so your first question I'm not too sure about.
  16. N

    Anyone ever seen this happen before?

    Something that may or may not help is that you should notice that the "Encounter:" message is appearing after the substats and item drops. (Or maybe its just me but isnt it usually before?)
  17. N

    take_stash() problem

    You might be interested in this, although I'm not too sure how much it will help, it might work.
  18. N

    New Mafia feature?

    Just as a random question. By sticking this: boolean use( int Qty, item TheItem) { print( "Use disabled, attempted to use "+Qty+" of "+TheItem); return( false); } Would be just as effective as disabling "use" but also wont result in knocking out the CLI function? (Of course sticking a IF check...
  19. N

    New Mafia feature?

    As a extension to what senseihitokiri said, you can also just "override" the use, eat and drink functions by making your own and then sticking a if check in there (and then use the CLI version of the command to actually execute it), probably the lazy mans method but meh.... (Personally my...
  20. N

    Checking and Sending Mail?

    visit_url() substring() index_of() Are your friends, you can pretty much do checking using those 3 in ASH. My KMail checking is currently being tested on saved messages though so it might not work as expected for proper inbox checking and its only in the experimental stages of printing...
Back
Top