SMMode question

11/03/2014 02:44 kamoteshake#1
HI there,

Got a quick question. How do you remove a specific SMMode(e.i. SM_BANK15, SM_SHOUT001, SM_ATTACK_UP1) ? I already tried the
Code:
AddSMMode( i, 0 );
// i being the SMMode I want to remove.
But it doesnt seem to work. I also tried the.
Code:
m_dwSMTime[i] = 0;
// Again i being the SMMode I want to remove.
and also it didnt work. anyone got any ideas? Thanks.
11/04/2014 08:00 Avalion#2
((CUser*)this)->AddSMMode( SM_MAX_HP50, 0 );

Try using the ((CUser*)this->?
11/04/2014 14:58 kamoteshake#3
yeah.. that what I was missing. thanks. I was about to post the solution. thanks. :)