Blood Mage Macros

From CLUMP
Jump to navigationJump to search

Manjushri Blood Mage Macros

Macro Contributed by Shaky originally from Zelkhorn

f1 "/use /hamstring \r"
f2 "/use /disable \r"
f3 "/use /hemo \r"
f5 "/use /inferno \r"
f4 
{
   if @my.right_item != "bloodblade"
   "/equip bloodblade" "\r"
   end if

   "/use /hemo" "\r"
   "/use /hamstring" "\r"
}
f6 
{
   if @my.right_item != "bloodblade"
   "/equip bloodblade" "\r"
   end if

   "/use /hemo" "\r"
   "/use /hamstring" "\r"
  "/use /disable" "\r"
}
f8 "/useitem bloodstone /set \r"
f9 "/useitem bloodstone /clear \r"
f10 "/useitem bloodblade /reflect \r"
f11 "/use /control \r"
f12 "/use /absorb \r"
f13 "/use /absorb /report \r"
 
//    Shieldstone 
shield
{
if @my.finger_item == "Shieldstone"
 "/equip bloodstonering\r"
else
 "/equip shieldstone\r"
 "/useitem finger\r"
end if
}

Tab call shield
shift-tab "/useitem shieldstone /cancel\r"

Silphene’s Bloodstone Ring Macros

"/bbs"
{
if @my.finger_item != "Bloodstone Ring"
    "/equip Bloodstone Ring\r"
end if
"/usei bloodstone /set\r"
}

"/bba"
{
if @my.finger_item != "Bloodstone Ring"
    "/equip Bloodstone Ring\r"
end if
}

"/bbr"
{
if @my.finger_item == "Bloodstone Ring"
    "/unequip Bloodstone Ring\r"
end if
}

Misc Osha Macros (windows)

control mode.

Toggling control mode while swinging (or possibly feigned) will throw off any tracking of control mode. These checks fix 99% of that. It allows big bold declarations (easy to catch while in combat) of which mode you just toggled into.

shift-tab call bloodbladeControl_Toggle

bloodbladeControl_Toggle
{
	"/use /control \r"
	pause 1
	set loglineBleed @env.TextLog
	if loglineBleed >= "• You channel your"
		setglobal bleedToggled 1
		call OnBleedToggleMessages
	else if loglineBleed >= "• Your blade feeds"
		setglobal bleedToggled 0
		call OnBleedUntoggleMessages
	else if loglineBleed >= "To use an item equipped"
		//no bloodblade equipped
		message ""
	else
		//mystery because unfortunately timed logline interfering.
		setglobal bleedToggled 0
	end if
}
OnBleedToggleMessages
{
	//however apparent you want it to be in the log that you just toggled control.  Handy if you routinely forget which mode you are in (like I do)
	message "+++bleed ON+++"
	message "+++bleed ON+++"
	message "+++bleed ON+++"
}
OnBleedUntoggleMessages
{
	//however apparent you want it to be in the log that you just untoggled control.  Handy if you routinely forget which mode you are in (like I do)
	message ""
	message "---bleed OFF---"
	message "---bleed OFF---"
	message "---bleed OFF---"
	message ""
}

2 button feign

Guaranteed no mishaps. One hotkey causes the mage to feign, one causes it to end (spamming can't cause woopsies, pressing feignDown will always cause you to attempt to initiate a feign)

Can change to any hotkeys, but this is currently using click4 and click5. These are the 2 buttons on the left side of a mouse (in most cases).

'$any_click' is important if a 'click' is the hotkey and you don't want it to only happen when clicking on an exile.

click4 
{
	$any_click
	call feignDeath_On
}
click5 
{
	$any_click
	call feignDeath_Off
}

feignDeath_On
{
 	"/useitem bloodstone /dead\r"
}
feignDeath_Off
{
 	"/unequip bloodstone\r"
	"/equip bloodstone\r"
}

1 button feign

can sometimes be thrown off if clicked while attacking or otherwise unable to act. If it is thrown off, pressing feign won't feign you, you will have to press the button a second time for that to happen. That unfortunate situation may cause death by macro mishap.

Can change to any hotkey, but this is currently using click4. This one of the 2 buttons on the left side of a mouse (in most cases).

'$any_click' is important if a 'click' is the hotkey and you don't want it to only happen when clicking on an exile.

setglobal magicWord "Nacreus" //or whatever your bloodmage's magic word is

click4 
{
	$any_click
	call feignDeath_Toggle
}

setglobal isFeigned 0
feignDeath_Toggle
{
		// isFeigned: (0) = not feigned (1) = am currently feigned.  (2) = in the process of feigning
	if isFeigned == 0
		"/useitem bloodstone /dead\r"
		setglobal isFeigned 2
		pause 3
		// if the macro gets off, like if accidentally used when swinging and then mashed shortly after, don't bother setting the feign state here
		if isFeigned == 2
			setglobal isFeigned 1
		end if
	else if isFeigned == 1
		"/whisper " magicWord "\r"
		setglobal isFeigned 0
	else
		//something weird, so default to flopping
		"/useitem bloodstone /dead\r"
		setglobal isFeigned 1
	end if
}

quick commands for changing ring values

"/5" "/useitem bloodstone /set 5%\r"
"/10" "/useitem bloodstone /set 10%\r"
"/15" "/useitem bloodstone /set 15%\r"
"/20" "/useitem bloodstone /set 20%\r"
"/25" "/useitem bloodstone /set 25%\r"
"/30" "/useitem bloodstone /set 30%\r"
"/35" "/useitem bloodstone /set 35%\r"
"/40" "/useitem bloodstone /set 40%\r"