[Release] VSROMAX V2 The Future Of VSRO188(New GUI, Item Linking, New Party, More)

05/25/2019 16:49 -Prestige..#241
Quote:
Originally Posted by MeGaMaX. View Post
Free version include all bug fixes but not all features thats when the premium version comes.
release it with a key as you used to do .. or limit the player count to 2 for example .. for testing and experiencing the features ..

your topic is quite huge ... knowing which features it has is quite hard ..
we've got to read tons of updates and there is no list for the features alone !!..
05/25/2019 20:30 speed2019#242
when will release it for free
For All who dont have money to buy ?
05/25/2019 20:47 -Prestige..#243
Quote:
Originally Posted by speed2019 View Post
when will release it for free
For All who dont have money to buy ?
its already free to use .. with 50 players limit ..

i think if you can't afford to buy these files for your server (i don't know the prices),.. you won't already be able to handle the server :bandit:

am just saying :rolleyes:
05/26/2019 04:57 MeGaMaX#244
Quote:
Originally Posted by -Prestige.. View Post
release it with a key as you used to do .. or limit the player count to 2 for example .. for testing and experiencing the features ..

your topic is quite huge ... knowing which features it has is quite hard ..
we've got to read tons of updates and there is no list for the features alone !!..
Most of the features are in the videos dude, also its not that hard to read the patch notes, its better so you know what has been done.

I also cant do it with keys anymore since the thread will get moved to the trade and sell section, so it have to be like that as a free public release with 50 player max no time limit.
05/27/2019 03:52 -Prestige..#245
Quote:
Originally Posted by MeGaMaX. View Post
Most of the features are in the videos dude, also its not that hard to read the patch notes, its better so you know what has been done.

I also cant do it with keys anymore since the thread will get moved to the trade and sell section, so it have to be like that as a free public release with 50 player max no time limit.
straight dumb the free version .. make it a free project with all features but 50 players limit ...

I don't think its quite hard to do such thing... and won't harm your sell ratings or smth ..
infact, it could improve it .. most of the ppl here won't understand exactly what security/bug fixes you have done,.. they would almost only look for the features...


05/27/2019 06:56 MeGaMaX#246
May 27 2019: V4.4

VSROMAX V4.4 does have the same features as the previous version(V4.3) but without old job system, IT SUPPORT SBOT. I dont have time to fix the sbot with the old job system yet.

Client and Server Features:

-Fixed the global chat and the gm notice chat packet bug in the public version that exsited in V4.2--. V4.3 is not affected.

-For the first time, sro_client.exe will not freeze rendering in the background if it got minimized. useful for streaming :)

-Added the real old cape pvp system.

-Added reset stats scroll same as isro one, you will need to patch your client data by db2media or by any tool for the shop* files.

-Added reset all sp of the enabled skills scroll, you will need to patch your client data by db2media or by any tool for the shop* files [the teleport is needed to clear the skills bar from any disabled skills.]

-For the first time added a fully working exploit filter and packets filter. you dont need to edit anything, all knowns exploits are blocked. Only the used packets are allowed and the ones that does have exploits are fixed. If you found any let me know.

Previews:

New Premium Features:
-None

Server Side:
Replace all exes with new one.

Client Side:
-Replace silkroad.exe with the new one (its the original one now).
-Replace sro_client.exe with the new one.
-Patch your textuisystem.txt with the lines inside a file called textuisystem_patch.txt
-Patch your Media.pk2\Config\define.txt
-After applying the db patch update your client *shop* text files to match the database update!

DataBase Side:
If you have used VSROMAX V4.3 you will need to restore a few tables back from your db backup because V4.4 doesnt have the old job system (_ItemQuotation, _RefMagicOpt, _RefMagicOptAssign, _RefScrapOfPackageItem, _RefScrapOfPackageItem)
-Run SRO_VT_SHARD_PATCH_7.sql

SMC:
-Patch your smc with the one in the archive.

Notes:
-VSROMAX v4.4 server/client exes are not compatible with older versions, so dont mix.

-My client showing texts as 0 ? its your textuisystem.txt file. Your file is using different column maybe english or vietname so change the language to match in type.txt

Greetings MeGaMaX.
05/29/2019 05:55 clericakar#247
How can i make dupe bug in VSRO 1.88 pls help
05/29/2019 12:04 nemo08#248
Quote:
Originally Posted by clericakar View Post
How can i make dupe bug in VSRO 1.88 pls help
Its already fixed on new files Like VSRO - TWSRO - CSRO-R - Blackrogue ..
06/03/2019 16:28 nemo08#249
@MeGaMaX. Hi bro , If you mind I have two requests :

1- Add Uniques's Sign when attacking you like ISRO .
2- Add New Fellow pet system if it can be .

Thank you for your efforts and good works ..
06/25/2019 14:45 -Prestige..#250
Hi MeGa..

i have my own filter which is based on Kryl SRC with lots of edits ..
am facing a problem when its used with your files ..

the client always gets stuck on loading page after choosing a char ..
from my own understanding you files sends a custom packet or something that the filter refuses to send from agent to client ..

I tried capturing the packets without using the filter and ended with those packets..

Code:
        void OnReceive_FromServer(IAsyncResult iar)
        {
            lock (m_Lock)
            {
                try
                {
                    int nReceived = m_ModuleSocket.EndReceive(iar);

                    if (nReceived != 0)
                    {
                        this.m_RemoteSecurity.Recv(m_RemoteBuffer, 0, nReceived);

                        List<Packet> RemotePackets = m_RemoteSecurity.TransferIncoming();

                        if (RemotePackets != null)
                        {
                            foreach (Packet _pck in RemotePackets)
                            {
                                ushort opcode = Convert.ToUInt16(_pck.Opcode.ToString().ToLower());
                                Logger.WriteLine(Logger.LogLevel.Error, $"[s][{opcode:X4}][{_pck.GetBytes().Length} bytes]{(_pck.Encrypted ? "[Encrypted]" : "")}{(_pck.Massive ? "[Massive]" : "")}{Environment.NewLine}{Utility.HexDump(_pck.GetBytes())}{Environment.NewLine}");



                                #region New exploit fix
                                if (!FilterMain.Server_whitelisted.Contains(opcode))
                                {
                                    if (!FilterMain.Server_opcodes.Contains(opcode))
                                    {
                                        FilterMain.Server_opcodes.Add(opcode);
                                    }
                                }
                                #endregion

                                #region Handshake
                                // Handshake
                                if (opcode == 0x5000 || opcode == 0x9000)
                                {
                                    Send(true);
                                    continue;
                                }
                                #endregion
                                if (opcode == 0x3809 || opcode == 0x3017 || opcode == 0x3019 || opcode == 0x3018 || opcode == 0x303D || opcode == 0x385F || opcode == 0x3077 || opcode == 0x34E1 || opcode == 0x3153 || opcode == 0x33A6 || opcode == 0x3320 || opcode == 0x3305 )
                                {
                                    Send(true);
                                    continue;
                                }

but still stuck on loading screen after char selection ..
the agent server displays "token timed out"



am not a C# coder by any means .. i just know how to get around things :/

-------------------------------------------------------------
Provide me with packets opcodes if am missing any !
06/25/2019 21:06 MeGaMaX#251
Quote:
Originally Posted by -Prestige.. View Post
Hi MeGa..

i have my own filter which is based on Kryl SRC with lots of edits ..
am facing a problem when its used with your files ..

the client always gets stuck on loading page after choosing a char ..
from my own understanding you files sends a custom packet or something that the filter refuses to send from agent to client ..

I tried capturing the packets without using the filter and ended with those packets..

Code:
        void OnReceive_FromServer(IAsyncResult iar)
        {
            lock (m_Lock)
            {
                try
                {
                    int nReceived = m_ModuleSocket.EndReceive(iar);

                    if (nReceived != 0)
                    {
                        this.m_RemoteSecurity.Recv(m_RemoteBuffer, 0, nReceived);

                        List<Packet> RemotePackets = m_RemoteSecurity.TransferIncoming();

                        if (RemotePackets != null)
                        {
                            foreach (Packet _pck in RemotePackets)
                            {
                                ushort opcode = Convert.ToUInt16(_pck.Opcode.ToString().ToLower());
                                Logger.WriteLine(Logger.LogLevel.Error, $"[s][{opcode:X4}][{_pck.GetBytes().Length} bytes]{(_pck.Encrypted ? "[Encrypted]" : "")}{(_pck.Massive ? "[Massive]" : "")}{Environment.NewLine}{Utility.HexDump(_pck.GetBytes())}{Environment.NewLine}");



                                #region New exploit fix
                                if (!FilterMain.Server_whitelisted.Contains(opcode))
                                {
                                    if (!FilterMain.Server_opcodes.Contains(opcode))
                                    {
                                        FilterMain.Server_opcodes.Add(opcode);
                                    }
                                }
                                #endregion

                                #region Handshake
                                // Handshake
                                if (opcode == 0x5000 || opcode == 0x9000)
                                {
                                    Send(true);
                                    continue;
                                }
                                #endregion
                                if (opcode == 0x3809 || opcode == 0x3017 || opcode == 0x3019 || opcode == 0x3018 || opcode == 0x303D || opcode == 0x385F || opcode == 0x3077 || opcode == 0x34E1 || opcode == 0x3153 || opcode == 0x33A6 || opcode == 0x3320 || opcode == 0x3305 )
                                {
                                    Send(true);
                                    continue;
                                }

but still stuck on loading screen after char selection ..
the agent server displays "token timed out"



am not a C# coder by any means .. i just know how to get around things :/

-------------------------------------------------------------
Provide me with packets opcodes if am missing any !
Allow these opcodes.

Code:
Premium version:
0x758a
0x758b
0x7591
0x7602
0x7504
0x7505
0x7539
0x7596
0x7090
0x7093
0x7310
0x7311
0x7312
0x74f8

Free Version:
0x7596
0x7090
0x7093
0x7310
0x7311
0x7312
0x74f8
For Chat packet you need to add BYTE(0) at the end of the packet, this is only for the premium versions.

For the Item use packet you need to add BYTE(0) at the end of the packet, again this is only for the premium versions.

If you are parsing the 0x3013 packet in your filter, it got changed by BYTE cuz of the pvp cape, i will have to release v4.5 with a fix for that once i have time.
06/26/2019 02:50 -Prestige..#252
Quote:
Originally Posted by MeGaMaX. View Post
Allow these opcodes.

Code:
Premium version:
0x758a
0x758b
0x7591
0x7602
0x7504
0x7505
0x7539
0x7596
0x7090
0x7093
0x7310
0x7311
0x7312
0x74f8

Free Version:
0x7596
0x7090
0x7093
0x7310
0x7311
0x7312
0x74f8
For Chat packet you need to add BYTE(0) at the end of the packet, this is only for the premium versions.

For the Item use packet you need to add BYTE(0) at the end of the packet, again this is only for the premium versions.

If you are parsing the 0x3013 packet in your filter, it got changed by BYTE cuz of the pvp cape, i will have to release v4.5 with a fix for that once i have time.

ty solved
06/30/2019 16:24 Raw..#253
I'd Like to test the premium features, is that possible ?...
07/03/2019 20:42 ntabkpro#254
How can i purchase it? Please give me your facebook or email (My facebook: [Only registered and activated users can see links. Click Here To Register...])
Quote:
Originally Posted by MeGaMaX. View Post
Hello everyone,

#THREAD UPDATE

Due to so many people getting scammed by skype because of some MF made a clone skype with red7moon_1 and same picture people are getting scammed by him, VSROMAX V2 is only being sold through DISCORD ONLY

DISCORD: MeGaMaX#6202

SBot Status: Working (SBot 1.0.38 [Only registered and activated users can see links. Click Here To Register...])

What is VSROMAX V2 ?
Today i would like to interduce to you the future of vsro188. I have been working on these features for almost 1 year to get everything pretty much working like it should be, i didnt have a client base to work on, so i have had to do a matching one, which is ready and can be used now. VSROMAX V2 is a custom vsro188 server files and client that contain fixes and features that no other public or private files does have.

Why choosing VSROMAX V2 ?
-VSROMAX V2 is custom built server files and client from the base of vsro188.
-VSROMAX V2 contain fixes and preformance improvments that no other files does have.
-VSROMAX V2 contain features and fixes that no one files does have you wont find anything like that anywhere.

What are the features of VSROMAX V2 ?
May 27 2019: V4.4
May 12 2019: V4.3 - Old Tri-Job System
April 10 2019: V4.2
March 5 2019: V4.0
February 2 2019: V3.7
January 29 2019: V3.6
January 27 2019: V3.5
December 13 2018: V3.4
November 5 2018: V3.3
October 28 2018: V3.2
October 18 2018: V3.1
October 17 2018: V3.0
October 10 2018: V2.9
October 5th 2018: V2.8
Septemper 27 2018: V2.6
Septemper 13 2018: V2.5
Septemper 6 2018: V2.2
Septemper 4 2018: V2.1
September 3 2018: V2.0

Videos Preview:

[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]


Setup Guide:
-Download the VSROMAX V2.0.7z from the end of the thread.
-Download the latest 7z extractor, google it.
-Extract the archive.
-Put Media files in your media.pk2
-Copy sro_client.exe to your original vsro188 client.
-Copy the server files to your server dir and configure the server.cfg.
-Patch up your SRO_VT_SHARD with Patch.sql USE MSSQL STUDIO ONLY
-Run the client and test.

VSROMAX differences between PUBLIC and PREMIUM version:

Public Version:
-Public version doesnt have premium features
-Public version is players count limited (MAX 50 players).

Premium Version:
-Premium version does have all features fully working (Item linking, unlimited players).
-Premium version supports your hwid dll by your request (You have to own the hwid dll source code).

Up on request features:
-Contact me for me information

Special requests
-You can ask for a custom feature, that will be extra charge.

VSROMAX V2.0 Release Information:
-Files are protected and packed, if you dont trust it just run it under virtual machine.
-Only report bugs releated to the VSROMAX V2.0 server and client, not your db bugs.
-EDXLoader is not working with my sro_client since its packed.
-Premium version is rented monthly. Contact me for more information.
-Other questions will be ignored.


VSROMAX V4.4 Information:
Build: Stable.
Version: 4.4 Public free to use (MAX 50 Players).
Known bugs: None.
SBot Status: Working (SBot 1.0.38 [Only registered and activated users can see links. Click Here To Register...])
MBot Status: Use the same method without the need to use any loader or patch.

VSROMAX V4.4 Download:
[Only registered and activated users can see links. Click Here To Register...]

Contact Information:

Thanks Greetings,
MeGaMaX.
07/04/2019 07:49 MeGaMaX#255
Quote:
Originally Posted by ntabkpro View Post
How can i purchase it? Please give me your facebook or email (My facebook: [Only registered and activated users can see links. Click Here To Register...])
My discord is in my signature