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!

[SHARE] FULL GS SOURCE - No More Selling

Joined
Jul 16, 2012
Messages
1,310
Reaction score
116
I have 16 failed including GMCharEdit..
RanExe (ServerSide Files were okay) but GMCharEdit failed and others.
Quiirex - [SHARE] FULL GS SOURCE - No More Selling - RaGEZONE Forums


how did you manage to compile GMCharEdit?
 
Skilled Illusionist
Joined
Mar 17, 2018
Messages
323
Reaction score
30
I know some of you may wonder about this source, this source is a 2017 version which has a minimal unfixed bug, the 2019 version which has a new feature such as battle royale system are already released also. maybe soon it will release in this forum also. Sharing is caring.
 
Newbie Spellweaver
Joined
Jul 25, 2020
Messages
23
Reaction score
4
it give headache to setup this file, but its done.

thank you for this wonderful gift...

I miss RanGS

Quiirex - [SHARE] FULL GS SOURCE - No More Selling - RaGEZONE Forums





problem to your character always restore to level 1, try this one

View attachment RanGameS1.zip
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Jan 1, 2021
Messages
92
Reaction score
13
USE [RanUser]
Go
/****** Object: StoredProcedure [dbo].[gm_login] Script Date: 4/3/2021 12:09:26 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[gm_login]
@userId Char(50),
@userPass Char(50),
@authenticate Char(50),
@nReturn int OUTPUT
AS
DECLARE @nUserNum int,
@nUserType int

SET NOCOUNT ON

SET @nReturn = 0
SET @nUserNum = 0

SELECT @nUserNum = GSUserInfo.UserNum, @nUserType= GSUserInfo.UserType
FROM GSUserInfo
WHERE UserID = @userId AND UserPass = @userPass AND UserAvailable = 1 AND UserType>=20

-- PRINT @nUserNum

-- ID / PWD 체크...
IF @nUserNum = 0
BEGIN
-- ID / PWD 불일치 또는 사용불가능상태
SET @nReturn = 0
END
ELSE
BEGIN
-- ID / PWD 일치
SET @nReturn = @nUserType
-- 접속로그 남기기
INSERT INTO LogGmCmd (UserNum, GmCmd, UserIP)
VALUES (@nUserNum, 'LOGIN GMTOOL UserID:' + @userId, @userId)
END

SET NOCOUNT OFF

RETURN @nReturn
Have Test it,,im still stuck at ADO connection
 
Newbie Spellweaver
Joined
Jun 28, 2020
Messages
19
Reaction score
0
can someone share ToolkitPro1521vc90D.dll thank you.
 
Junior Spellweaver
Joined
Mar 2, 2017
Messages
187
Reaction score
18
What value did your put on ServerInfo and ServerGroup?

here you go :)

SERVERINFO
SGNUM = 0
SVRNUM =0
SVRYPE = 4

SERVERGROUP
SGNUM =0
SGNAME= RANGS
ODBCNAME =RanGameS1
ODBUSERID =sa
odbcpass = password of your databaseo
dbclogs =RanLogS1
ODBCID=sa
odbcpass = password of your database



Hi guys, I want to know what is the version of the source ? 2019 ?
Thanks

they said its 2017 version



I know some of you may wonder about this source, this source is a 2017 version which has a minimal unfixed bug, the 2019 version which has a new feature such as battle royale system are already released also. maybe soon it will release in this forum also. Sharing is caring.

here he said its 2017
 
Back
Top