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!

How to find gm password /get_item [newbie]

Newbie Spellweaver
Joined
Mar 22, 2021
Messages
14
Reaction score
0
where can i find the password of /get_item command ?
im using juver source , thanks
 
Newbie Spellweaver
Joined
Sep 21, 2014
Messages
33
Reaction score
0
Still cant find the gm password. May I know the keyword?

I've already tried:

dxincommand.cpp

else if ( strCOMMAND== "/item" || strCOMMAND== "/rsilent" ) //add itemcmd
{
if ( dwUSERLVL < USER_GM3 ) return E_FAIL;
if ( strArray.GetSize() != 5 && strArray.GetSize() != 4 )
{ //CInnerInterface::GetInstance().PrintConsoleText ( "Invalid Command! :p" ); return true; }

if( strArray.GetSize() == 5 )
{
CString strPARAM_01 = strArray.GetAt(1); //mid
CString strPARAM_02 = strArray.GetAt(2); //sid
CString strPARAM_03 = strArray.GetAt(3); //pass
CString strPARAM_04 = strArray.GetAt(4); //amount

GLCharactorReq2.cppGLCharInvenMsg2.cpp
 
Last edited:
Upvote 0
Newbie Spellweaver
Joined
Aug 17, 2017
Messages
49
Reaction score
1
Still cant find the gm password. May I know the keyword?

I've already tried:

dxincommand.cpp

else if ( strCOMMAND== "/item" || strCOMMAND== "/rsilent" ) //add itemcmd
{
if ( dwUSERLVL < USER_GM3 ) return E_FAIL;
if ( strArray.GetSize() != 5 && strArray.GetSize() != 4 )
{ //CInnerInterface::GetInstance().PrintConsoleText ( "Invalid Command! :p" ); return true; }

if( strArray.GetSize() == 5 )
{
CString strPARAM_01 = strArray.GetAt(1); //mid
CString strPARAM_02 = strArray.GetAt(2); //sid
CString strPARAM_03 = strArray.GetAt(3); //pass
CString strPARAM_04 = strArray.GetAt(4); //amount

GLCharactorReq2.cppGLCharInvenMsg2.cpp


Find wpass on dxincommand.cpp and glchainvenmsg.cpp
 
Upvote 0
Junior Spellweaver
Joined
Feb 17, 2022
Messages
177
Reaction score
8
Still cant find the gm password. May I know the keyword?

I've already tried:

dxincommand.cpp

else if ( strCOMMAND== "/item" || strCOMMAND== "/rsilent" ) //add itemcmd
{
if ( dwUSERLVL < USER_GM3 ) return E_FAIL;
if ( strArray.GetSize() != 5 && strArray.GetSize() != 4 )
{ //CInnerInterface::GetInstance().PrintConsoleText ( "Invalid Command! :p" ); return true; }

if( strArray.GetSize() == 5 )
{
CString strPARAM_01 = strArray.GetAt(1); //mid
CString strPARAM_02 = strArray.GetAt(2); //sid
CString strPARAM_03 = strArray.GetAt(3); //pass
CString strPARAM_04 = strArray.GetAt(4); //amount

GLCharactorReq2.cppGLCharInvenMsg2.cpp

check in GLCharactorReq2.cpp and find ReqGMItem u will see the wpass
 
Upvote 0
Newbie Spellweaver
Joined
Sep 21, 2014
Messages
33
Reaction score
0
darz your so amazing finally got it. if ( wPass != 1 && wPass != 2 )
 
Upvote 0
Back
Top