|
You last visited: Today at 17:34
Advertisement
LegendaryClient - Alternative LOL client (C#)
Discussion on LegendaryClient - Alternative LOL client (C#) within the League of Legends Hacks, Bots, Cheats & Exploits forum part of the League of Legends category.
01/26/2014, 21:09
|
#316
|
elite*gold: 0
Join Date: Aug 2010
Posts: 150
Received Thanks: 211
|
Quote:
Originally Posted by zer11
U dropped legendaryclient?
|
Nope... just waiting for a reply from riot
Quote:
Originally Posted by Cybulexs
I want compile rtmp-sharp.dll (Source  ), but source haven't rtmp-sharp.snk.
How i can fix this problem?
Only this missing me to compile the Client.
|
delete rtmp-sharp.snk and go into the project settings and disable code signing.
|
|
|
01/26/2014, 21:17
|
#317
|
elite*gold: 0
Join Date: Jan 2014
Posts: 14
Received Thanks: 1
|
Quote:
|
delete rtmp-sharp.snk and go into the project settings and disable code signing.
|
This error ->
|
|
|
01/26/2014, 21:33
|
#318
|
elite*gold: 0
Join Date: Sep 2013
Posts: 10
Received Thanks: 0
|
Dude ,
Can you upload a tutorial in english how to install this modded Client ? I really wanna test.
Would be awsome.
-Zeamy
|
|
|
01/26/2014, 22:10
|
#319
|
elite*gold: 0
Join Date: Aug 2010
Posts: 150
Received Thanks: 211
|
Quote:
Originally Posted by Cybulexs
This error -> 
|
that means it has been built correctly... you can't run a dll :P
you should find it in the ../../gac/ folder (so two directory levels above where you built it)
|
|
|
01/26/2014, 22:53
|
#320
|
elite*gold: 0
Join Date: Jan 2014
Posts: 14
Received Thanks: 1
|
Aaa ok. I adding this dll - Project -> Add Existing Item; Work.
Start and... two errors :c
Code:
Error 1 The type or namespace name 'PresenceManager' could not be found (are you missing a using directive or an assembly reference?) C:\Users\Cybulex\Downloads\LegendaryClient-newUi\LegendaryClient\Logic\Client.cs 43 25 LegendaryClient
Code:
Error 2 The type or namespace name 'ConferenceManager' could not be found (are you missing a using directive or an assembly reference?) C:\Users\Cybulex\Downloads\LegendaryClient-newUi\LegendaryClient\Logic\Client.cs 44 25 LegendaryClient
|
|
|
01/26/2014, 23:03
|
#321
|
elite*gold: 0
Join Date: Aug 2010
Posts: 150
Received Thanks: 211
|
Quote:
Originally Posted by Cybulexs
Aaa ok. I adding this dll - Project -> Add Existing Item; Work.
Start and... two errors :c
Code:
Error 1 The type or namespace name 'PresenceManager' could not be found (are you missing a using directive or an assembly reference?) C:\Users\Cybulex\Downloads\LegendaryClient-newUi\LegendaryClient\Logic\Client.cs 43 25 LegendaryClient
Code:
Error 2 The type or namespace name 'ConferenceManager' could not be found (are you missing a using directive or an assembly reference?) C:\Users\Cybulex\Downloads\LegendaryClient-newUi\LegendaryClient\Logic\Client.cs 44 25 LegendaryClient
|
you dont have jabber-net
make sure its
|
|
|
01/26/2014, 23:07
|
#322
|
elite*gold: 81
Join Date: May 2009
Posts: 97
Received Thanks: 4
|
When I coded stuff in Visual Basic it created an exe file. Anyone can send me their working exe file per PM? I cant get it working. I suck
|
|
|
01/26/2014, 23:33
|
#323
|
elite*gold: 0
Join Date: Jan 2014
Posts: 14
Received Thanks: 1
|
Quote:
Originally Posted by Snowl
you dont have jabber-net
make sure its 
|
Its not that. :c
I have installed this ->
How compile jabber-net with your url? I try Visual Studio 2013 (not compatible in full [jabber-net), Visual Studio 2010, 2005 (newer software)...
2011? 12? xD
|
|
|
01/26/2014, 23:48
|
#324
|
elite*gold: 0
Join Date: Aug 2010
Posts: 150
Received Thanks: 211
|
Quote:
Originally Posted by Cybulexs
Its not that. :c
I have installed this ->
How compile jabber-net with your url? I try Visual Studio 2013 (not compatible in full [jabber-net), Visual Studio 2010, 2005 (newer software)...
2011? 12? xD
|
that one wont work
i think i compiled it with 2012 but its also available in my repo:
|
|
|
01/27/2014, 00:34
|
#325
|
elite*gold: 0
Join Date: Jan 2014
Posts: 14
Received Thanks: 1
|
Ok. I compile the client with your DLL. Work, but...
I login to my account and bug:
Code:
An exception of type 'System.NullReferenceException' occurred in LegendaryClient.exe but was not handled in user code
Additional information: Object reference not set to an instance of an object.
If there is a handler for this exception, the program may be safely continued.
|
|
|
01/27/2014, 01:36
|
#326
|
elite*gold: 0
Join Date: Aug 2010
Posts: 150
Received Thanks: 211
|
Quote:
Originally Posted by Cybulexs
Ok. I compile the client with your DLL. Work, but...
I login to my account and bug:
Code:
An exception of type 'System.NullReferenceException' occurred in LegendaryClient.exe but was not handled in user code
Additional information: Object reference not set to an instance of an object.
If there is a handler for this exception, the program may be safely continued.
|
yeaaa that doesnt help me at all i need a stack trace to help you...
|
|
|
01/27/2014, 01:59
|
#327
|
elite*gold: 0
Join Date: Jan 2014
Posts: 14
Received Thanks: 1
|
I click Continue, Visual Studio move to this code:
Code:
> LegendaryClient.exe!LegendaryClient.Logic.Client.PingElapsed(object sender, System.Timers.ElapsedEventArgs e) Line 411 C#
internal static void PingElapsed(object sender, ElapsedEventArgs e)
{
if (Region != null && !RtmpConnection.IsDisconnected && PingLabel != null)
{
double PingAverage = HighestPingTime(Client.Region.PingAddresses);
RunOnUIThread(new Action(() =>
{
PingLabel.Content = Math.Round(PingAverage).ToString() + "ms";
if (PingAverage == -2)
PingLabel.Content = "";
else if (PingAverage == -1)
PingLabel.Content = "timeout";
}));
}
}
|
|
|
01/27/2014, 02:48
|
#328
|
elite*gold: 0
Join Date: Aug 2010
Posts: 150
Received Thanks: 211
|
Quote:
Originally Posted by Cybulexs
I click Continue, Visual Studio move to this code:
Code:
> LegendaryClient.exe!LegendaryClient.Logic.Client.PingElapsed(object sender, System.Timers.ElapsedEventArgs e) Line 411 C#
internal static void PingElapsed(object sender, ElapsedEventArgs e)
{
if (Region != null && !RtmpConnection.IsDisconnected && PingLabel != null)
{
double PingAverage = HighestPingTime(Client.Region.PingAddresses);
RunOnUIThread(new Action(() =>
{
PingLabel.Content = Math.Round(PingAverage).ToString() + "ms";
if (PingAverage == -2)
PingLabel.Content = "";
else if (PingAverage == -1)
PingLabel.Content = "timeout";
}));
}
}
|
Change
if (Region != null && !RtmpConnection.IsDisconnected && PingLabel != null)
to
if (Region != null && RtmpConnection != null && !RtmpConnection.IsDisconnected && PingLabel != null)
|
|
|
01/27/2014, 04:06
|
#329
|
elite*gold: 0
Join Date: Jan 2012
Posts: 1
Received Thanks: 0
|
Nice skin !
|
|
|
01/27/2014, 10:25
|
#330
|
elite*gold: 0
Join Date: Jan 2014
Posts: 4
Received Thanks: 0
|
"A first chance exception of type 'System.Reflection.TargetInvocationException' occurred in mscorlib.dll"
What am i supposed to do now ? And yeah,i pasted gameStats_en_US.sqlite...Also,it downloaded datadragon,and copied file from lol folder.
I downloaded new ui..I will edit this post soon.
Edit2:I am back to master..Soon edit 3
EDIT 3:I AM GETTING SAME mscorlib.dll error >_>
|
|
|
 |
|
Similar Threads
|
[Development] alternative Darkorbit Client
10/10/2012 - DarkOrbit - 51 Replies
Als OpenGL-Neuling möchte ich meine Fähigkeiten im grafischen Bereich erweitern.
Als kleines Projekt release ich dazu hier meinen alternativen Darkorbit Clienten.
Funktionen:
weites Sichtfeld
Boxen aufheben (nach Klick)
Jumpen (mit J)
Zeigt andere Schiffe, NPCs, Boxen und Gates an
Zoomen
|
Ore To Client Obfuscation Alternative?
06/14/2012 - Minecraft - 8 Replies
Hallo!
Wenn ich auch meinem Server Minecraft Bukkit Server Ore To Client Obfuscation installiere, laggt es und ich bekomme immer can´t keep up Meldungen. Gibt es eine alternative um Xray auf Servern zu verhindern?
MfG
|
Alternative Client - For those who dont want AOR ones
06/03/2011 - Rappelz - 1 Replies
Blah. You can get it here, works fine with p-server. Contains working gameguard, config and help file. enjoy.
Edit: It is the official client which was released by gpotato within its original installer. No need to virustotal that.. :D
|
Please help me = I'm looking for alternative way to get korean client
09/24/2010 - Archlord - 2 Replies
Hellow
since I've seen some members from elitepvp are enjoying the korean version of archlord and because I'm bored of webzen's rates, I'd like to start an account on the korean version.
Now I've created an account with my KSSn :D though I'm not korean
Now I'm downloading the client from the official website but I'll be still downloading in 2 years at the current speed :mad:
Now if anyone of the members could put the korean client parts online and pm me the megaupload link I'd be so happy...
|
Alternative: Multi-Client
09/23/2009 - GW Exploits, Hacks, Bots, Tools & Macros - 18 Replies
Hi,
das Forum hier ist gut, jedoch hatte ich auch Schwierigkeiten den Multiclient zum laufen zu bringen. Ich hab von meinen Gilden-Kollegen folgenden Client empfohlen bekommen, das Ding läuft einwandfrei auch unter vista und xp: GWx2.
Einfach den gw Ordner einmal woanders hinkopieren. Dann kann einmal die Originalversion laufen und gleichzeitig die Kopie; also max 2 x gw is drinnen.
Dein Freund goooogle schmeisst dir dies hierzu raus
GWx2 Site
Have fun mit dem Client....
Gruss
|
All times are GMT +1. The time now is 17:34.
|
|