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 MadScripter

  1. MadScripter

    [Tut] How to (partially) read SCB Files in C#

    zlib is used indeed. You'll need to use P/Invoke too (GetSystemInfo, CreateFileA, CreateFileMappingA, MapViewOfFile, UnmapViewOfFile, CloseHandle, GetAdaptersInfo, SHCreateDirectoryExA, PathCompactPathExA) There's a C++ source out there that extracts these .bin files, if you want to convert it...
  2. MadScripter

    [HELP]How do I extract the original files from infestation

    Here you go: You must be registered for see element.
  3. MadScripter

    [Release] Settings Changer

    Language: C#. Software: SharpDevelop. For the design it's a theme. It's called "Flat UI". Here's a link to the source code of it: You must be registered for see element. To use it, compile it as a VB.NET dll and import it into your C# project (that is if you're making a C# project).
  4. MadScripter

    [Release] Infestation Emulator Skins

    The M4's skin is dope :)
  5. MadScripter

    [Development] [PHP-API / MYSQL DATABASE] WarZ / Infestation - BACK AGAIN

    Re: [PHP-API / MYSQL DATABASE] WarZ / Infestation - Rewritten What you said doesn't make sense whatsoever, you might want to re-phrase that. Also, instead of dissing people's work, why don't you point out the flaws and give them tips? @You must be registered for see element., you might want...
  6. MadScripter

    How or Where did you learn C#?

    You're welcome! =]. Have fun learning!
  7. MadScripter

    How or Where did you learn C#?

    I learned the basics from: You must be registered for see element. And from there it was just searching on Google and Stackoverflow. Also looking at other's code and understanding how it works :) And of course, a lot of practice.
  8. MadScripter

    Help please "Failed to connect"

    I had the same issue and I resolved it by doing what I mentioned in my previous post. Try to clean your solution and rebuild everything. Check your API. My issue was that https was not binded on my IIS website and I also had to open the port both on the firewall and on the router.
  9. MadScripter

    Help please "Failed to connect"

    Open "WarZ.sln", then search for "127.0.0.1" in the following files: "Vars.h", "Main.cpp", "WOBackendAPI.cpp". replace "127.0.0.1" with your server's IP, also make sure the paths to your api are valid. If you have done the above and the problem still persists, check your port 443.
  10. MadScripter

    Help please "Failed to connect"

    Open "RSUpdate.sln" and edit the file "LauncherConfig.cpp", and scroll down to the comment section "Manual Config", and then edit the values of all the variables to match your server's IP and links to your api files. Note: You don't need to provide the "launcher.cfg" file with your launcher...
  11. MadScripter

    Help please "Failed to connect"

    This should be due to HTTPS. Follow this tutorial and it should work: You must be registered for see element. Make sure your 443 port is open in your firewall.
  12. MadScripter

    Login Failed\Your account is frozen. Help

    Go to Navicat -> Connect -> warz -> dbo -> tables -> Accounts: Look for your e-mail address or CustomerID, and edit the column "AccountStatus", change it to "100" and save. Do the same for the table "UsersData".
  13. MadScripter

    Supervisorserver game finished - Help

    Your API is not setup correctly. Try following a tutorial.
  14. MadScripter

    Warz Sql Setup Help

    Yes you need SQL Server. MySQL won't work.
  15. MadScripter

    Dev account

    Go in Navicat -> Connect -> WarZ -> dbo -> tables -> Accounts: Edit the column "isDeveloper" of the user that you want to make DEV, change it from 0 to 1 and then save. Do the same for the table "UsersData" (for this one you'll need to know the CustomerID of the user). P.S: This has been asked...
Back
Top