-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update PackageScript, clean up checking hitgroup logic
- Loading branch information
1 parent
2a15c13
commit 1d14e44
Showing
4 changed files
with
146 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
// SHORT DESCRIPTIONS | ||
// | ||
// Attribute: Values: Description: | ||
// ---------------------------------------------------------------------------- | ||
// index number The hitgroup index. | ||
// enabled 1/0 If enabled. The knockback will apply multiplier from knockback config. | ||
// knockback decimal The knockback multiplier for this hitgroup. | ||
|
||
"Hitgroups" | ||
{ | ||
"Generic" | ||
{ | ||
// enabled | ||
"enabled" "1" | ||
|
||
// General | ||
"index" "0" | ||
|
||
// Knockback | ||
"knockback" "1.0" | ||
} | ||
|
||
"Head" | ||
{ | ||
// enabled | ||
"enabled" "1" | ||
|
||
// General | ||
"index" "1" | ||
|
||
// Knockback | ||
"knockback" "1.0" | ||
} | ||
|
||
"Chest" | ||
{ | ||
// enabled | ||
"enabled" "1" | ||
|
||
// General | ||
"index" "2" | ||
|
||
// Knockback | ||
"knockback" "1.0" | ||
} | ||
|
||
"Stomach" | ||
{ | ||
// enabled | ||
"enabled" "1" | ||
|
||
// General | ||
"index" "3" | ||
|
||
// Knockback | ||
"knockback" "1.0" | ||
} | ||
|
||
"LeftArm" | ||
{ | ||
// enabled | ||
"enabled" "1" | ||
|
||
// General | ||
"index" "4" | ||
|
||
// Knockback | ||
"knockback" "1.0" | ||
} | ||
|
||
"RightArm" | ||
{ | ||
// enabled | ||
"enabled" "1" | ||
|
||
// General | ||
"index" "5" | ||
|
||
// Knockback | ||
"knockback" "1.0" | ||
} | ||
|
||
"LeftLeg" | ||
{ | ||
// enabled | ||
"enabled" "1" | ||
|
||
// General | ||
"index" "6" | ||
|
||
// Knockback | ||
"knockback" "1.0" | ||
} | ||
|
||
"RightLeg" | ||
{ | ||
// enabled | ||
"enabled" "1" | ||
|
||
// General | ||
"index" "7" | ||
|
||
// Knockback | ||
"knockback" "1.0" | ||
} | ||
|
||
"Neck" | ||
{ | ||
// enabled | ||
"enabled" "1" | ||
|
||
// General | ||
"index" "8" | ||
|
||
// Knockback | ||
"knockback" "1.0" | ||
} | ||
|
||
"Gear" | ||
{ | ||
// enabled | ||
"enabled" "1" | ||
|
||
// General | ||
"index" "10" | ||
|
||
// Knockback | ||
"knockback" "1.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters