[ISSUE] FastJobChange won't pop up on Lv15

11/06/2019 13:21 kuibi1234#1
As the title says my FastJobChange won't pop up when i get to the job-change-level (15/60/120/ETC). I added it into FuncApplet to try summon it on a keybind and that works, the functionality of the system works, but wont pop up when its supposed to. (Using Blouflash Clean V15 Files).

Thanks in advance
11/06/2019 22:58 -Valor#2
Check if you have fast job change under CMover::SetExperience.

Code:
#ifdef __FASTJOBCHANGE
#ifdef __CLIENT
	if ((GetLevel() == 120 && GetExpPercent() == 9999) || (GetLevel() == 130 && !IsLegendHero()))
	{
		SAFE_DELETE(g_WndMng.m_pWndJobChangeEx);
		g_WndMng.m_pWndJobChangeEx = new CWndJobChangeEx;
		g_WndMng.m_pWndJobChangeEx->Initialize();
	}
#endif // __CLIENT
#endif//__FASTJOBCHANGE
11/07/2019 11:35 kuibi1234#3
I do but ur code is slightly different.

Code:
		if ((GetLevel() == MAX_LEVEL || GetLevel() == MAX_LEGEND_LEVEL) && GetExpPercent() == 9999)
		{
			SAFE_DELETE(g_WndMng.m_pJobChangeEx);
			g_WndMng.m_pJobChangeEx = new CWndJobChangeEx;
			g_WndMng.m_pJobChangeEx->Initialize();
		}
11/08/2019 13:05 kuibi1234#4
#CloseRequest