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!

Scarlet Blade Server files + Client + DB

Newbie Spellweaver
Joined
Jun 20, 2022
Messages
92
Reaction score
17
I can help for your server :) do you download it ?



Its for local use only :)
 
Newbie Spellweaver
Joined
Jun 27, 2022
Messages
20
Reaction score
0
not yet

this is working server?



Now :
- I try with Vendeta client, I create bat file with param, and client connect to login server, but without auth code, login server disconnect me.

how to direct fixed exe client to our server?
 
Newbie Spellweaver
Joined
Jun 20, 2022
Messages
92
Reaction score
17
Yes its this link for server,

i created bat file for connect client to server login,

I use client -> SB (June 14, US).exe that i rename to SB2.exe get this into vendetta repository

My bat file exemple :

SB2.exe /connectip:127.0.0.1 /connectport:10001 /clientauthcode: (here code auth from api) /clientauthid: (here client id from api)



For now no issue, i start 2 time do few quests, and all save



I see my toons in table : dbo.tbl.Character
and items in table dbo.tbl.Inventory



I will test game more in weekend for see if any issue, now it seems OK
 
Joined
Jun 27, 2010
Messages
940
Reaction score
1,193
Yes its this link for server,

i created bat file for connect client to server login,

I use client -> SB (June 14, US).exe that i rename to SB2.exe get this into vendetta repository

My bat file exemple :

SB2.exe /connectip:127.0.0.1 /connectport:10001 /clientauthcode: (here code auth from api) /clientauthid: (here client id from api)

....

Nice i'm going to test this server again, can you provide the download link for the client you are using?
 
Newbie Spellweaver
Joined
Jun 20, 2022
Messages
92
Reaction score
17
I think for local use, we dont need Billing server, i will try without



with bat file, everytime you play, you must change authcode :( so i will prepare launcher for easy start, but with bat file you can play while waiting :)



I analyze database, ok i am not gameDevelopper, but i don't see any NPC, item names. Maybe it's for performance. for limited call to database. Its small database for me, why not :)
But i don't know where i can modify NPC, i will work on it
 
Newbie Spellweaver
Joined
Jun 20, 2022
Messages
92
Reaction score
17
@ashlay
I dont have error with cache server, now i test game, and all items are OK i up to lvl 2 :)
What error do you have ?



I play like 1 hour, with few quests, and wait with nothing like afk, and server and game are ok
now lvl 3



I stop game after lvl 4 and restart :) and all items, char lvl are ok, skills too, good!!!



I will work for auto launcher, because get manually code auth, copy paste too bat file ....



@xlw00tlx
For setup, I use SqlServer 2019 for BDD (hard to setup)
WampServer for api (very easy to setup)
 
Newbie Spellweaver
Joined
Apr 4, 2019
Messages
19
Reaction score
1
This is the fastest development i have seen on this game in the years its been hanging here congratz and well done people after you make things work maybe gives us noobs a simple version/Guide hehe
 
Newbie Spellweaver
Joined
Jun 20, 2022
Messages
92
Reaction score
17
@ProjectZ07 I will try create guide, you will try guide :) and say error you get

Now i return to game, for news, i didnot stop server, and all is ok, now lvl 5 , i loot few things, and all are in bag



Lvl6 i stop play in Enocia, but server run, for now good experience, 0 crash game, 0 crash server :)



My computer tabletop : 8Go Ram only, I5 4300M 2.6Ghz

can play client + server + api + BDD sqlserver + wampserver :)
 
Joined
Jun 27, 2010
Messages
940
Reaction score
1,193
@Neg035
i got this error on LoginServer and wrong password on client.
´
Code:
 INFO[0x00001a18][2022-07-28 15:02:09,540][CHttpLogInMgr::LoginTokenGetResult]ProcAeriaLoginResult : {"error":"invalid_client","error_description":"The client credentials are invalid"}
so o have commented this part of the api code to be able to login


And the client crash when i try to buy or sell anything on a npc.
 
Newbie Spellweaver
Joined
Jun 20, 2022
Messages
92
Reaction score
17
@ashlay for your login server what do you have in config.xml ?



@ashlay for your login server what do you have in config.xml ?
 
Joined
Jun 27, 2010
Messages
940
Reaction score
1,193
@ashlay for your login server what do you have in config.xml ?



@ashlay for your login server what do you have in config.xml ?

Code:
<?xml version="1.0" encoding="ansi"?>
<LoginServerConfig>
	<!-- 시스템 설정값 AutoStart(0:대기,1:자동시작) -->
	<System 
		AutoRun			= 1
	></System>
	<!-- 네트웍 설정값 -->
	<Network 
		IP			= "10.10.110.80"	
		Port			= 10001
		IPForServer		= "10.10.110.80"
		PortForServer	= 20001
	></Network>
	<!-- 데이터베이스 설정값 -->
	<Database 
		IP			= "localhost" 
		Name			= "QueensAccount" 
		ID			= "queens_db_login" 
		Pwd			= "queens_db_pass"
	></Database>
	<!-- 계정 데이터베이스 설정값 -->
	<AccountDB
		IP			= "localhost"
		Name			= "QueensAccount"
		ID			= "queens_db_login" 
		Pwd			= "queens_db_pass"
	></AccountDB>
	<!-- 접속 게임로그 서버 설정값 -->
	<GameLogServer 
		IP			= "10.10.110.80"
		Port			= 20007
		PortForServer		= 20007
	></GameLogServer>
	<!-- 접속 PC방 빌링 서버 설정값 -->
	<PCBangServer 
		Enable			= 0
		IP			= "10.10.110.80"
		IP_			= "10.10.110.80"
		Port			= 7520
	></PCBangServer>
	<WebLogin
		WebLogin 		= 1
		Host 			= "10.10.110.80"
		Protocol		= "http"
		SecretKey		= "ac502f28735083da9fbf401c00f86c40"
	></WebLogin>
	<!-- 클라이언트 버전 설정값 -->
	<Client 
		Version			= 31
	></Client>
</LoginServerConfig>
 
Newbie Spellweaver
Joined
Jun 20, 2022
Messages
92
Reaction score
17
SecretKey value need change to value in client_secret from database table oauth_client (mysql)

For sell or buy, yes there is problem, i try analyse this problem. Maybe do you have other old client SB.exe ?
 
Newbie Spellweaver
Joined
Jun 20, 2022
Messages
92
Reaction score
17
@ashlay i read all logs, there are many error with missing proc in database, Maybe its not this problem
I try with GM character and the same issue



@ashlay you know where we can get this client?

I try repair our client
 
Back
Top