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!

[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 :D
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
Back
Top