• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

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