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
--------------------- | |
32.0 increasedcriticalstrikechance | |
15.0 additionalchancetoblockwithshields | |
230.0 +tostrength | |
0.4 ofphysicalattackdamageleechedaslife | |
null cannotevadeenemyattacks | |
cannotbestunned | |
6.0 increasedeffectofaurasyoucast | |
120.0 increasedblockrecovery | |
3.0 increasedmovementspeed |
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
--------------------- | |
16.0 increasedcriticalstrikechance | |
18.0 additionalchancetoblockwithshields | |
340.0 tostrength | |
50.0 todexterity | |
0.8 ofphysicalattackdamageleechedaslife | |
25.0 increasedlifeleechedpersecond | |
4.0 lifegainedforeachenemyhitbyyourattacks | |
120.0 increasedblockrecovery | |
23.0 increasedmaximummana |
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
public function getPDO() { | |
if (isset($this->pdo)) { | |
return $this->pdo; | |
} | |
$this->pdo = new PDO( | |
"mysql:dbname=mtg", | |
'root', | |
'' |
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
$ grep brickley cred | |
104562390-|--|-kennethbrickley@gmail.com-|-icfEWY/u1j4=-|-costello|-- | |
116064511-|--|-p.brickley@hotmail.fr-|-WgDwwGWAN13RuloffBd9Gg==-|-|-- | |
102900607-|--|-bobbrickley@hotmail.com-|-CwNOjU9z8TQ=-|-usual|-- | |
103185823-|--|-susan.brickley@cox.net-|-zBNJlzGsH/4=-|-|-- | |
100183957-|--|-janebrickley@gmail.com-|-Cvt9ZvEr+VDioxG6CatHBw==-|-Password|-- | |
113073781-|--|-thebrickleys@gmail.com-|-s3giGffziHfioxG6CatHBw==-|-EGB|-- | |
116816426-|--|-ekernan@brickleysears.com-|-SQAFg0e01TfioxG6CatHBw==-|-|-- | |
85650571-|--|-steve.brickley@comcast.net-|-OcpOWuCQvMslHanv8qpkRg==-|-namezip|-- |
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
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.Linq; | |
using System.Text; | |
using System.Windows.Forms; | |
using System.Drawing.Imaging; | |
using System.IO; |
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
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.Linq; | |
using System.Text; | |
using System.Windows.Forms; | |
using System.Drawing.Imaging; | |
using System.IO; |
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
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.Linq; | |
using System.Text; | |
using System.Windows.Forms; | |
using System.Drawing.Imaging; | |
using System.IO; |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading; | |
using System.Diagnostics; | |
using System.Drawing; | |
using System.Drawing.Imaging; | |
using System.Runtime.InteropServices; | |
using System.IO; |
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
cl_crosshair_drawoutline "1" | |
cl_crosshair_dynamic_maxdist_splitratio "0.35" | |
cl_crosshair_dynamic_splitalpha_innermod "1" | |
cl_crosshair_dynamic_splitalpha_outermod "0.5" | |
cl_crosshair_dynamic_splitdist "7" | |
cl_crosshair_outlinethickness "1" | |
cl_crosshairalpha "128" | |
cl_crosshaircolor "5" | |
cl_crosshaircolor_b "0" | |
cl_crosshaircolor_g "0" |
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
public class Ability { | |
protected String name; | |
protected int level; | |
public Ability(String name) { | |
this.name = name; | |
} | |
public void levelUp() { |
OlderNewer