Archive for August, 2009

August 21st, 2009 | Categories: Games, Programming | Tags:

Playing around with my healing setup in World of Warcraft. If you have ever healed you might have come across HealBot. Some argue it’s bad, some say it’s good. Some say use Grid + Clique. I myself have a simple healbot setup and I enjoy it just fine with my macros I have setup and my key bindings. I also have it displaying the HoT icons on the bar, as a Paladin I only have SS+FoL now and Gift of the Naaru. Beacon of Light also gets displayed.

The purpose of this post was to inform others how to add a custom HoT (Heal over Time) to be monitored by HealBot. It does a lot of these for you, but I found that it does not monitor the Gift of the Naaru (Draenei Racial) HoT.

Find the file; HealBot_Localization.en.lua it is in the Locale folder. If you use a different language, you may wish to open your own language file instead of .en.

Add the line;

HEALBOT_GIFT_OF_THE_NAARU = "Gift of the Naaru";

In the following section;

HEALBOT_FLASH_HEAL = "Flash Heal";
HEALBOT_FLASH_OF_LIGHT = "Flash of Light";
HEALBOT_GIFT_OF_THE_NAARU = "Gift of the Naaru";
HEALBOT_GREATER_HEAL = "Greater Heal";
HEALBOT_BINDING_HEAL = "Binding Heal"

Make it like so. I added it here just because I copied the line above it for Flash of Light. Save the file.

Open HealBot.lua in the parent folder, and go to Line 1188 which happens to say:

HealBot_Watch_HoT[HEALBOT_FLASH_OF_LIGHT]="C"

Copy that line and paste it, change it to read:

HealBot_Watch_HoT[HEALBOT_GIFT_OF_THE_NAARU]="A"

The few lines should look like this:

HealBot_ShortBuffs[HEALBOT_SEAL_OF_COMMAND]=true
HealBot_ShortBuffs[HEALBOT_SEAL_OF_THE_MARTYR]=true
HealBot_Watch_HoT[HEALBOT_FLASH_OF_LIGHT]="C"
HealBot_Watch_HoT[HEALBOT_GIFT_OF_THE_NAARU]="A"
HealBot_Watch_HoT[HEALBOT_BEACON_OF_LIGHT]="CT"
HealBot_Watch_HoT[HEALBOT_SACRED_SHIELD]="A"
HealBot_Watch_HoT[HEALBOT_LIGHT_BEACON]="A"

Now navigate to line 2933 and 2934, which looks something like:

elseif spellName==HEALBOT_FLASH_OF_LIGHT then
if HealBot_Player_HoT[uscGUID][spellName]<17 then HealBot_Player_HoT[uscGUID][spellName]=17 end

Copy that and paste below it, so the section looks like the following:

if HealBot_Player_HoT[uscGUID][spellName]<17 then HealBot_Player_HoT[uscGUID][spellName]=17 end
elseif spellName==HEALBOT_FLASH_OF_LIGHT then
if HealBot_Player_HoT[uscGUID][spellName]<17 then HealBot_Player_HoT[uscGUID][spellName]=17 end
elseif spellName==HEALBOT_GIFT_OF_THE_NAARU then
if HealBot_Player_HoT[uscGUID][spellName]<17 then HealBot_Player_HoT[uscGUID][spellName]=17 end
elseif spellName==HEALBOT_WILD_GROWTH or spellName==HEALBOT_TRANQUILITY then
HealBot_Watch_AM_HoT=3

Save the file, and open the game, or do a /reload in-game to get the new code loaded. Cast Gift of the Naaru on yourself, or another in your party, and you should now see the HoT icon.

EDIT: As I post this article here and on the HealBot forums, the author has included support for GotN and some others in the newest Beta.

August 4th, 2009 | Categories: Humor, Other | Tags:

Apparently in Florida here, or pretty much anywhere there are drivers, there are idiots. This guy must think that it is his ‘God given right’ to be in my lane when he has two more miles left in his before he has to make a decision to merge or turn right.

Here, I drew an intentionally shitty image to show you what this guy did.

Merge NAO

Now, I didn’t hit him, after he cut me off going thirty five in a fifty five lane but I did slam on my horn for a good thirty seconds behind him. I blew past him as he called me an asshole, and then I proceeded to brake til I was at his window again and could yell back “Learn how to drive FUCKWAD.”

I find that people think anyone who blows the horn is an asshole. Maybe if you don’t do stupid shit you would not get the horn, but I like using my horn to inform people they are wrong and an idiot. I love being the asshole with a horn.

TOP