Difference between revisions of "Poseidon"

From OpenKore Wiki
Jump to navigation Jump to search
Line 27: Line 27:
  
 
# Extract <code>clientinfo.xml</code> from you ragnarok client <code>data.grf</code> file (use GRF Editor [https://www.mediafire.com/file/aflylbhblrzpz0h/GRF_Editor_v1.8.4.1.zip/file])
 
# Extract <code>clientinfo.xml</code> from you ragnarok client <code>data.grf</code> file (use GRF Editor [https://www.mediafire.com/file/aflylbhblrzpz0h/GRF_Editor_v1.8.4.1.zip/file])
## [[File:grfeditorextract.png|800px]]
+
<br>[[File:grfeditorextract.png|800px]]
 
# rename it to <code>poseidon.xml</code> and place in <code>ragnarok/data</code> directory.
 
# rename it to <code>poseidon.xml</code> and place in <code>ragnarok/data</code> directory.
 
## [[File:renameposeidonxml.png|800px]]
 
## [[File:renameposeidonxml.png|800px]]
Line 56: Line 56:
 
== OpenKore ==
 
== OpenKore ==
  
# Make sure your server connection settings have <code>gameGuard <number></code> (check <code>tables/servers.txt</code> and <code>control/config.txt</code>).
+
# Make sure your server connection settings have "[[gameGuard|gameGuard 1]]" (check <code>tables/servers.txt</code>).
 
## [[File:serversgameguard.png]]
 
## [[File:serversgameguard.png]]
 
# Go to <code>control/poseidon.txt</code> and change <code>server_type=Default</code> to your server. (list available at <code>src/Poseidon/servertypes.txt</code>)
 
# Go to <code>control/poseidon.txt</code> and change <code>server_type=Default</code> to your server. (list available at <code>src/Poseidon/servertypes.txt</code>)

Revision as of 22:51, 10 October 2021

Poseidon is a counter-measure for nProtect GameGuard (HackShield).

Original game client (with HackShield) connected to Poseidon server provides data for OpenKore connected to real game server.
The RO server sends a packet to the client, and the client must response with an appropriate packet.
Servers like cRO, kRO, twRO and vRO use GameGuard.

Overview

Poseidon works like this
1. Poseidon sets up a fake RO server (let us call it PoseidonRO).
2. Poseidon sets up another server socket for communication with OpenKore.
3. OpenKore connects to Poseidon.
4. RO client connects to PoseidonRO.
5. Real RO server sends GameGuard query to OpenKore.
6. OpenKore sends GameGuard query to Poseidon.
7. Poseidon sends GameGuard query to RO client.
8. RO client sends a reply.
9. Poseidon sends reply to OpenKore.
10. OpenKore sends reply to real RO server.

Fluxogram

Poseidon workflow.jpg


Configuration

Ragnarok Client (Ragexe)

  1. Extract clientinfo.xml from you ragnarok client data.grf file (use GRF Editor [1])


grfeditorextract.png

  1. rename it to poseidon.xml and place in ragnarok/data directory.
    1. renameposeidonxml.png
  2. Open poseidon.xml using any text editor (Recommended Notepad++[2]) and change address to your Poseidon server address (127.0.0.1 or localhost for same computer). Change port to 6900. (These magic numbers are constants from src/Poseidon/poseidon.pl source.) Change 'display' to anything you want to distinguish between Poseidon connection and your original.
  3. If your clientinfo.xml has the 'domain' tag, change it to ip:port (ex: 127.0.0.1:6900)
    1. poseidonxmledit.png

Example of edited clientinfo:

<?xml version="1.0" encoding="euc-kr" ?>
<clientinfo>
	<servicetype>russia</servicetype>
	<servertype>primary</servertype>
	<extendedslot></extendedslot>

	<connection>
		<display>Poseidon</display>
		<desc>None</desc>
		<domain>127.0.0.1:6900</domain>
		<address>127.0.0.1</address>
		<port>6900</port>
		<version>1</version>
		<langtype>4</langtype>
		<registrationweb>http://rofan.ru/</registrationweb>
	</connection>
</clientinfo>

OpenKore

  1. Make sure your server connection settings have "gameGuard 1" (check tables/servers.txt).
    1. serversgameguard.png
  2. Go to control/poseidon.txt and change server_type=Default to your server. (list available at src/Poseidon/servertypes.txt)
    1. poseidonservertype.png

Running

  1. Start src/Poseidon/poseidon.pl or start-poseidon.exe, wait for message 'Poseidon initialized'.
    1. initializedposeidon.png
  2. Open cmd, go to ragnarok folder and start the ragexe, use the following arguments to make ragexe load the custom poseidon.xml:
    1. Regular client (twRO, cRO): Ragexe.exe 1rag1 /account:poseidon.xml
    2. jRO client: Ragexe.exe 1rag1 -w -u:12345RO -p:be407f3a32e47d2b5cef6acb8f14724146a720cd /account:poseidon.xml
    3. kRO client: Ragexe.exe 1rag1 -t:DummyToken DummyUser G Ragnarok /account:poseidon.xml
    4. kRO Zero client: Ragexe.exe 1rag1 -t:DummyToken DummyUser G RagnarokZero /account:poseidon.xml
    5. vRO client: Ragexe.exe 1rag1 User=DummyUser Token=DummyToken BToken=DummyBToken /account:poseidon.xml
    6. startragexe.png
  3. Select Poseidon service (if prompted), input any login and password, select any character.
    1. selectcharacter.png
  4. You should appear in Novice Training Center and be able to see and talk with NPC (you will not be able to walk or do anything other than talking with NPC).
    1. mapserver.jpg
  5. Start OpenKore (start.exe, wxstart.exe or openkore.pl).

Advanced configuration

Poseidon server

Constants in poseidon.pl:

RAGNAROK_SERVER_HOST, RAGNAROK_SERVER_PORT
Host/port where ragnarok client will connect (Ragexe)
QUERY_SERVER_HOST, QUERY_SERVER_PORT
Host/port where poseidon clients will connect (OpenKore)

Command-line arguments

--file=<string>
Tells poseidon where to find poseidon.txt
For instance: ./poseidon.pl --file=bar/foo/myfile.txt
--ragnarokserver_ip=<address>
Starts the Ragnarok Server (where the Ragnarok client will connect) at given address
--ragnarokserver_port=<port>
Starts the Ragnarok Server (where the Ragnarok client will connect) at given port
--queryserver_ip=<address>
Starts the Query Server (where openkore client will connect) at given address
--queryserver_port=<address>
Starts the Query Server (where openkore client will connect) at given port
--server_type=<string>
Selects a server type (see src/Poseidon/servertypes.txt for available servertypes)
For instance: ./poseidon.pl --server_type=bRO_2016-11-08a
--debug=<boolean>
Interesting for developers, poseidon will now output some extra info


  • Notes
    • You can use any combination of those
    • If you provide ragnarokserver_ip, ragnarokserver_port, queryserver_ip, queryserver_port and server_type, no file will be loaded.
    • If neither file nor all the necessary command line arguments are given, poseidon will default to the default behavior of trying to load ../../control/poseidon.txt, ./control/poseidon.txt, or ./poseidon.txt -- in that order.
    • Command line arguments have priority over the configuration file. For instance, if you use --ragnarokserver_ip=<address>, the Ragnarok Server will be hosted at that address, not the one in the configuration file.
    • This feature is only available after PR #1273 (15 Oct 2017)

Poseidon client (OpenKore)

Options in config.txt:

poseidonServer, poseidonPort
Host/port of Poseidon server (QUERY_SERVER connection is Poseidon)

Notes

  • If game client protection detects OpenKore binaries, run Poseidon without binaries (install Perl) or on another (maybe virtual) machine.