Advertisement
leafbarrett

random hit voice clip

Mar 10th, 2020
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. if (state_cat == SC_HITSTUN)
  2. {
  3. if (orig_knock > 17) { sound_play(sound_get("vo_ouch4")); }
  4. else if (orig_knock > 9)
  5. {
  6. if (random_func(0, 4, true) == 3) { sound_play(sound_get("vo_ouch1")); }
  7. else if (random_func(0, 4, true) == 2) { sound_play(sound_get("vo_ouch2")); }
  8. }
  9. else if (orig_knock > 6 && random_func(0, 3, true) == 1) { sound_play(sound_get("vo_ouch3")); }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement