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!

[Guide]Using Neoncube to Patch/Launch your Client

Junior Spellweaver
Joined
Mar 21, 2007
Messages
139
Reaction score
0
NeonCube was originally crated for eAthena but I found out you can use it to launch the game.

::Guide to Set-up NeonCube Patcher for O2Jam::

1. Download NeonCube - On the Attachments.
2. Extract it to wherever you like.
3. Open neoncube.ini in the neoncube folder.
4. Edit it(there is a guide there but some people are just lazy to see it):
Code:
[server]

server_name = (The Server's name)
notice_url = (URL to your news page)
patch_site = (IP of the patch's site)
patch_port = 80  (port to connect, 80 is default)
patch_list = /patchlist.txt (your patch list destination. ALWAYS START WITH "/")
patch_folder = /patch    (Folder of where your patches are, "/"=current folder.)

executable = connect.bat (Your launcher file)
registration_link = (Link to your registration page)

skin = skin_default (Desired skin)

grf_file = Adata.grf            (Don't Touch This)
Backup_GRF = adata.grf     (Don't Touch This)
startup_option = 1(See TOP of .ini file)

[general]

;debug_mode = 0
archive_passphrase = IHRO(archive passphrase, e.g. for RAR passworded files)

5. Now create a file called patchlist.txt or whatever you want(Make sure the filename is same as in "patch_list" in neoncube.ini. THIS IS YOUR PATCH LIST.
Since we don't use GRF files, we leave it blank.


Code:
//this will be repacked with your grf_file
1234    GRF   patch.gpf (delete this)

// this one will be extracted to your data folder
1235    FLD   data_folder.gpf (delete this)

//You can delete files inside a FLD or a GRF

11     GRF    data\I_will_delete_you.txt* (delete this)
12    FLD     data\I_will_eat_you.txt* (delete this)

//please take note: FLD = patch will go to data folder, GRF = will be packed with your grf_file

6. Upload your files to your server. Place "patch_list.txt" in the place you specified in the "neoncube.ini"(this order: patch_site, patch_port, patch_folder, patch_list. Example: .

The contents in the Client folder goes to your O2Jam client folder. Please TEST them before distributing them to your players.

::O2JAM SKIN FOR NEONCUBE NEEDED::
 

Attachments

You must be registered for see attachments list
Last edited:
Newbie Spellweaver
Joined
Aug 20, 2004
Messages
16
Reaction score
0
Code:
//this will be repacked with your grf_file
1234    GRF   patch.gpf (delete this)

// this one will be extracted to your data folder
1235    FLD   data_folder.gpf (delete this)

//You can delete files inside a FLD or a GRF

11     GRF    data\I_will_delete_you.txt* (delete this)
12    FLD     data\I_will_eat_you.txt* (delete this)

//please take note: FLD = patch will go to data folder, GRF = will be packed with your grf_file
Can you kindly explain more in details on this, i still dont get it... Thanks.
 
Junior Spellweaver
Joined
Mar 21, 2007
Messages
139
Reaction score
0
Code:
//this will be repacked with your grf_file
1234 GRF patch.gpf (delete this)

// this one will be extracted to your data folder
1235 FLD data_folder.gpf (delete this)

//You can delete files inside a FLD or a GRF

11 GRF data\I_will_delete_you.txt* (delete this)
12 FLD data\I_will_eat_you.txt* (delete this)

//please take note: FLD = patch will go to data folder, GRF = will be packed with your grf_file
Can you kindly explain more in details on this, i still dont get it... Thanks.

Thats the contents of "patchlist.txt".
This program was originally built for Ragnarok Online Private Servers, they use GRF files which is not used by O2Jam.

Just delete the things I marked.
I left them there just because some people might need them.
In case of maintainence you can put these but not the files so the client can't find it and disables game access(You need to change "startup_option" in neoncube.ini).
 
Newbie Spellweaver
Joined
Jun 16, 2006
Messages
30
Reaction score
0
could you give me an example?

because i got error when patching the client
 
Back
Top