Skip to content

Instantly share code, notes, and snippets.

View benphelps's full-sized avatar
🇺🇦
Slava Ukrayini!

Ben Phelps benphelps

🇺🇦
Slava Ukrayini!
View GitHub Profile
-------- Original Message --------
Subject: MRS VERONICA BRIGHT
Date: 2012-10-29 03:47
From: "MRS VERONICA BRIGHT"<[email protected]>
To:
Reply-To:
Mrs. Veronica Bright
Bank Of East Asia USA(NA)
San Gabriel Branch
-- SPEC ID 62
ProbablyEngine.rotation.register(62, {
-- Buffs
{ "Mage Armor", "!player.buff(Mage Armor)" },
{ "Arcane Brilliance", "!player.buff(Arcane Brilliance)" },
-- Grounds
{ "Rune of Power", "modifier.shift", "ground" },
#include <stdlib.h>
#include <mach/mach.h>
#include <Security/Authorization.h>
int acquireTaskportRight()
{
OSStatus stat;
AuthorizationItem taskport_item[] = {{"system.privilege.taskport:"}};
AuthorizationRights rights = {1, taskport_item}, *out_rights = NULL;
AuthorizationRef author;
-- SPEC ID 103
ProbablyEngine.rotation.register(103, {
{ "Faerie Fire", "!target.debuff(Faerie Fire)" },
{ "Savage Roar", {
"!player.buff(Savage Roar)",
"player.combopoints = 0"
}},
{ "Savage Roar", {
"player.buff(Savage Roar).duration < 3",
"player.combopoints = 5"
-- SPEC ID 258
ProbablyEngine.rotation.register(258, {
{ "Power Word: Fortitude", "!player.buff(Power Word: Fortitude)" },
{ "Inner Fire", "!player.buff(Inner Fire)" },
{ "Shadow Form", "!player.buff(Shadowform)" },
{ "Shadow Word: Pain", "target.debuff(Shadow Word: Pain).duration < 3" },
{ "Vampiric Touch", "target.debuff(Vampiric Touch).duration < 4" },
{ "Devouring Plague", "player.shadoworbs = 3" },
{ "Mind Blast" },
{ "Mind Spike", "player.buff(Surge of Darkness)" },
-- SPEC ID 66
ProbablyEngine.rotation.register(66, {
{ "Blessing of Kings", "!player.buff(Blessing of Kings)" },
{ "Avenging Wrath", "cooldowns" },
{ "Sacred Shield", "!player.buff(Sacred shield)" },
{ "Hammer of the Righteous", "!target.debuff(Weakened Blows)" },
{ "Shield of the Righteous", {
"player.holypower = 3",
"player.health > 90"
}},
ProbablyEngine.rotation.register(71 --[[ Arms Warrior ]]-- , {
{ "Battle Shout" },
{ "Recklessness", {
"cooldowns",
"target.health > 20",
"target.debuff(Colossus Smash).duration > 5"
}},
{ "Berserker Rage", "cooldowns" },
{ "Deadly Calm", {
"cooldowns",
local _table = {
target = {
health = (function()return 20 end)
},
player = {
health = (function()return 20 end)
},
}
local table = {
@benphelps
benphelps / libnoise.rb
Created April 29, 2013 19:30
libnoise formula for homebrew
# From https://github.com/mxcl/homebrew/pull/3601 - Thanks krono
require 'formula'
def universal?
ARGV.flag? '--universal'
end
class Libnoise <Formula
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
struct statsBase {
int stamina;
int agility;
int defence;
int intellect;