Solved by myself.
Close thread, please.
Solved by myself.
Close thread, please.
Last edited by DeluxeGM; 19-12-17 at 07:42 AM.
Luck (success rate of Jewel of Soul +25%%) Check on text.eng Data/Local/
- - - Updated - - -
Can you share command like /check ? Thanks !
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 Code:#define MAX_COMMAND 32
enum eCommandNumber
{
// here is my commands
COMMAND_CHECK = 32
};
void CommandChecking(LPOBJ lpObj);
In commandmanager.cpp:
PHP Code: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 by DeluxeGM; 04-11-17 at 12:26 PM.
I still need help, guys. :)
Nobody can help?
Bump.
Bump
Bump.
Please, I cant believe that nobody on this forum know about how to code this.
why didnt u ask in MUEMU thread mayybe there people can see your post and help u too.
As for me i've no idea about coding hmm wings dont have exc options (as its default coded) move them to exc category and see if it differs?