Skip to content

Instantly share code, notes, and snippets.

View brandonjank's full-sized avatar

Brandon Jank brandonjank

View GitHub Profile
@brandonjank
brandonjank / UniconNPpp.xml
Created September 29, 2015 22:21
Unicon Language Profile for Notepad++
<NotepadPlus>
<UserLang name="Unicon" ext="" udlVersion="2.1">
<Settings>
<Global caseIgnored="no" allowFoldOfComments="no" foldCompact="no" forcePureLC="0" decimalSeparator="0" />
<Prefix Keywords1="no" Keywords2="no" Keywords3="no" Keywords4="no" Keywords5="no" Keywords6="no" Keywords7="no" Keywords8="no" />
</Settings>
<KeywordLists>
<Keywords name="Comments">00# 01 02 03 04</Keywords>
<Keywords name="Numbers, prefix1"></Keywords>
<Keywords name="Numbers, prefix2"></Keywords>
# Executed before combat begins. Accepts non-harmful actions only.
actions.precombat=flask,type=greater_draenic_strength_flask
actions.precombat+=/food,type=calamari_crepes
actions.precombat+=/horn_of_winter
actions.precombat+=/unholy_presence
# Snapshot raid buffed stats before combat begins and pre-potting is done.
actions.precombat+=/snapshot_stats
actions.precombat+=/army_of_the_dead
actions.precombat+=/potion,name=draenic_strength
@brandonjank
brandonjank / survival.lua
Last active August 29, 2015 14:04
Backburn's Survival Hunter Rotation for the Device Addon
-- Backburn's Survival Hunter Rotation
-- Updated on July 17th, 2014
-- PLAYER CONTROLLED: Rabid MUST be on Auto-Cast for Stampede pets to use them :)
-- SUGGESTED TALENTS:
-- CONTROLS: Pause - Left Control, Explosive/Ice/Snake Traps - Left Alt, Freezing Trap - Right Alt, Scatter Shot - Right Control
-- VARIABLES
local apiVersion = '1:0:0-alpha'
local rotationVersion = '1:0:0-alpha'
local developerName = 'Backburn'
-- Schmoe's Feral Death Knight Mage Rotation
-- Import
local Actions, Receivers, Modifiers = Device.actions, Device.recivers, Device.modifiers
-- Actions
local spell, pause = Actions:Spell, Actions:Pause
-- Recivers
local unit, ground = Receivers:Unit, Receivers:Ground
-- Modifiers
local key, mouse, toggle = Modifiers:Key, Modifiers:Mouse, Modifiers:Toggle