• 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 pagefor updates, or 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.)

[Help] New Excellent options for items doesnt work.

Newbie Spellweaver
Joined
Jul 6, 2016
Messages
24
Reaction score
3
Solved by myself.
Close thread, please.
 
Last edited:
Master Summoner
Joined
Feb 17, 2017
Messages
580
Reaction score
72
Luck (success rate of Jewel of Soul +25%%) Check on text.eng Data/Local/



Can you share command like /check ? Thanks !
 
Upvote 0
Newbie Spellweaver
Joined
Jul 6, 2016
Messages
24
Reaction score
3
I see there this options, but that gives me nothing
How to show others (mine Critical Damage Rate, Excellent damage rate and etc) options like default excellent - still the question.

about command thats easy to code by yourself.

in Commandmanager.h:


PHP:
#define MAX_COMMAND 32
enum eCommandNumber
{    
// here is my commands    
COMMAND_CHECK = 32
};


void CommandChecking(LPOBJ lpObj);


In commandmanager.cpp:


PHP:
void CCommandManager::Init() // OK
{   // Here my code and I added this line:    
this->Add("/check",COMMAND_CHECK);
// 

void CCommandManager::CommandChecking(LPOBJ lpObj) // OK
{    if(gGameMaster.CheckGameMasterLevel(lpObj,gServerInfo.m_CommandHideGameMasterLevel) == 0)    
{        
gNotice.GCNoticeSend(lpObj->Index,1,0,0,0,0,0,"You are not a GameMaster");        
return;    
}    
gNotice.GCNoticeSend(lpObj->Index,1,0,0,0,0,0,"You have %d %% Critical Damage Rate",lpObj->CriticalDamageRate);
}
 
Last edited:
Upvote 0
Newbie Spellweaver
Joined
Jul 6, 2016
Messages
24
Reaction score
3
Bump.
Please, I cant believe that nobody on this forum know about how to code this.
 
Upvote 0