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
engine.highlightSelection = function(xFrom, yFrom, xTo, yTo) { | |
engine.clearHighlight(); | |
for (var x=xFrom; x < xTo; x++) { | |
for (var y=yFrom; y < yTo; y++) { | |
var posX = (x-1) * engine.tileW; | |
var posY = (y-1) * engine.tileH; | |
engine.overlayContext.beginPath(); | |
engine.overlayContext.rect(posX, posY, engine.tileW, engine.tileH); | |
engine.overlayContext.fillStyle = 'rgba(0, 0, 0, 0.4)'; | |
engine.overlayContext.fill(); |
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
/* | |
Phelps does JS LOL!?!?! | |
*/ | |
var engine = { }; | |
engine.context = false; | |
engine.tileW = 32; | |
engine.tileH = 32; |
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
{ | |
Spell { | |
} | |
Spell -> target { | |
} | |
-- rules?! | |
target.range <= 20 | |
} |
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
<?xml version="1.0" encoding="UTF8"?> | |
<!DOCTYPE updater PUBLIC "peupdater" "https://probablyengine.com/peupdater.dtd"> | |
<updater> | |
<!-- Rotation Metadata --> | |
<classID></classID> | |
<name></name> | |
<url></url> | |
<version></version> |
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
Copyright (c) 2014, <Name> | |
All rights reserved. | |
Redistribution and use in source and binary forms, with or without | |
modification, are permitted provided that the following conditions are met: | |
* Redistributions of source code must retain the above copyright | |
notice, this list of conditions and the following disclaimer. | |
* Redistributions in binary form must reproduce the above copyright | |
notice, this list of conditions and the following disclaimer in the |
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
{ "Avenger's Shield", { | |
"modifier.interrupts", | |
"!modifier.last(Rebuke)" | |
}} | |
{ "Avenger's Shield", { | |
"modifier.interrupts", | |
"!modifier.last(Arcane Torrent)" | |
}} |
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
Spell -> target { | |
target.rule > 5 > 2 = true | |
} |
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
-- Buffs | |
Windfury Weapon { | |
player.enchant.mainhand | |
} | |
Flametongue Weapon { | |
!player.enchant.offhand | |
} | |
Lightning Shield { | |
!player.buff(Lightning Shield) | |
} |
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
Spell -> focus { | |
condition.value <= 50 | |
} |
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 mavminsLib = { } | |
mavminsLib.inT15checked = nil | |
mavminsLib.inT15 = function(count) | |
if mavminsLib.inT15checked then | |
return mavminsLib.inT15checked >= count | |
end | |
local EnhanceT15 = { | |
96691, -- Head Heroic | |
96693, -- Shoulders Heroic |