16-bit Fighter
Active member
I wonder why the first code works but not the last ones. I'd like to have a right line code with a simple condition with OR.
Code:
if(vAniID == openborconstant("ANI_RUNATTACK")){
Code:
if(vAniID == openborconstant("ANI_RUNATTACK") || openborconstant ("ANI_FREESPECIAL7")){
Code:
if(vAniID == openborconstant(("ANI_RUNATTACK") || ("ANI_FREESPECIAL7"))){
Code:
if(vAniID == openborconstant("ANI_RUNATTACK") || ("ANI_FREESPECIAL7")){