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!

Version Manager

Skilled Illusionist
Joined
Dec 16, 2012
Messages
341
Reaction score
126

Hi Guys, :laugh:

I just want to share the Version Manager that I'm currently working on.
As you can see here
http://forum.ragezone.com/f748/autopatchman-launcher-1150186/

The things I added here (changes):
Changed the table names inside to default ClientDir & ClientFile
Translated the Korean Texts to English
Changed the VersionManager.cfg to ini
Patch Column in Database
Some code to fix the filelist.bin keeping it from being empty

:thumbup1: **This will work on any source out there so don't worry** :thumbup1:

NOTE: The delete does not work here so you have to truncate the two tables every time you make a patch but the good news is.. It works..

RanPatch Database Tables
PHP:
--RanPatch Database--
use RanPatch;
GO
use RanPatch
GO
create table ClientFile(
	cd_idx varchar(50),
	cf_name varchar(50),
	cf_version varchar(50),
	cf_date datetime,
	cf_upload varchar(50),
	cf_desc varchar(50),
	cf_idx varchar(50),
	Path varchar(50),
);
--------------
create table ClientDir(
	cd_idx int not null primary key identity(1,1),
	cf_idx varchar(50),
	Path varchar(255)
);
--Death Gun--
--RanPatch Database--

VersionManager.ini
PHP:
odbc_name	RanPatch
odbc_user_name	sa
odbc_password	1234		
ftp_ip			
ftp_port	
ftp_user_name	
ftp_password	
target_path	Patch

You can go here for the tutorial of IsamaII

Credits:
IsamaII - for the tutorial
Min Communications Inc.
Me - Modifying and Sharing

Thank you and Happy Developing,
Death Gun

Don't forget to Press the Like Button and Add some Reputation :laugh:

to Download
 
Joined
Dec 22, 2010
Messages
96
Reaction score
15
i already try this before but all my problem is when i try to patch the level.rcc from the other player they got a error like Error Transmitting File........Level.rcc but the other is ok when they try to patch the level.rcc
 
Skilled Illusionist
Joined
Dec 16, 2012
Messages
341
Reaction score
126
i already try this before but all my problem is when i try to patch the level.rcc from the other player they got a error like Error Transmitting File........Level.rcc but the other is ok when they try to patch the level.rcc

Hi Diculous,
Maybe the other players have some problem on their connection, that's the only thing I see regarding on that problem or they're modifying the files, because you said that the other players can get the patch with no problem.
Thanks,
Death Gun



Death Gun

so update works only on ftp?

thanks

Hi Saige,
It works even if it's not ftp. I've tried using the link of my control panel and it works.
Thanks..
 
Joined
Dec 22, 2010
Messages
96
Reaction score
15
too match report on me maybe 200+ report they got the problem i don't why, and i didn't already got the answer. maybe try to use it and patch the level.rcc to the other player not 1 but more than 20 person try to patch it.
 
Skilled Illusionist
Joined
Dec 16, 2012
Messages
341
Reaction score
126
too match report on me maybe 200+ report they got the problem i don't why, and i didn't already got the answer. maybe try to use it and patch the level.rcc to the other player not 1 but more than 20 person try to patch it.

Ok, noted I will try that.. I hope it doesn't get the problem. Thank you for the info.
 
Back
Top