Search results

  1. mredge73

    CLI output goes from Left Justified to Right Justified?

    What would cause the cli output to go from lining up on the left side to lining up on the right side? It happens to me alot when running multiple scripts. Sometimes it does it when mafia aborts a script and sometimes in the middle of a script without warning. It generally happens when running...
  2. mredge73

    Iconic Relay Overriding, Now More At Nonpareil (Iron Man)

    Well You can omit items that you already have in inventory, DC, and closet. Not sure why you would want more than one of each, for example the hobo binder. I really don't need to know that I have enough coin to buy something that I cannot buy again or would want to own 2 of. Also, you can only...
  3. mredge73

    SmartStasis -- a complex script for a simple CCS

    That did it. Stupid Typos
  4. mredge73

    SmartStasis -- a complex script for a simple CCS

    Latest and greatest... 3.7 SS is also the latest. also verified that using SS by itself, not bundled in another script, does the same thing. Thanks for you help. I rarely use SS during ascension because of this issue, but I want to help resolve it if possible.
  5. mredge73

    SmartStasis -- a complex script for a simple CCS

    [741] Goatlet Encounter: drunk goat Strategy: d:\Data\My Stuff\kol\Kol Mafia\ccs\basic.ccs [default] Round 0: alotavagina wins initiative! intheclear() returned true FTF 1/3 monsters dropping goals. SS Round 1: alotavagina uses the turtle totem! Round 2: drunk goat takes 1...
  6. mredge73

    SmartStasis -- a complex script for a simple CCS

    My ML is controlled by BBB so the radio is set to 0 in the menage 1, but I do have the annoying pitchfork equipped. threshold is default: 4 Buffed moxie is 50 Maybe SS does not see the +5 ML from the annoying pitchfork?
  7. mredge73

    SmartStasis -- a complex script for a simple CCS

    [655] Menagerie 1 Encounter: Fruit Golem Strategy: d:\Data\My Stuff\kol\Kol Mafia\ccs\basic.ccs [default] Round 0: alotavagina loses initiative! You lose 10 hit points FTF 1/3 monsters dropping goals. This monster drops all your remaining goals! SS Round 1: alotavagina uses the turtle totem...
  8. mredge73

    SmartStasis -- a complex script for a simple CCS

    Quick Question: Why is SS getting me killed? [555] Defiled Niche Encounter: senile lihc Strategy: d:\Data\My Stuff\kol\Kol Mafia\ccs\basic.ccs [default] Round 0: alotavagina wins initiative! Running Zarqon's SS Round 1: alotavagina uses the turtle totem! Round 2: senile lihc takes 1 damage...
  9. mredge73

    SmartStasis -- a complex script for a simple CCS

    SS may need special handling for doppelshifter/wardrobe or when Jick decides to prank us. I am doing my Star Starfish 100% run using SS and the starfish transforms into another familiar an no longer regenerates MP but SS doesn't know that. Low priority issue.
  10. mredge73

    Can I sort an array? Can I call a method if given a reference?

    I just followed this link from another thread and was wondering how this worked exactly: > ash string a="my_name"; call a(); Calling "my_name", which returns string but void expected () Returned: void Is this only limited to void functions?
  11. mredge73

    Ash mechanics

    type "abort" in the cli should halt all script activity you may have to do it more than once if you are running multiple scripts at the same time.
  12. mredge73

    Ash mechanics

    I didn't think that mafia logged you out due to inactivity but kol did. Correct me if I am wrong. A simple cli_execute("chat"); will open the chat panel and should keep you online. Regardless, I usually hit the server every 3 minutes with my clan bots to make sure they stay online. I do not...
  13. mredge73

    Can't copy-paste

    It happens to me all the time. I cannot copy from the cli and paste on this site for example. But for some reason I can paste to notepad, then copy from notepad and paste here. I thought it was just me. I always use shortcut keys: ctrl-c, ctrl-v -win xp
  14. mredge73

    ascension script

    Take about 5 minutes to look around before posting next time. Ascend.ash Rinns
  15. mredge73

    Script request for welcome packages

    What I am most curious about is what your item lists are? I have already written most of the structure for this project in one of my clan management scripts. Mine works by allowing one package a day to be sent to any clan member upon request (still experimental). They request what they want...
  16. mredge73

    Bug - Won't Fix Insult beer pong not all-automatic in mini browser

    I have also experienced the same thing on 3 different ascensions.
  17. mredge73

    My first attempt at a script

    I would add a few print() lines in the script to find out why it is not doing anything. You can always remove them after you discover the problem. My best guess is that it is not evaluating: my_name() == "Red Maw" import <eatdrink.ash>; boolean[string] multiNames ; multiNames["Red Maw"] =...
  18. mredge73

    How can I do a simple line break?

    Back to this topic again: How do you create line breaks in a Kmail? I haven't found a character combination that will create line breaks in a kmail. I want to build a kmail forwarding function but it isn't readable without line breaks to break between messages.
  19. mredge73

    Level based area chooser

    the error is how you declared where_to_burn adventure requires a location type: boolean adventure( int, location ) boolean adventure( int, location, string ) To Fix it declare where_to_burn as a location type instead of a string type: location where_to_burn; Edit: Damn Ninjas!
  20. mredge73

    Philosophy questions - main() and encapsulation

    Object oriented programing (Computer Science 102.. I think) will teach you that you want to organize your code into objects or functions and use the main() mostly as an assembler. As your code gets more and more complex this method will grant you some organization and save additional lines of...
Back
Top