dantedevil
Well-known member
Hello!
I start to make my first script slam, and i not understand some things.
In this txt what is the function of "ATK_NORMAL8"?
I want to now if the ATK_NORMAL8 means the attacked entity shows PAIN8 FALL8, etc.
Thanks.
I start to make my first script slam, and i not understand some things.
In this txt what is the function of "ATK_NORMAL8"?
void slamstart4() { // Slam Starter for nongrab slams // Use finish or throw after using this void self = getlocalvar("self"); void target = getlocalvar("Target" + self); if(target==NULL()) { target = getentityproperty(self, "opponent"); setlocalvar("Target" + self, target); } if(target!=NULL()) { damageentity(target, self, 0, 1, openborconstant("ATK_NORMAL8")); // Slam Starter } }
I want to now if the ATK_NORMAL8 means the attacked entity shows PAIN8 FALL8, etc.
Thanks.