How to install:
1. Download all .rar files placed in the first post.
2. Extract them all
3. Copy all Folders from the Resource folder except the LuaFunc one to your Client folder.
4. Extract the "Effect" folder to your Client folder; The path should be like [...]/Client/Effect
5. Create a ResClient folder outside your Resource folder and run merge2.exe
6. Copy all .res files in your ResClient to your Client folder.
7. Set up the source (maybe change paths of your binaries) and compile the source.
8. Copy the server binaries and paste them into your Program folder
9. Move your Neuz to your Client Folder
10. Create a shorcut and add the sunkist parameter
11. Set up the database and create the RANKING-Server:
Code:
/****** Object: LinkedServer [RANKING] Script Date: 12/25/2011 00:13:43 ******/
EXEC master.dbo.sp_addlinkedserver @server = N'RANKING', @srvproduct=N'RANKING', @provider=N'SQLNCLI', @datasrc=N'PC-NAME\SQLEXPRESS', @catalog=N'RANKING_DBF'
/* For security reasons the linked server remote logins password is changed with ######## */
EXEC master.dbo.sp_addlinkedsrvlogin @rmtsrvname=N'RANKING',@useself=N'True',@locallogin=NULL,@rmtuser=NULL,@rmtpassword=NULL
GO
EXEC master.dbo.sp_serveroption @server=N'RANKING', @optname=N'collation compatible', @optvalue=N'false'
GO
EXEC master.dbo.sp_serveroption @server=N'RANKING', @optname=N'data access', @optvalue=N'true'
GO
EXEC master.dbo.sp_serveroption @server=N'RANKING', @optname=N'dist', @optvalue=N'false'
GO
EXEC master.dbo.sp_serveroption @server=N'RANKING', @optname=N'pub', @optvalue=N'false'
GO
EXEC master.dbo.sp_serveroption @server=N'RANKING', @optname=N'rpc', @optvalue=N'true'
GO
EXEC master.dbo.sp_serveroption @server=N'RANKING', @optname=N'rpc out', @optvalue=N'true'
GO
EXEC master.dbo.sp_serveroption @server=N'RANKING', @optname=N'sub', @optvalue=N'false'
GO
EXEC master.dbo.sp_serveroption @server=N'RANKING', @optname=N'connect timeout', @optvalue=N'0'
GO
EXEC master.dbo.sp_serveroption @server=N'RANKING', @optname=N'collation name', @optvalue=null
GO
EXEC master.dbo.sp_serveroption @server=N'RANKING', @optname=N'lazy schema validation', @optvalue=N'false'
GO
EXEC master.dbo.sp_serveroption @server=N'RANKING', @optname=N'query timeout', @optvalue=N'0'
GO
EXEC master.dbo.sp_serveroption @server=N'RANKING', @optname=N'use remote collation', @optvalue=N'true'
GO
EXEC master.dbo.sp_serveroption @server=N'RANKING', @optname=N'remote proc transaction promotion', @optvalue=N'true'
GO
Don't forget to replace PC-NAME\SQLEXPRESS with your instance's name!
12. There ya go ;p Everything should be working.
BTW: I also have the black mini-map i will check what is going wrong there since there aren't even errors... Good luck!