StrifeCUK

  • Announcement
StrifeCUK has not posted any announcements.
  • My Activity

  • Blogs
    StrifeCUK has not posted any Blogs.
  • My Comments
  • srywrgnbr wrote 
    Mon, Jun 22 2009 11:56 AM ()

    I needed the "bat" file for Mac OS, so I replaced the DOS commands with standard BOURNE shell. This script will work on Mac, Linux, etc...

    Instructions:

    Step1: Open a text editor (vi, TextEdit, etc...)
    Step2: Copy the text below and paste it into your editor.
    Step3: Save the file as in the Addons/HealBot directory as "HealBot_Clean_WTF.sh.cr"
    Step4: Cleanup the any (\r) characters:
    cd /Interface/AddOns/HealBot
    tr -d \r HealBot_Clean_WTF.sh
    rm HealBot_Clean_WTF.sh.cr
    Step5: Make the file executable
    chmod +x HealBot_Clean_WTF.sh

    Here is the script:

    #!/bin/sh
    # HealBot_Clean_WTF.sh
    #
    # Deletes All healbot text files from WTF
    #
    # This must be run from the Healbot addon directory
    #

    ########################################
    # Define the "BASE_DIRECTORY". This
    # Assumes the script is installed in
    # The AddOns/HealBot folder.
    ########################################
    BASE_DIRECTORY="../../../WTF/Account/"
    CONFIRMED=""

    ########################################
    # Echo a message to the screen
    #
    # Only Delete on "D" not "d"
    # - Mac's are case sensative
    # Then "read" user input into "CONFIRMED"
    ########################################
    echo
    echo
    echo " D - Clean HealBot files in your WTF directory"
    echo " Any other key - Do NOTHING and exit"
    echo
    echo "Enter UPPER CASE D to Delete "

    read CONFIRMED


    ########################################
    # If user pressed "D" (upper case)
    # Use 'find' to create a list of files starting
    # from the BASE_DIRECTORY that match the pattern
    # HealBot.*
    #
    # Find will then EXECute rm (remove) to
    # delete each file.
    ########################################
    if [ "$CONFIRMED" = "D" ]
    then
    # FIND and DELETE
    find ${BASE_DIRECTORY} -type f -name HealBot.\* -exec rm {} \;

    # FIND ONLY - for testing
    #find ${BASE_DIRECTORY} -type f -name HealBot.\*


    # Check the RETURN CODE from 'FIND' - if it is NOT 0
    # Display an error message and exit
    if [ $? -ne 0 ]
    then
    echo
    echo "ERROR - Running in the wrong Directory"
    echo "ERROR - Run this in the addons own directory ./Interface/AddOn/HealBot"
    echo

    exit 1
    fi

    echo
    echo
    echo 'Deleted all healbot text files from WTF sub-directories ** Completed **'
    echo

    exit 0
    fi

    echo
    echo "D NOT pressed - NOTHING DELETED"
    echo
    # THIS IS THE LAST LINE

  • vine wrote 
    Fri, Jun 5 2009 6:55 PM ()

    First off great addon, I've been using Healbot sisnce I started playing WoW.

    I'm have duplicate frame problems. This caused one wipe and two near wipes last night. I'll try and explain:

    "Joe" is my focus target for the start of the fight.
    During the fight I change my focus target to "Fred".
    Now both unitframes show "Fred" and I am unable to heal "Joe".

    It doesn't happen every time, but when it does it's fatal. As you can imagine not being able to heal one of the MT's is not ideal. Until there's a solution for this I'm going to have to use Grid (and I really hate Grid). Any insights on this "duplicate frame" bug would be greatly appreciated.

  • Protolif wrote 
    Sat, May 2 2009 5:31 PM ()

    Hello,

    I run WoW on Linux, and WoWMatrix is the only updater that works properly. Please consider hosting your addons on their servers, to accommodate Linux users.

    http://www.wowmatrix.com/contact.html

    Sincerely,
    James Dunn

  • jhersey29 wrote 
    Sun, Apr 26 2009 10:22 AM ()

    Thank for all the work on the addon. It is a great tool for druid raid healers. Since the patch I have experienced minor bugs with the spell "Wild Growth". It has range issues even when targets are in range or even when casting on self. It will say spell not ready even when the 6 sec cd is over. In one instance it has reported target is dead when the target is alive. In every case reloading the ui will solve the issues until they creap up again.

    I am trying to find a repeatable pattern to report but am having trouble figuring out what the issue.

    Thank You

  • Helicon007 wrote 
    Sun, Apr 26 2009 3:29 AM ()

    Thank you for this great AddOn. I'm using it several month now and it helps me a lot which each class.
    Since WotLk there has been a small bug in the German localization for Mages. The ability Remove Lesser Curse has changes to Remove Curse in German. So if you change...
    HEALBOT_REMOVE_LESSER_CURSE = "Geringen Fluch aufheben";
    ... to ...
    HEALBOT_REMOVE_LESSER_CURSE = "Fluch aufheben";
    ... everything works fine. Is it possible to replace this line in the program package so Germans don't have to do this by hand after each update?

    Thank you for your good job.

  • Profile
Author

StrifeCUK

Member Since: 12/29/2005
Sex: Male
Location:
  • StrifeCUK's Projects
  • My Friends
No users have been added to StrifeCUK's friends list.