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!

Dragonica website

Moderator
Staff member
Moderator
Joined
Feb 22, 2008
Messages
2,404
Reaction score
723
This not made by me, and I dont know who did it.

screenshot:
SheenBR - Dragonica website - RaGEZONE Forums

 
Last edited:
Joined
Oct 16, 2008
Messages
2,639
Reaction score
945
this website is anywhere in the serverfiles, dunno which version but i had them too, the design is really cool just need to be translated and add a logo/banner ;D

ill start to make a design and release the PSD, for those who want to code it for themselves
 
Moderator
Staff member
Moderator
Joined
Feb 22, 2008
Messages
2,404
Reaction score
723
it shouldnt be that hard to translate it, just check where the links redirect you to :eek:tt1:

After I finish my research in the tb/tb2.bin files I'll see what I can do about'em.
(they seem to hold the texts and configurations that must sync with server tho)
 
Moderator
Staff member
Moderator
Joined
Feb 22, 2008
Messages
2,404
Reaction score
723
In the first line of register.asp there is an asp include code.

Code:
<!--#include file="common/inc/xconn.asp"-->

Replace that page with this one:

Code:
<%
	SqlDatabaseName = "xnews" 
	SqlDatabaseName2 = "DR2_Member"
	SqlDatabaseName3 = "DR2_user" 
	SqlUsername = "sa" 
	SqlPassword = "!@#123Qwe" 
	SqlLocalName = "127.0.0.1" 
	SqlLocalName2 = "127.0.0.1" 
	
	if not isobject(conn) then 
	set conn = Server.CreateObject("ADODB.CONNECTION")
	ConnStr1 = "Provider = Sqloledb; User ID = " & SqlUsername & "; Password = " & SqlPassword & "; Initial Catalog = " & SqlDatabaseName & "; Data Source = " & SqlLocalName & ";"
	'conn.open "PROVIDER=SQLOLEDB;DATA SOURCE=127.0.0.1;uid=sa;pwd=!@#123Qwe;database=xnews"
	conn.Open connstr1
	end if
	
	if not isobject(conn2) then 
	Set conn2=Server.CreateObject("ADODB.Connection")
	ConnStr2 = "Provider = Sqloledb; User ID = " & SqlUsername & "; Password = " & SqlPassword & "; Initial Catalog = " & SqlDatabaseName2 & "; Data Source = " & SqlLocalName2 & ";"
	conn2.Open connstr2
	'conn2.open "PROVIDER=SQLOLEDB;DATA SOURCE=127.0.0.1;uid=sa;pwd=!@#123Qwe;database=DR2_Member"
	end if	
	
	if not isobject(conn3) then 
	Set conn3=Server.CreateObject("ADODB.Connection")
	ConnStr3 = "Provider = Sqloledb; User ID = " & SqlUsername & "; Password = " & SqlPassword & "; Initial Catalog = " & SqlDatabaseName3 & "; Data Source = " & SqlLocalName2 & ";"
	conn3.Open connstr3
	'conn3.open "PROVIDER=SQLOLEDB;DATA SOURCE=127.0.0.1;uid=sa;pwd=!@#123Qwe;database=DR2_user"
	end if	
	
	
	
	if not isobject(rs) then 
	set rs = Server.CreateObject("ADODB.recordset")
	end if

%>
<!--#include file="functions.asp"-->
Then all you have to do is change these lines according to your sql configuration:

Code:
	SqlDatabaseName = "xnews" 
	SqlDatabaseName2 = "DR2_Member"
	SqlDatabaseName3 = "DR2_user" 
	SqlUsername = "sa" 
	SqlPassword = "!@#123Qwe" 
	SqlLocalName = "127.0.0.1" 
	SqlLocalName2 = "127.0.0.1"

would be nice if someone who speaks chinese can translate the page to english, because mostly, google translate fails, and fails badly :lol:
 
Junior Spellweaver
Joined
Apr 9, 2006
Messages
198
Reaction score
3
In the first line of register.asp there is an asp include code.

.....

Code:
    SqlDatabaseName = "xnews" 
    SqlDatabaseName2 = "DR2_Member"
    SqlDatabaseName3 = "DR2_user" 
    SqlUsername = "sa" 
    SqlPassword = "!@#123Qwe" 
    SqlLocalName = "127.0.0.1" 
    SqlLocalName2 = "127.0.0.1"
would be nice if someone who speaks chinese can translate the page to english, because mostly, google translate fails, and fails badly :lol:


if u looking good translation .. this is support chines to English :thumbup:
 
Newbie Spellweaver
Joined
Jun 18, 2011
Messages
49
Reaction score
4
how to restore the database on this site?
 
Newbie Spellweaver
Joined
Jun 18, 2011
Messages
49
Reaction score
4

all that I found on this is just a demo program for restoration in the format .mdf

Those who restore, you can put the base in the format .Bak please?
 
Banned
Banned
Joined
Oct 20, 2006
Messages
3,245
Reaction score
1,652
all that I found on this is just a demo program for restoration in the format .mdf

Those who restore, you can put the base in the format .Bak please?

Try looking past the 2nd search result...
 
Newbie Spellweaver
Joined
Jun 18, 2011
Messages
49
Reaction score
4
Try looking past the 2nd search result...

Found thanks), and the results depend on the native language and I have it is not English
 
Experienced Elementalist
Joined
Apr 2, 2011
Messages
249
Reaction score
3
any news on this? like a template to connect to sql
 
Back
Top