Recent content by GoldenRatio

  1. GoldenRatio

    Loop

    Anything in particular you are trying to do?
  2. GoldenRatio

    Loop

    A while loop will look like this while(my_inebriety() < 15) {      drink(1,$item[shot of tomato schnapps]); } It reads pretty much how you'd expect: "while my inebriety is less than 15, drink 1 schnapps." The part that goes into the () is the stopping condition, and the stuff between the {}...
  3. GoldenRatio

    First line brackets

    It's called a 'parameter'. When using code, it allows you to pass in (in this case) a number, and that function can then use that number for whatever. ie void foo(int amount) { print("You have " + amount + " of something."); } void main() { foo(5); foo(2543); } Also the guy before me...
  4. GoldenRatio

    Closeting Meat command

    Well, the thing is, is that there is the Meat Manager. That obviously executes some code that accomplishes the task. All that is really required is a CLI and ASH command that calls that particular code. [edit] I'd like to ask if anyone has ever figured out a way to check fullness? I know I've...
  5. GoldenRatio

    Closeting Meat command

    I'm guessing it some sort of look-up with a database? I don't know how it works but maybe you can make a bs entry in the DB for meat?
  6. GoldenRatio

    Closeting Meat command

    Alright, thanks guys! I got it working nicely, my script is nearing completion! The only problem is that Mafia doesn't seem to update correctly, however when I check in a normal browser it seemed to have worked. [edit] I'll attach my scripts if anyone wants to see and maybe help me improve. I...
  7. GoldenRatio

    Closeting Meat command

    I was gonna say the same thing... But anyways how do I execute a raw url like that? is 'pwd' a KoLMafia global variable, or do I need to get my hash somehow? Sorry I am just not finding the sort of info I need anywhere... nobody's really documented all this fully.. at least not that I've found.
  8. GoldenRatio

    Closeting Meat command

    What's up everyone. Sorry if this has been answered before, but it's bugging the crap out of me. I am a programmer by trade, and it's a little embarrasing but seriously I've tried everything, searched KoL forums (in the KoLMafia thread), searched this site, thoroughly read all the help/manual...
Top