RO2 Client Source Code <3

wowwww aeromesi!! godd work!!

i download the all clients of ro2 gotw for test, you whats client use? please share for testing the problems

is possible you shared your start.bat?

 
Last edited by a moderator:
RO2 Client source codes

https://mega.co.nz/#!V9VTgR7R!b2XpJnTVvs_Ps_OkuX1eDElPf7N85aXih4StuIJ8Omk

and the Saga server emu

https://mega.co.nz/#!1w0nwCDL!MpQTbSfrAhcTBnyy4pi1XTw29BgTUcadD7LoSe3ANhk

let me know if you find some goodies
default_smile.png
Pretty sure the Saga server emu is from https://github.com/Willyham/SagaRO2

When "Git"ing the SagaRO2, I tried editing the MONO bat file so I could compile it, but its having problems locating PKG_CONFIG_FILE variable (Changed the variable to C:Program Files (x86)Mono-3.2.3libpkgconfig, where it is located) and reading pkt-sharp.pc. I have pkt-sharp-2.0 which is a newer version of mono, tried manually editing the bat script but to no prevail it still asks "perhaps you should add the directory containing gtk-sharp.pc" when I have gtk-sharp-2.0.pc... Anyone shed any light on a fix for this? Or how to compile SagaRO2 with one of Microsofts IDE's?

Also here you go with a crappy emulator run, got someone in-game!

ALEJANDRO.png

 
Last edited by a moderator:
Pretty sure the Saga server emu is from https://github.com/Willyham/SagaRO2

When "Git"ing the SagaRO2, I tried editing the MONO bat file so I could compile it, but its having problems locating PKG_CONFIG_FILE variable (Changed the variable to C:Program Files (x86)Mono-3.2.3libpkgconfig, where it is located) and reading pkt-sharp.pc. I have pkt-sharp-2.0 which is a newer version of mono, tried manually editing the bat script but to no prevail it still asks "perhaps you should add the directory containing gtk-sharp.pc" when I have gtk-sharp-2.0.pc... Anyone shed any light on a fix for this? Or how to compile SagaRO2 with one of Microsofts IDE's?

Also here you go with a crappy emulator run, got someone in-game!
This client needs to compile? How compile? Have an tutorial?

 
Hey Hercules. I'm working on getting this project back up and alive at: https://www.facebook.com/groups/712193165518077/

We were able to get a version of Ragnarok 2 gate of the world up and running, but there's no mob DB, quest DB, just monsters that don't attack, and monsters that attack randomly, job changing worked, a lot of stuff worked, but a lot didn't, so we decided to work on the release from https://github.com/Willyham/SagaRO2. Compiled, set it up, and ran into some problems. Whenever trying to login, we got disconnected, with a packet error, the client sends an unknown packet to the server, 0x7715

We figured out that 7751 have 2 byte + 4 byte = 6 byte. We ran the test with this code:

Code:
using System;using System.Collections.Generic;using System.Text; using SagaLib; namespace SagaLogin.Packets.Client{    public class UnknownPacket : Packet    {        public UnknownPacket() //Packet 0x7715        {            this.size = 6;            this.offset = 4;        }//What this packet do? [DanielArt]    }}
Now the server receives the packet, the console says nothing about the unknown packet, the game doesn't close out or anything, it just gets stuck at "Connecting to server"


Now if anyone wants to help us in this project, personally message me, we need experienced C# Programmers, the only way to get around this is either:
1) Add the packet
2) Find a download for kRO2 v101 (EuphRO2 used this, if I still had EuphRO2 I wouldn't be posting right now).
 
Back
Top