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++/JavaScript] xsuite proxy + admin sources

Junior Spellweaver
Joined
Jun 28, 2008
Messages
191
Reaction score
220
Originally it started with this thing: https://forum.ragezone.com/threads/release-x-proxy-with-web-ui-packets-from-web.1205349/

But the version I'm providing you now uses C++ and LUA for proxy engine instead of nodejs

Download:
Was originally made for v274 files, but should work on any as long as you define the packets right.

- Uses REDIS for messaging

Requirements:
- you need to prebuild and add this to third-party folder to compile
- Using this boost version, might work with later versions too
cmake + Visual studio or whatever else you use for c++.

You can get redis for windows here:
Or use the official linux version

This is my most recent work in progress proxy / administration tool, it's not fully complete but it is a solid starting base for those with "hands".

Features LUA scripting for packets as following:
Code:
package.path = package.path .. ";./?.lua"

require "scripts.buffer.Compiler"

function Controller(opcode, encrypted, massive, data, direction)
    local write = Compiler:new()

    write:text("0");

    local packet = {
        opcode = 0x6323,
        encrypted = false,
        massive = false,
        data = write:getBuffer(),
        direction = "server"
    }

    return { packet }
end

Screenshot_2 - [C++/JavaScript] xsuite proxy + admin sources - RaGEZONE Forums

Screenshot_3 - [C++/JavaScript] xsuite proxy + admin sources - RaGEZONE Forums

Screenshot_4 - [C++/JavaScript] xsuite proxy + admin sources - RaGEZONE Forums

proxy.exe source code is under `src` folder.

Screenshot_5 - [C++/JavaScript] xsuite proxy + admin sources - RaGEZONE Forums

For better understanding what this is see the videos uploaded to this url:
 

Attachments

You must be registered for see attachments list
Last edited:
Back
Top