Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[C#]MapleSEA localhost/redirector source code (For Microsoft® Visual C#® 2010) FINAL

Status
Not open for further replies.
Mythic Archon
Loyal Member
Joined
Jul 14, 2008
Messages
712
Reaction score
164
Let make thing clear, don't expect anything much here
I am just a high school kid, and it's free what do you want from me.

The reason that i publish this is because i will be leaving these maple stuffs this May, i am going on a local university named "Multimedia University"

-----------------------

This is base on the public "localms client source" that released by raptor jesus

Here's the download link :

I only post this on these places : ragezone, kryptodev, 51mxd, and also my personal site
If you download this from other places, it might contain virus or any other things since its not my release

You like it, you download it
You don't like it you just leave thanks you

Credits :
This client was originally written by CSharp, so full credit for CSharp
Lailainoob were mentioned by mod Sifl on kryptodev so yeah, credit for lailainoob as well
Raptopjesus for releasing the client for sure
Me ... the noob high school john 0.o for adding some simple stuffs and yeah
 
Last edited:
Mythic Archon
Loyal Member
Joined
Jul 14, 2008
Messages
712
Reaction score
164
Re: MapleSEA localhost/redirector source code (For Microsoft® Visual C#® 2010) FINAL

last updates on this
should be cool for you to play around with the source files yourself
 
Junior Spellweaver
Joined
May 9, 2011
Messages
141
Reaction score
21
ty! this helpped a lot!

How this helped you ? lol.
Also, you should look at the rules before posting.

Forums Rules said:
5. Do not bump an existing thread 2 weeks after the previous post. Instead create a new post, and if necessary link to the old one.
 
Newbie Spellweaver
Joined
Jun 6, 2011
Messages
14
Reaction score
1
Sorry but I've problem using this redirector.

I get amd64.exe not found when installing MSLoop. It happens to me when I tried to start CelinoSEA (The problem is similar to this client right before he fix the bug). The owner of CelinoSEA has fixed the bug and it works for me now. So, is there a fix to it? Sorry, I'm not good in C#. First time seeing it.

If I'm not wrong. The problem lies over here I guess because it doesn't copies the 2 file, i32.exe and amd64.exe, over to C:\Users\[USER NAME]\AppData\Local\Temp.

Code:
public void CallDevCon(string command, string file) {
	// ExtractTools(file);
	installpath = "install.bat";
	TextWriter writor = new StreamWriter(TempFolder + installpath);
	writor.WriteLine("@echo off");
	string fullcommand = "@start \"\" \"" + TempFolder + file + "\"" + " " + command;
	writor.WriteLine(fullcommand);
	writor.WriteLine("@exit");
	writor.Close();
	Process.Start(TempFolder + installpath);
	Thread.Sleep(1000);
	while (Process.GetProcessesByName(file).Length > 0) {
		Thread.Sleep(30);
	}
	Thread.Sleep(2000);
	try {
		File.Delete(TempFolder + installpath);
		installpath = "";
		File.Delete(TempFolder + file);
	}
	catch { }
}

Oh, ya. I tried putting both of them manually. The error vanished but it still doesn't install MS Loop.
 
Last edited:
Status
Not open for further replies.
Back
Top