Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Lock target feature #107

Open
wants to merge 46 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
61ea024
Merge pull request #2 from xcsoftforlsharp/patch-1
myo Apr 16, 2016
40b25e7
1.0.0.2
brian0305 Apr 16, 2016
2560948
Merge branch 'master' of https://github.com/leaguesharp-devs/LeagueSh…
brian0305 Apr 16, 2016
c17c845
1.0.0.2
brian0305 Apr 16, 2016
6118c73
Adjusted namespaces, updated Damage, Interrupter, Gapcloser, and Targ…
ChewyMoon Apr 18, 2016
b9ac646
Removed analyzers
ChewyMoon Apr 18, 2016
7974ada
Revert "Removed analyzers"
Apr 18, 2016
6109172
Revert "Adjusted namespaces, updated Damage, Interrupter, Gapcloser, …
Apr 18, 2016
c02c56e
6.8
brian0305 Apr 20, 2016
a0d3939
better color
xcsoftforlsharp Apr 20, 2016
ba8032b
Merge pull request #4 from xcsoftforlsharp/patch-3
myo Apr 20, 2016
658498b
1.1.0.2
brian0305 Apr 21, 2016
242f240
1.1.0.3
brian0305 Apr 21, 2016
4ebbe36
1.1.0.4
brian0305 Apr 21, 2016
90332c6
Update Minion.cs
nabbhacker Apr 22, 2016
67acd5c
Update Spell.cs
nabbhacker Apr 22, 2016
952d81c
Merge pull request #5 from nabbhacker/master
myo Apr 22, 2016
ce1f8fa
1.1.0.5
brian0305 Apr 23, 2016
ca4394f
Add the translation (including dictionary)
N1ghtMoon Apr 23, 2016
cdaace8
Merge pull request #6 from CHA2172886/master
myo Apr 23, 2016
d638fd5
PastelComCoca - New target selector
Apr 24, 2016
6bde5b5
Update Damage.cs
nabbhacker Apr 24, 2016
ae2fdae
Merge pull request #7 from nabbhacker/master
zezzy Apr 24, 2016
ad23e24
fixed Irelia last hitting
myo Apr 26, 2016
ae7e268
fixed Irelia AA damage
Apr 26, 2016
4f5c1e3
Added few animations
Screeder Apr 26, 2016
f9afe34
Fix Menu Width and add Lock Target Translation
N1ghtMoon Apr 27, 2016
a464dad
Merge pull request #8 from CHA2172886/master
myo Apr 27, 2016
aaeada6
faster lucian assemblies :klappa:
Apr 27, 2016
99d7c06
Exhaust Damage is currently off
myo Apr 27, 2016
e4f9c61
fixed exhaust damage reduction
myo Apr 27, 2016
222d6ae
Finally fixed exhaust.
Apr 27, 2016
45c3e2e
InAutoAttackRange for @sebby
Apr 28, 2016
94efbf8
1.1.0.11
brian0305 May 3, 2016
f84786e
Added Animations, fixed nullptr in Render
Screeder May 3, 2016
122a5d1
Prediction
brian0305 May 5, 2016
aed8d78
Old stuff
brian0305 May 5, 2016
9c9cfb5
Prevent Orbwalker when shop open
brian0305 May 5, 2016
4f3d5a9
Removed debug messages
Screeder May 6, 2016
6f4c272
Improved Anti-Gapcloser
myo May 11, 2016
7087739
fixed compile error issued by the last commit
myo May 11, 2016
8cc13ed
Changed version so everyone gets the new antigapcloser
myo May 11, 2016
d6e19d8
Prediction
brian0305 May 14, 2016
a164545
LeagueSharp > LeagueSharp.SDKEx
May 14, 2016
0563b72
Revert "LeagueSharp > LeagueSharp.SDKEx"
May 14, 2016
ffc4755
Fixed cache
ChewyMoon May 14, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions Core/Bootstrap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ namespace LeagueSharp.SDK
using System.Security.Permissions;
using System.Threading;

using LeagueSharp.SDK.Core.UI.IMenu;
using LeagueSharp.SDK.Core.UI.IMenu.Customizer;
using LeagueSharp.SDK.Core.Utils;
using LeagueSharp.SDK.Core.Wrappers.Damages;
using LeagueSharp.SDK.Enumerations;
using LeagueSharp.SDK.UI;
using LeagueSharp.SDK.UI.Skins;
using LeagueSharp.SDK.Utils;

/// <summary>
/// Bootstrap is an initialization pointer for the AppDomainManager to initialize the library correctly once loaded in
Expand Down Expand Up @@ -92,14 +92,22 @@ public static void Init(string[] args)
Notifications.Initialize(Variables.LeagueSharpMenu);
Logging.Write()(LogLevel.Info, "[SDK Bootstrap] Notifications Initialized.");

// Load the ThemeManager
ThemeManager.Initialize(Variables.LeagueSharpMenu);
Logging.Write()(LogLevel.Info, "[SDK Bootstrap] ThemeManager Initialized.");

// Load Damages.
Damage.Initialize(Variables.GameVersion);
Damage.Initialize();
Logging.Write()(LogLevel.Info, "[SDK Bootstrap] Damage Library Initialized.");

// Load Language
MultiLanguage.LoadTranslation();
Logging.Write()(LogLevel.Info, "[SDK Bootstrap] MultiLanguage Initialized");

// Final notification.
Logging.Write()(LogLevel.Info, "[-- SDK Bootstrap Loading --]");
}

#endregion
}
}
}
3 changes: 1 addition & 2 deletions Core/Enumerations/CastStates.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// along with this program. If not, see http://www.gnu.org/licenses/
// </copyright>

namespace LeagueSharp.SDK
namespace LeagueSharp.SDK.Enumerations
{
/// <summary>
/// Cast States
Expand Down Expand Up @@ -71,6 +71,5 @@ public enum CastStates
/// Failed Condition
/// </summary>
FailedCondition

}
}
100 changes: 0 additions & 100 deletions Core/Enumerations/CastTypes.cs

This file was deleted.

14 changes: 7 additions & 7 deletions Core/Enumerations/CenteredFlags.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// along with this program. If not, see http://www.gnu.org/licenses/
// </copyright>

namespace LeagueSharp.SDK
namespace LeagueSharp.SDK.Enumerations
{
using System;

Expand All @@ -28,32 +28,32 @@ public enum CenteredFlags
/// <summary>
/// None Flag
/// </summary>
None = 0,
None = 0,

/// <summary>
/// Center Horizontally Left.
/// </summary>
HorizontalLeft = 1 << 0,
HorizontalLeft = 1 << 0,

/// <summary>
/// Center Horizontally.
/// </summary>
HorizontalCenter = 1 << 1,
HorizontalCenter = 1 << 1,

/// <summary>
/// Center Horizontally Right.
/// </summary>
HorizontalRight = 1 << 2,
HorizontalRight = 1 << 2,

/// <summary>
/// Center Vertically Up.
/// </summary>
VerticalUp = 1 << 3,
VerticalUp = 1 << 3,

/// <summary>
/// Center Vertically.
/// </summary>
VerticalCenter = 1 << 4,
VerticalCenter = 1 << 4,

/// <summary>
/// Center Vertically Down.
Expand Down
53 changes: 0 additions & 53 deletions Core/Enumerations/CollisionableObjects.cs

This file was deleted.

40 changes: 0 additions & 40 deletions Core/Enumerations/DangerLevel.cs

This file was deleted.

6 changes: 3 additions & 3 deletions Core/Enumerations/DrawType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// along with this program. If not, see http://www.gnu.org/licenses/
// </copyright>

namespace LeagueSharp.SDK
namespace LeagueSharp.SDK.Enumerations
{
using System;

Expand All @@ -28,12 +28,12 @@ public enum DrawType
/// <summary>
/// The OnBeginScene drawing type.
/// </summary>
OnBeginScene,
OnBeginScene,

/// <summary>
/// The OnDraw drawing type.
/// </summary>
OnDraw,
OnDraw,

/// <summary>
/// The OnEndScene drawing type.
Expand Down
35 changes: 0 additions & 35 deletions Core/Enumerations/GapcloserType.cs

This file was deleted.

4 changes: 2 additions & 2 deletions Core/Enumerations/HealthPredictionType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// along with this program. If not, see http://www.gnu.org/licenses/
// </copyright>

namespace LeagueSharp.SDK
namespace LeagueSharp.SDK.Enumerations
{
/// <summary>
/// Name enumerations of health prediction types
Expand All @@ -25,7 +25,7 @@ public enum HealthPredictionType
/// <summary>
/// Default Prediction
/// </summary>
Default,
Default,

/// <summary>
/// Simulated Prediction
Expand Down
Loading