I have 16 failed including GMCharEdit..
RanExe (ServerSide Files were okay) but GMCharEdit failed and others.
https://i.ibb.co/HP4ZLhq/Screenshot-118.png
how did you manage to compile GMCharEdit?
Printable View
I have 16 failed including GMCharEdit..
RanExe (ServerSide Files were okay) but GMCharEdit failed and others.
https://i.ibb.co/HP4ZLhq/Screenshot-118.png
how did you manage to compile GMCharEdit?
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.
GMC Research 2 Days.
Lifetime - no expire 30 d.
https://www.youtube.com/watch?v=7d8I2T_vbDs
it give headache to setup this file, but its done.
thank you for this wonderful gift...
I miss RanGS
http://forum.ragezone.com/attachment...d=169221&stc=1
problem to your character always restore to level 1, try this one
Attachment 169222
Has anyone encounter this error? This error occurred when opening the GMCharEdit.
http://forum.ragezone.com/attachment...3&d=1614829356
How did you resolved it?
Have Test it,,im still stuck at ADO connectionQuote:
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