Search results

  1. C

    Is there a way to save the window size and postions?

    It's because of a recent 'improvement' on the Gear Changer page which allows slots for 3 stickers. I don't have any stickers, so it would be nice if that page had a scrollbar and a smaller default size. Thanks!
  2. C

    Main display/tab error.

    Because you are starting out fresh, you have also lost all your preferences, including which tabs are displayed.
  3. C

    Is there a have_displaycase() type function?

    Excellent! That did the trick. Thanks!
  4. C

    Is there a have_displaycase() type function?

    I'm putting together an inventory script that checks all storage locations for Mr. items. I want to also check in your display case if you have one. The trouble begins if my character does Not have a display case. It then just tries to update the display case for each item i have it check...
  5. C

    Item of the Month Inventory

    Fixed in daily build 6019! Thanks again! ;D
  6. C

    Item of the Month Inventory

    Thank you Veracity for the great explanation. I'll use == with expressions to help keep it straight in my head. I don't remember putting that result= in there, must have been some earlier troubleshooting or something. Stupid me. Taking out the result= fixed that error. Still having a...
  7. C

    Item of the Month Inventory

    Hello. I am working on creating a script to show which IotM I have on my character, and in which permeation the rotating items are in. It is pretty straight forward and mostly works. There are only a couple of items that the script says I have which I don't. In the code below, I do NOT...
  8. C

    Refreshing items

    Thanks. That did the trick.
  9. C

    Refreshing items

    I have noticed that this is still a problem for me running 12.1 on Windows XP. Mafia doesn't see most of my booze and food. Also things like my filthy lucre count, etc. Thanks!
  10. C

    How to cycle through all items, or locations, or etc.

    If you know the range of numbers you want to list, you can do it on-the-fly. Here is what i use to list out all the familiar's i have: For x from 1 upto 80 by 1 { if(have_familiar(to_familiar(x))) print(to_familiar(x)) ; }
  11. C

    Sub-directories and scripts

    Following the unix-type directory syntax, i use the ../ notation to look in a different subdirectory. The "ScriptDataFiles" folder is at the same level as the scripts folder. They are both in the mafiaRoot directory. Like this: file_to_map("../ScriptDataFiles/Map.txt", List);
  12. C

    Help with have_equipped and equipped_item

    Thank you, thank you, thank you! Frustration is at an end! cli_execute("refresh equip"); did the trick. Question - Is there a list of cli_execute commands anywhere?
  13. C

    Help with have_equipped and equipped_item

    These 2 ASH functions are returning incorrect/random values for non-standard or no familiar equipment, but work fine with the default familiar equipment. and i don't know why. The code snippet below explains the core problem i am having. I ran it with the Mosquito equipped with the ant hoe...
  14. C

    Problems trying to unequip Familiar EQ

    Thank you! That did the trick. I'll remember the ashref command for the future. Now just a little tweaking to make sure it removes the IotM equipment also. Thanks again.
  15. C

    Problems trying to unequip Familiar EQ

    Hello! I am writing a script to unequip all my familiar's equipment and can't get the unequip() or unequip_slot() functions to work. I've been researching the Reference manual and google and can't find out why. I just want an quick way to unequip the familiar equipment from all my familiars...
Back
Top