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

Custom Title Activated
Member
Joined
Jul 16, 2012
Messages
1,310
Reaction score
116
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

I follow your guide
and i make sure that userinfo or gsuserinfo i fill same details just to make sure
but still Loginfailed.

Quiirex - [SHARE] FULL GS SOURCE - No More Selling - RaGEZONE Forums
 
Experienced Elementalist
Joined
Mar 18, 2013
Messages
279
Reaction score
14
Thanks for this reply :)** ALTERNATIVE WAY TO USE ToolkitProEval1930vc90D.dll **1. Go to 2. Download the Codejock ToolkitPro MFC Eval 19.3.0 then install.3. While installing go to your RanThirdParty\XtremeToolKit then rename the ff:Include to Include_oldLib to Lib_oldAfter renaming create a new folder named Include and Lib.4. After the installation go to C:\Program Files (x86)\Codejock Software\MFC\Xtreme ToolkitPro v19.3.0 (30 Day Trial)5. Now Copy the items inside the following folders into RanThirdPartyOpen the Source folder then copy all of the items into RanThirdParty\IncludeOpen the Lib\vc90 then copy the ToolkitProEval1930vc90D.lib into RanThirdParty\Lib then rename the ToolkitProEval1930vc90D.lib into ToolkitPro1502vc90DS.lib6. After following the steps you can compile your tools. 7. You can get the ToolkitProEval1930vc90D.dll in C:\Program Files (x86)\Codejock Software\MFC\Xtreme ToolkitPro v19.3.0 (30 Day Trial)\Bin\vc90PS: This is an alternative way I tried. It's up to you if you will do this :) ThanksPPS: I successfully build GMCharEdit that requires ToolkitProEval1930vc90D.dll
to me is not success :( how to fixed this error :( Error 3 error LNK2001: unresolved external symbol "public: virtual struct _TREEITEM * __thiscall CXTPTreeBase::FindItemExact(char const *,int,int,struct _TREEITEM *)" (?FindItemExact@CXTPTreeBase@@UAEPAU_TREEITEM@@PBDHHPAU2@@Z) SelectTreeCtrl.obj GMCharEdit
 
RaGEZONE VIP
[VIP] Member
Joined
May 3, 2017
Messages
16
Reaction score
3





HOW TO FIX THIS LOGIN ERROR




Sir How to fix this error?

 
Initiate Mage
Joined
Mar 9, 2020
Messages
64
Reaction score
18
still failed. :mellow: 28 30 and 32
both i fill gsuserinfo and userinfo just to make sure but not working...

Maybe this one's the fix, i'm not sure. This can be also found in zipped cfg named GMCFix.txt,

Please give it a try since i'm just starting to fix the ToolkitProEval1930vc90D.dll error when opening the gmcharedit

Code:
USE [RanUser1]
GO
/****** Object:  StoredProcedure [dbo].[gm_login]    Script Date: 11/23/2020 10:30:02 AM ******/
/*** YeXiuPH Fix ***/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER OFF
GO
 
ALTER PROCEDURE [dbo].[gm_login]
                @[I][B][URL="http://forum.ragezone.com/members/1335.html"]user[/URL][/B][/I]Id                               char(50),
                @[I][B][URL="http://forum.ragezone.com/members/1335.html"]user[/URL][/B][/I]Pass          char(50),
                @[I][B][URL="http://forum.ragezone.com/members/70865.html"]authentic[/URL][/B][/I]ate char(50),
                @nReturn           int           OUTPUT
AS
                DECLARE @[I][B][URL="http://forum.ragezone.com/members/77438.html"]Nuser[/URL][/B][/I]Num  int,
                                @[I][B][URL="http://forum.ragezone.com/members/77438.html"]Nuser[/URL][/B][/I]Type     int
 
                SET NOCOUNT ON
 
                SET @nReturn = 0
                SET @[I][B][URL="http://forum.ragezone.com/members/77438.html"]Nuser[/URL][/B][/I]Num = 0
               
                SELECT @[I][B][URL="http://forum.ragezone.com/members/77438.html"]Nuser[/URL][/B][/I]Num = GSUserInfo.UserNum, @[I][B][URL="http://forum.ragezone.com/members/77438.html"]Nuser[/URL][/B][/I]Type= GSUserInfo.UserType
                FROM GSUserInfo
                WHERE UserID = @[I][B][URL="http://forum.ragezone.com/members/1335.html"]user[/URL][/B][/I]Id AND UserPass = @[I][B][URL="http://forum.ragezone.com/members/1335.html"]user[/URL][/B][/I]Pass AND UserAvailable = 1 AND UserType>=20
 
                -- ID / PWD ??...
                IF @[I][B][URL="http://forum.ragezone.com/members/77438.html"]Nuser[/URL][/B][/I]Num = 0
                BEGIN
                                -- ID / PWD ??? ?? ???????
                                SET @nReturn = 0
                END
                ELSE
                BEGIN
                                -- ID / PWD ??
                                SET @nReturn = @[I][B][URL="http://forum.ragezone.com/members/77438.html"]Nuser[/URL][/B][/I]Type
                                -- ???? ???
                                INSERT INTO LogGmCmd (UserNum, GmCmd)
                                VALUES  @[I][B][URL="http://forum.ragezone.com/members/77438.html"]Nuser[/URL][/B][/I]Num, 'LOGIN GMTOOL UserID:' + @[I][B][URL="http://forum.ragezone.com/members/1335.html"]user[/URL][/B][/I]Id)
                END      
 
                SET NOCOUNT OFF         
               
                RETURN @nReturn
 
Back
Top