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!

My v19 source + download

Newbie Spellweaver
Joined
Apr 28, 2011
Messages
38
Reaction score
8
I have problems starting the account server

Screenshot_1 - My v19 source + download - RaGEZONE Forums Screenshot_2 - My v19 source + download - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
i <3 C++
Joined
Jun 4, 2005
Messages
383
Reaction score
100
View my accountserver.ini
adeilson12 - My v19 source + download - RaGEZONE Forums


and i run accountserver.exe in normal and admin xd
this is mine

Code:
TESTAddTail( -1, 1, "Server", "127.0.0.1", 0, 1, 0 );
    AddTail( 1, 1, "Channel", "127.0.0.1", 0, 1, 1100 );


DSN_NAME_LOGIN			"login"
DB_ADMIN_ID_LOGIN		""


DSN_NAME_LOG			"log01"
DB_ADMIN_ID_LOG			""


MSG_VER		"131313131311313131313131"


SKIP_TRACKING
//NOT_RELOADPRO
//NOLOG


// 6
DB_PWD_LOGIN	"sssssssssssssssssssssssssssssssssssss"
DB_PWD_LOG	"sssssssssssssssssssssssssssssssssssss"
 
Newbie Spellweaver
Joined
Jun 27, 2011
Messages
70
Reaction score
9
this is mine

Code:
TESTAddTail( -1, 1, "Server", "127.0.0.1", 0, 1, 0 );
    AddTail( 1, 1, "Channel", "127.0.0.1", 0, 1, 1100 );


DSN_NAME_LOGIN			"login"
DB_ADMIN_ID_LOGIN		""


DSN_NAME_LOG			"log01"
DB_ADMIN_ID_LOG			""


MSG_VER		"131313131311313131313131"


SKIP_TRACKING
//NOT_RELOADPRO
//NOLOG


// 6
DB_PWD_LOGIN	"sssssssssssssssssssssssssssssssssssss"
DB_PWD_LOG	"sssssssssssssssssssssssssssssssssssss"
i tried it and it dont work,maybe you can upload your ready files & source?
 
Newbie Spellweaver
Joined
Apr 28, 2011
Messages
38
Reaction score
8
this is mine

Code:
TESTAddTail( -1, 1, "Server", "127.0.0.1", 0, 1, 0 );
    AddTail( 1, 1, "Channel", "127.0.0.1", 0, 1, 1100 );


DSN_NAME_LOGIN			"login"
DB_ADMIN_ID_LOGIN		""


DSN_NAME_LOG			"log01"
DB_ADMIN_ID_LOG			""


MSG_VER		"131313131311313131313131"


SKIP_TRACKING
//NOT_RELOADPRO
//NOLOG


// 6
DB_PWD_LOGIN	"sssssssssssssssssssssssssssssssssssss"
DB_PWD_LOG	"sssssssssssssssssssssssssssssssssssss"

Thank for your help
The problem is with pc, i tested same programs in another pc and don't have errors xd


Sry for my bad english
 
Newbie Spellweaver
Joined
Jun 27, 2011
Messages
70
Reaction score
9
I saw the upgrade baruna isnt working properly
This should fix it
WndManager.cpp
Code:
After
   if( pItemProp->IsUltimate() ) 
        g_toolTip.SetUltimateToolTip(pItemBase);  
Add
   if( pItemProp->IsBaruna() ) 
        g_toolTip.SetBarunaToolTip(pItemBase);  
In WndManager.cpp 
Code:
"CWndMgr::PutToolTipParts"                g_toolTip.SetBarunaToolTip( pPartsItemBase ); 
Change to 
                g_toolTipSub1.SetBarunaToolTip( pPartsItemBase );  
case 2:
                g_toolTip.SetBarunaToolTip( pPartsItemBase ); 
Change to 
                g_toolTipSub2.SetBarunaToolTip( pPartsItemBase );  
WndManager.cpp 
Code:
"CWndMgr::PutPiercingOpt" (For Piercing over 1) 
      } 
        pEdit->AddString( strTemp, dwItemColor[g_Option.m_nToolTipText].dwName4 ); 
    } 
    else 
#endif // __BARUNA_PIERCING 

Change to 

            pEdit->AddString( strTemp, dwItemColor[g_Option.m_nToolTipText].dwName4 ); 
        } 
    } 
    else 
#endif // __BARUNA_PIERCING  
Im not going to give support
 
Last edited:
Newbie Spellweaver
Joined
Jan 20, 2009
Messages
82
Reaction score
0
who can post your v19 Program\CoreServer.ini
Because my CoreServer.ini map up to v15 map only

thx a lot


sorry for my bad eng
 
Newbie Spellweaver
Joined
Dec 21, 2012
Messages
22
Reaction score
1
How to fix client crash when create new character and open guild warehouse?

One more again, when we create new guild then server restarted, logging in again, and we no guild, bu if /cg that guild i created before still exist.

Thanks before :)
 
Newbie Spellweaver
Joined
Jun 27, 2011
Messages
70
Reaction score
9
who can post your v19 Program\CoreServer.ini
Because my CoreServer.ini map up to v15 map only

thx a lot


sorry for my bad eng

You are having issues to enter dungeons too?
Try this coreserver.ini and tell me plx
 
Back
Top