shishimai Posted November 19, 2024 Posted November 19, 2024 hello, i've been coding this character for about 6 months already, and i'm trying to aim for some cvs2 accuracy hitsparks and hitsounds (using playsnd, not hitsound on hitdef) are fine on hit, but on trade there's no hitspark or hitsound. i do understand the explod i have is true on movehit, and trades don't count as movehit. could anyone help fix this issue? [State hitspark] type = Explod trigger1 = movehit = 1 anim = 7030+var(10) ;var(10) is for angle related things ID = 7000 pos = -2,-64 postype = P2 ;P2, Front, Back, Left, Right facing = 1 vfacing = 1 bindtime = 1 vel = 0,0 accel = 0,0 random = 0,0 removetime = -2 supermovetime = 0 pausemovetime = 0 scale = 1,1 sprpriority = 9999 ontop = 0 shadow = 0,0,0 ownpal = 1 removeongethit = 0 ignorehitpause = 1 persistent = 0
0 PlasmoidThunder Posted November 21, 2024 Posted November 21, 2024 I believe so. Depends on whether movehit resets immediately when you get hit, or at the very least before -2 is processed on the following frame. Project LG said: God knows you shit out characters like a friggin' gumball machine.
0 PlasmoidThunder Posted November 20, 2024 Posted November 20, 2024 On trade, the character is no longer in the attack state, so none of that code will execute. Project LG said: God knows you shit out characters like a friggin' gumball machine.
0 shishimai Posted November 20, 2024 Author Posted November 20, 2024 yeah, would i have to move the explods to statedef -2 or something?
0 shishimai Posted November 21, 2024 Author Posted November 21, 2024 makes sense, i assume before movehit resets, the explod will already be out but thank you for the assistance!
0 Kanfong Posted December 6, 2024 Posted December 6, 2024 Can try these triggers in [Statedef -3]? triggerall = NumExplod(7000) = 0 triggerall = NumEnemy trigger1 = EnemyNear, MoveType = H trigger1 = EnemyNear, StateNo = 5000 ; Stand get-hit (shaking) trigger1 = EnemyNear, Time = 1 or triggerall = NumExplod(7000) = 0 triggerall = NumTarget(200) ; standing light slash? [Statedef 200] trigger1 = Target(200), MoveType = H trigger1 = Target(200), StateNo = 5000 ; Stand get-hit (shaking) trigger1 = Target(200), Time = 1
Question
shishimai
hello, i've been coding this character for about 6 months already, and i'm trying to aim for some cvs2 accuracy
hitsparks and hitsounds (using playsnd, not hitsound on hitdef) are fine on hit, but on trade there's no hitspark or hitsound.
i do understand the explod i have is true on movehit, and trades don't count as movehit. could anyone help fix this issue?
5 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now