Trying to word this is going to be tricky, but i'll give it a go.
The issue i'm having is that I'm trying to make collision for my custom baddie.
Basically, if the baddie reconizes the player.ani is an "ATTACK" gani, it will trigger the event. The ISSUE is that i have more than one ani for attack. (for different weapons)
For example, I have servername_sword_atkblade, servername_sword_atkstaff, etc
How do i make the baddie reconize all GANIs starting with "servername_sword_"?
PHP Code:
if (player.ani = "servername_sword_???")
{
//blablabla
Other Note: i DO NOT want to use function onWas.Hit because i am not using default movement system so it doesn't even work.