i got NPE in snapshot this line
maybe need some NPE check
other thing is nice 
maybe need some NPE check
Code:
// Check the last snapshotted attack speed
if (SnapShot.Last.AttacksPerSecond >= Settings.Combat.Misc.SnapshotAttackSpeed)
Code:
// Check the last snapshotted attack speed
if (SnapShot.Last != null && SnapShot.Last.AttacksPerSecond >= Settings.Combat.Misc.SnapshotAttackSpeed)






