Tio Akima
New member
- Messages
- 349
- Points
- 0
- Age
- 36
- Discord
- TioAkima#0636
- Github
- Tio Akima
- Emulator
I'm trying to put a condition on a custom skill ... But I'm having problems.
the condition is an if () that identifies the class of player .... and depending on the class, the skill performs a particular function.
I tried this:
if(pc->jobchange == 15 || 4016 || 4077){...break;}
then I tried this:
And it did not work.
The intention is to verify the player's class that is using the skill.
help-me? 0/
the condition is an if () that identifies the class of player .... and depending on the class, the skill performs a particular function.
I tried this:
if(pc->jobchange == 15 || 4016 || 4077){...break;}
then I tried this:
Code:
if(sd->status.class_ == JOB_MONK || JOB_CHAMPION || JOB_SURA ){...break;}
The intention is to verify the player's class that is using the skill.
help-me? 0/