This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-------- 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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" }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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)" }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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" | |
}}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local _table = { | |
target = { | |
health = (function()return 20 end) | |
}, | |
player = { | |
health = (function()return 20 end) | |
}, | |
} | |
local table = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# From https://github.com/mxcl/homebrew/pull/3601 - Thanks krono | |
require 'formula' | |
def universal? | |
ARGV.flag? '--universal' | |
end | |
class Libnoise <Formula |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
#include <sstream> | |
using namespace std; | |
struct statsBase { | |
int stamina; | |
int agility; | |
int defence; | |
int intellect; |