Getting Started: Difference between revisions

From OuroDev
No edit summary
No edit summary
Line 11: Line 11:
* Open up wherever you extracted the i25 Binaries folder and navigate to data\server\db
* Open up wherever you extracted the i25 Binaries folder and navigate to data\server\db
* Open up chat_server.cfg and account_server.cfg  
* Open up chat_server.cfg and account_server.cfg  
** You will see something like this.
; You will see something like this.
*** SqlLogin "DRIVER={SQL Server Native Client 11.0};Server=NS319069\SCORE;Uid=sa;Pwd=FinallyFree!;"
: SqlLogin "DRIVER={SQL Server Native Client 11.0};Server=NS319069\SCORE;Uid=sa;Pwd=FinallyFree!;"
** Change this to  
; Change this to  
*** SqlLogin "DRIVER={SQL Server Native Client 11.0};Server=localhost\SQLEXPRESS;Uid=sa;Pwd=password;"   
: SqlLogin "DRIVER={SQL Server Native Client 11.0};Server=localhost\SQLEXPRESS;Uid=sa;Pwd=password;"   
** You can change the password to whatever you would like. For this example I will be just using password.
* You can change the password to whatever you would like. For this example I will be just using password.
** Now open up server.cfg and change all the ips to localhost (Note : You could also set these to your local ip if you know it.)  
* Now open up server.cfg and change all the ips to localhost (Note : You could also set these to your local ip if you know it.)  
** At the top of the file you will see this.The IP will be set to whatever you previous set it to.
; At the top of the file you will see this.The IP will be set to whatever you previous set it to.
*** DBServer 192.168.0.1 18717
: DBServer 192.168.0.1 18717
*** ShardName Bree
: ShardName Bree
*** AuthServer 192.168.0.1 2104
: AuthServer 192.168.0.1 2104
*** DefaultAccessLevel 0
: DefaultAccessLevel 0
*** NoStats 1
: NoStats 1
*** Change the ShardName to whatever you would like and add 2 slashes infront of AuthServer. And add UseFakeAuth 1 under NoStats 1         
* Change the ShardName to whatever you would like and add 2 slashes infront of AuthServer. And add UseFakeAuth 1 under NoStats 1         
**** It should now look like this
; It should now look like this
**** DBServer localhost 18717
: DBServer localhost 18717
**** ShardName ShardName
: ShardName ShardName
**** //AuthServer 192.168.0.1 2104
: //AuthServer 192.168.0.1 2104
**** DefaultAccessLevel 0
: DefaultAccessLevel 0
**** NoStats 1
: NoStats 1
**** UseFakeAuth 1
: UseFakeAuth 1
* Okay now extract the dbschema.rar found in your i25 folder. We will be using these later.
* Okay now extract the dbschema.rar found in your i25 folder. We will be using these later.
** Open up SQL Server Management Studio (SSMS which you installed in the first step). Your one will look slightly different and hit Connect.
* Open up SQL Server Management Studio (SSMS which you installed in the first step). Your one will look slightly different and hit Connect.


== Common Issues ==
== Common Issues ==
=== Issue One ===
=== Issue One ===

Revision as of 19:48, 25 April 2019

Server Setup

Download Files

Setup Local Server

  • Install SQL Server 2017 Express Edition
  • Choose Basic when installing and when given the option choose to install SSMS.
  • Open up wherever you extracted the i25 Binaries folder and navigate to data\server\db
  • Open up chat_server.cfg and account_server.cfg
You will see something like this.
SqlLogin "DRIVER={SQL Server Native Client 11.0};Server=NS319069\SCORE;Uid=sa;Pwd=FinallyFree!;"
Change this to
SqlLogin "DRIVER={SQL Server Native Client 11.0};Server=localhost\SQLEXPRESS;Uid=sa;Pwd=password;"
  • You can change the password to whatever you would like. For this example I will be just using password.
  • Now open up server.cfg and change all the ips to localhost (Note : You could also set these to your local ip if you know it.)
At the top of the file you will see this.The IP will be set to whatever you previous set it to.
DBServer 192.168.0.1 18717
ShardName Bree
AuthServer 192.168.0.1 2104
DefaultAccessLevel 0
NoStats 1
  • Change the ShardName to whatever you would like and add 2 slashes infront of AuthServer. And add UseFakeAuth 1 under NoStats 1
It should now look like this
DBServer localhost 18717
ShardName ShardName
//AuthServer 192.168.0.1 2104
DefaultAccessLevel 0
NoStats 1
UseFakeAuth 1
  • Okay now extract the dbschema.rar found in your i25 folder. We will be using these later.
  • Open up SQL Server Management Studio (SSMS which you installed in the first step). Your one will look slightly different and hit Connect.

Common Issues

Issue One