Squirrel Script
- function onAnimation(aniId)
- {
- local ani = getAnimationName();
- if (ani == "SOME_ANI")
- {
- print("HIT");
- }
- }
or better
Squirrel Script
- function onAnimation(aniId)
- {
- if (aniId == 68)
- {
- print("HIT");
- }
- }
Please use [code].
onAnimation
|
« Next Oldest | Next Newest »
|
Messages In This Thread |
onAnimation - by imperior5 - 07.10.2016, 09:08
RE: onAnimation - by Bimbol - 07.10.2016, 12:18
RE: onAnimation - by imperior5 - 07.10.2016, 14:13
RE: onAnimation - by HammelGammel - 07.10.2016, 14:35
RE: onAnimation - by Bimbol - 07.10.2016, 15:26
RE: onAnimation - by imperior5 - 07.10.2016, 16:11
RE: onAnimation - by Bimbol - 07.10.2016, 17:02
RE: onAnimation - by imperior5 - 07.10.2016, 17:46
RE: onAnimation - by Son Goku - 07.10.2016, 17:52
|