/***************************************************************************** Asklepian Right-Clicker settings: Double right-click on yourself to start or stop radius-healing. Right-click on another player to cad them. Double right-click on Spin your mouse wheel up to equip or use a chain. Spin your mouse wheel down to equip moonstone and use a self-heal pulse (will unequip chain if one is equipped). If a chain is NOT equipped: Double right-click on yourself to start or stop radius-healing. Right-click on another player to cad them. Double right-click on another player to lock your healing onto them. Right-click on the ground to stop cadding. If a chain is equipped: Double right-click on yourself to switch back to moonstone. Right-click on the ground to use your chain. Right-click on another player to pull them. As with the default healer set, the variable gRC_healing_item must be set to the name of the item you will be cadding and radius-healing with. You can either edit the variable in the main Right-Clicker macro file, or copy and paste the line into your character's macro file: setglobal gRC_healing_item "Asklepian Staff" *****************************************************************************/ RC_asklepian_setup { message "* Using Asklepian right-click settings." setglobal gRC_init 1 // Lets the Right-Clicker know that the settings have been initialized. Don't change this. setglobal gRC_item "chain" // This set's special ITEM. setglobal gRC_item_slot "right" // The SLOT this item is equipped in (right, left, neck, finger, shoulders, selected, etc). // Actions without special item equipped: setglobal gRC_right_click_ground "RC_stop_cad" // Action called on SINGLE right-click on GROUND. setglobal gRC_double_right_click_ground "0" // Action called on DOUBLE right-click on GROUND. setglobal gRC_right_click_player "RC_cad" // Action called on SINGLE right-click on ANOTHER PLAYER. setglobal gRC_double_right_click_player "RC_cad_lock" // Action called on DOUBLE right-click on ANOTHER PLAYER. setglobal gRC_right_click_self "0" // Action called on SINGLE right-click on YOURSELF. setglobal gRC_double_right_click_self "RC_radius_heal" // Action called on DOUBLE right-click on YOURSELF. setglobal gRC_wheel_up "RC_use_chain" // Action called on WHEEL ticks UP. setglobal gRC_wheel_up_cooldown 0 // Set this to 1 to have this action have a COOLDOWN (cannot call more than once per spin of the wheel). setglobal gRC_wheel_down "RC_selfheal_pulse" // Action called on WHEEL ticks DOWN. setglobal gRC_wheel_down_cooldown 0 // Set this to 1 to have this action have a COOLDOWN (cannot call more than once per spin of the wheel). // Actions with special ITEM equipped: setglobal gRC_right_click_ground_with_item "/useitem chain\r" // Action called on SINGLE right-click on GROUND with special ITEM equipped. setglobal gRC_double_right_click_ground_with_item "0" // Action called on DOUBLE right-click on GROUND with special ITEM equipped. setglobal gRC_right_click_player_with_item "RC_pull" // Action called on SINGLE right-click on ANOTHER PLAYER with special ITEM equipped. setglobal gRC_double_right_click_player_with_item "0" // Action called on DOUBLE right-click on ANOTHER PLAYER with special ITEM equipped. setglobal gRC_right_click_self_with_item "0" // Action called on SINGLE right-click on YOURSELF with special ITEM equipped. setglobal gRC_double_right_click_self_with_item "RC_toggle_chain" // Action called on DOUBLE right-click on YOURSELF with special ITEM equipped. setglobal gRC_wheel_up_with_item "/useitem chain\r" // Action called on WHEEL ticks UP with special ITEM equipped. setglobal gRC_wheel_up_with_item_cooldown 0 // Set this to 1 to have this action have a COOLDOWN (cannot call more than once per spin of the wheel). setglobal gRC_wheel_down_with_item "RC_selfheal_pulse" // Action called on WHEEL ticks DOWN with special ITEM equipped. setglobal gRC_wheel_down_with_item_cooldown 0 // Set this to 1 to have this action have a COOLDOWN (cannot call more than once per spin of the wheel). } RC_radius_heal { if @my.right_item != gRC_healing_item "/equip " gRC_healing_item "\r" end if "/useitem \"" gRC_healing_item "\"\r" }