Exp Stop Awakening

05/08/2018 23:11 nicksss03#1
Hi! I wanted to ask, if there is an released of Exp Stop awakes in here.. I cannot find anything. There is one code in source that shown like this :

#ifdef __EXP_STOP
ON_TEXTCMDFUNC( TextCmd_ExpUpStop, "ExpUpStop", "es", "°æÇèÄ¡±ÝÁö", "°æ±Ý", TCM_SERVER, AUTH_ADMINISTRATOR, "" )
#endif

But this is not working... I tried it a lot of times. Do something like /es 1 1 3 or any kind of experiments. If this is working can anyone tell me how to apply it in the game? Thanks in the advance. Love y'all!:handsdown:
05/09/2018 00:26 Ecrypter#2
illumine fly have that
05/09/2018 20:15 nicksss03#3
Quote:
Originally Posted by Ecrypter View Post
illumine fly have that
Hi! I am already using illumine fly files. And checked it... it is not working for no exp..
05/09/2018 21:07 alfredico#4
Post the command TextCmd_ExpUpStop
05/10/2018 04:45 nicksss03#5
Quote:
Originally Posted by alfredico View Post
Post the command TextCmd_ExpUpStop
#ifdef __EXP_STOP
BOOL TextCmd_ExpUpStop( CScanner& scanner )
{
#ifdef __WORLDSERVER
CUser* pUser = (CUser*)scanner.dwValue;
if( pUser->m_dwMode & MODE_EXPUP_STOP )
pUser->m_dwMode &= (~MODE_EXPUP_STOP);
else
pUser->m_dwMode |= MODE_EXPUP_STOP;

g_UserMng.AddModifyMode( pUser );
#endif // __WORLDSERVER

return TRUE;
}

That's the one you talking about?
05/10/2018 08:52 Rhea03#6
Quote:
Originally Posted by nicksss03 View Post
#ifdef __EXP_STOP
BOOL TextCmd_ExpUpStop( CScanner& scanner )
{
#ifdef __WORLDSERVER
CUser* pUser = (CUser*)scanner.dwValue;
if( pUser->m_dwMode & MODE_EXPUP_STOP )
pUser->m_dwMode &= (~MODE_EXPUP_STOP);
else
pUser->m_dwMode |= MODE_EXPUP_STOP;

g_UserMng.AddModifyMode( pUser );
#endif // __WORLDSERVER

return TRUE;
}

That's the one you talking about?


#ifdef __EXP_STOP
ON_TEXTCMDFUNC( TextCmd_ExpUpStop, "ExpUpStop", "es", "°æÇèÄ¡±ÝÁö", "°æ±Ý", TCM_SERVER, AUTH_ADMINISTRATOR, "" )
#endif

Quote:
Originally Posted by Ecrypter View Post
illumine fly have that

#ifdef __EXP_STOP
ON_TEXTCMDFUNC( TextCmd_ExpUpStop, "ExpUpStop", "es", "°æÇèÄ¡±ÝÁö", "°æ±Ý", TCM_SERVER, AUTH_ADMINISTRATOR, "" )
#endif
05/10/2018 10:10 alfredico#7
The command has no params and is limited to administrators only. You may be missing snippets on experience functions (solo, party, leecher...).

CMover::SubExperience()
CMover::AddExperienceKillMember()
05/11/2018 04:30 nicksss03#8
Quote:
Originally Posted by alfredico View Post
The command has no params and is limited to administrators only. You may be missing snippets on experience functions (solo, party, leecher...).

CMover::SubExperience()
CMover::AddExperienceKillMember()
Do you have any idea where to start of? I cannot find any clues... No errors and such.
05/11/2018 10:56 alfredico#9
Code:
if( IsMode( MODE_EXPUP_STOP ) )
		fExpValue = 0;