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!

Recent content by Solaire

  1. Solaire

    Who's still here?

    Think again if you believe a single-threaded resource hogging scripting language called NodeJS is more scalable than C++.
  2. Solaire

    Java vs C#.

    C# versus Java is a no brainer for me. Irrespective of that, I see that Java is still larger than C#, and C# is actually decreasing (in favor of NodeJS / Python and surprisingly C++). Granted, the numbers are a year old, but Github's Octoverse is usually a good source (You must be registered for...
  3. Solaire

    [Release] Nostalgia BGM Tracklist (LegacyGamers, Euro/Universe and others)

    Here's LegacyGamers GunZ Beta 2_7: You must be registered for see element.. File was last modified September 25th 2008. Comes with Database.rar, GunZ Debug.rar (holding various tools), LegacyGamers.rar (server files) and the original installer. That's all I have on LegacyGamers though, at least...
  4. Solaire

    Is Gunz worth getting back into now?

    Nope, unless you get a decent team together and you can get a decent community to play the game, it's not worth it. Miracles still happen, but I wouldn't bet on it. There's better games and better communities.
  5. Solaire

    The 'Show Off' topic

    Re: The 'Show Off' topic - Part 2 GunZ :laugh:
  6. Solaire

    Ive really missed Gunz...

    I think peace on Earth is easier to accomplish than this...
  7. Solaire

    Ive really missed Gunz...

    Correct me if I'm wrong but I think GunZ was mainly about the social aspect and not so much the gameplay. The community was horrible, but that was not necessarily a bad thing, drama attracts people. I myself found the forums especially fun due to the ego wars (Duel tournament, Team Deathmatch...
  8. Solaire

    So... Gunz is dead?

    No offense, but... really?
  9. Solaire

    C# Question of the Day

    There were issues reported with that WINAPI function using Windows 7. Could you try a different OS or computer?
  10. Solaire

    C# Question of the Day

    Does it work on notepad though? Because it if does, then it might have something to do with your application.
  11. Solaire

    C# Question of the Day

    What OS are you using? I've tested the code on Windows 10 and it worked fine.
  12. Solaire

    C# Question of the Day

    Ah that's different than what I had in mind. I wrote you a sample code, button2 has the implementation you want, button1 has the implementation I mentioned before. If you want button2 to always make use of the process that was started by button1 then you could save the main window handle to a...
  13. Solaire

    C# Question of the Day

    Yeah I noticed but this was my only guess based on his post. Anyway, @OP, this should work: [DllImport ("User32.dll")] static extern int SetForegroundWindow(IntPtr point); Process p = Process.Start("notepad.exe"); p.WaitForInputIdle(); IntPtr h = p.MainWindowHandle; SetForegroundWindow(h)...
  14. Solaire

    GZF GunZ Source

    I honestly think that developers just left because they moved on in life. Got some great education (I mean honestly, if you can reverse engineer GunZ at the age of 16, you're brilliant (for example the LegacyGamers former development team (Sulfin, ThievingSix))) and simply are working on other...
  15. Solaire

    C# Question of the Day

    If p is static, access it through (classname).p. For example, if your class name is "Main" then access the "p" static by "Main.p".
Back
Top