| Modifying PC Dead Rising 2 |
|---|
|
Opening files to edit (Gibbed's)
All game items (items.txt)
|
sgraph.txt, located in the data/datafile.big file. sgraph.txt is focused on effects, animation events, and flags. sgraph.txt is huge, 7.902 MB, 9632 pages in Microsoft Word.
sgraph.txt controls:
- Controls all of the game's animations. This includes:
- Chuck's idle animations.
- Chuck's animation when trying on clothes
- Chuck's animation when saving game, including urinating into urinal.
- Unarmed attacks:
- Damage zombies do
- Damage Chuck's skills do.
There are 595 cGenericAnimState sections in the file. Each section appears to control some part of the game animation.
For a full list see: #List of sections
Sgraph's index[]
The first section lists how many times each type of control is listed in the entire file. For example, cHealthEvent 51, cHealthEvent is in the file 51 times.
NOTE: If you add an event then it has to equal the amount on the top of the file or it will crash[1]
# cNPCAIAnimationState 292 # cRandomChooser 769 # cChooserEntryFloat 1941 # cGenericTransitioner 1103 # cGenericBlender 1651 # cAnimRef 4728 # cAudioAnimEvent 18822 # cImmediateTransitioner 2045 # cGenericAnimState 594 # cCategoryChooser 877 # cChooserEntryInt 4385 # cFECustomActionEvent 28 # cAnimEvent 7332 # cPikePosWarper 1 # cGainedSkillEvent 2 # cTransitionHint 283 # cWheelBarrowPushingTimeWarper 10 # cRollableWarper 6 # cRollableTimeWarper 6 # cEventBasedTransitioner 566 # cAttackEvent 820 # cCanTurnEvent 536 # cCustomSullivanEvent 16 # cHoldFrameTimeWarper 2 # cDropPropEvent 12 # cCollisionInfoChangeEvent 40 # cSlamGroundEvent 9 # cCheckForBreakableEvent 8 # cHandEvent 103 # cAnimGroup 826 # cAutoAimEvent 432 # cComboAcceptEvent 405 # cLinearChooser 71 # cReleaseEvent 62 # cHealthEvent 51 # cHashAudioAnimEvent 592 # cPropPushActorWarper 1 # cSwitchPropBoneEvent 36 # cControllerVibrateEvent 56 # cCameraEvent 23 # cRunAccelTimeWarper 41 # cFacialEvent 185 # cMicroGameEvent 41 # cAnimationPartnerWarper 50 # cAnimationPartnerTimeWarper 50 # cCustomDeviantEvent 4 # cWeaponActionBlender 19 # cAimGunPoseWarper 28 # cAnimationPartnerEvent 6 # cZombiePushBackEvent 94 # cBossTurnPositionWarper 24 # cVehicleEvent 67 # cPropAnimEvent 73 # cVehicleWarper 21 # cCustomMascotEvent 53 # cFireShotEvent 27 # cRidingMicrogameWarper 1 # cNecromancerState 2 # cNecromancerTimeWarper 2 # cNecromancerTransitioner 2 # cBodyEffectsEvent 129 # cBikePoseWarper 2 # cThrowIdleTimeWarper 4 # cBossLocomotionEvent 17 # cPropWristWarper 18 # cTurnWarper 9 # cLeanPoseWarper 7 # cHeadTrackingPoseWarper 7 # cStrafeBlenderPositionWarper 18 # cHeadTrackEvent 284 # cBoolTransitioner 3 # cTogglePropEvent 10 # cZombieSyncAnimEvent 92 # cBossRunSpeedTimeWarper 13 # cFlyingEvent 49 # cJumpEvent 51 # cRideableWarper 10 # cSprayEvent 52 # cPosWarper 12 # cScaleSurvivorEvent 2 # cCarryEvent 4 # cStrafeDirWarper 8 # cBikeLeanChooserWarper 4 # cSurvivorHeadTrackingPoseWarper 14 # cDesyncTimeWarper 4 # cWeaponImpactPoseWarper 2 # cZombieGrappleEvent 50 # cSwapShapeEvent 40 # cRemoteControlAnimState 2 # cRemoteControlAnimTransitioner 2 # cNullState 1 # cTrackingTurnWarper 4 # cBossThrowEvent 16 # cSwingWarper 2 # cPushableAttachWarper 1 # cAttachEvent 43 # cBossJumpPositionWarper 2 # cFirePitThrowMoneyEvent 1 # cAnimationTimeWarper 3 # cGunStrafeUBMaskPoseWarper 2 # cIKEnableEvent 14 # cPhoneEvent 7 # cStartChargeEvent 3 # cRideableEvent 1 # cBossLocomotionBlender 4 # cCameraShakeEvent 2 # cAttachPropToZombieEvent 1 # cSpineAimWarper 2 # cSpawnSecondaryPropEvent 4 # cTurnOnWeaponEvent 7 # cSpawnDynamicPropEvent 10 # cWeaponEffectsEvent 7 # cExplodeZombieLimbsEvent 27 # cComboStationEvent 35 # cTurnWarperSyncEvent 6 # cSaveLoadEvent 19 # cGenericFootTransitioner 4 # cUpperbodyBlendWarper 1 # cRideableChooserWarper 2 # cHatTrickButtonPressEvent 4 # cWheelBarrowDumpingPositionWarper 1 # cPushableDumpEvent 3 # cAwardPPEvent 18 # cSliceZombieEvent 63 # cSetDurabilityEvent 2 # cReadMagazineAnimEvent 2 # cAttachPropToNPCEvent 1 # cPsychoHitWarper 1 # cClearVarEvent 1 # cVomitEvent 5 # cKillZombieProxyEvent 1 # cForceRagdollEvent 27 # cSliceLimbEvent 22 # cZombieGrappleEnableEvent 8 # cZombieFallToGroundEvent 75 # cZombieTagEvent 1 # cZombieEarlyGetupEvent 15 # cZombieTimeScale 3 # cSmashZombieOnEnviroEvent 6 # cSurroundingHitReactionEvent 4 |
Example of sgraph layout[]
From Unused Skillmove Animatons
| example of sgraph layout | |
|---|---|
|
List of sections[]
There are hundreds of sections in sgraph. Two of the most common section types are cGenericAnimState and cAnimGroup.
|
Coding[]
| Code | Description | Example(s) |
|---|---|---|
| ChooserType | There are a variety of different types. For the most part, depending on the type you can figure out what animations are controlled in the same code block. | ChooserType = "HANDTYPE" |
| Anim | This is a cAnimRef number of a code block below this line. All code inside cAnimRef 1152 will be run whenever the requirements are met for the cChooserEntryInt | Anim = 1152
cAnimRef 1152 |
| Value | This is a value which is found in other files.
For example, in items.txt locate a drink. The drink has this line, AnimationChooserValueForHand = "22", which is the value for holding a drink, which is value = 22 in sgraph. |
Value = 22 |
ChooserType's in sgraph.txt[]
All instances of choosertype found in sgraph:
ChooserType = "ACTORTORETICLE" ChooserType = "ATTACKWEAPONTYPE" ChooserType = "BIKELEAN" ChooserType = "BOSSANIM" ChooserType = "BOSSANIM_SECONDARY" ChooserType = "BOSSLOCOMOTION" ChooserType = "BOSSTYPE" ChooserType = "BUTTONTYPE" ChooserType = "CANPLAYAMBIENTIDLES" ChooserType = "CARRYNPCTYPE" ChooserType = "CATLOCATION" ChooserType = "CHARACTER_FACIAL" ChooserType = "CHARACTERTYPE" ChooserType = "CLIMBORHANG" ChooserType = "CLOTHING" ChooserType = "COMBINEPROPS" ChooserType = "CUSTOM_DEAD_REACTION" ChooserType = "CUSTOM_DEATH_REACTION" ChooserType = "CUSTOM_HITREACTION" ChooserType = "CUSTOM_IDLE" ChooserType = "DETERMINE_CUSTOM_DEAD_REACTION" ChooserType = "DETERMINE_CUSTOM_DEATH_REACTION" ChooserType = "DETERMINE_CUSTOM_HITREACTION" ChooserType = "DETERMINE_CUSTOM_IDLE" ChooserType = "DODGETYPE" ChooserType = "DOORACTIONTYPE" ChooserType = "DROPKICKLANDTYPE" ChooserType = "EATDRINKTYPE" ChooserType = "ENHANCEDTYPE" ChooserType = "ENTEREXITVEHICLETYPE" ChooserType = "FACIALTEST" ChooserType = "FIREARMTYPE" ChooserType = "FITNESSBIKE_ENTERONSIDE" ChooserType = "FREEFALLATTACKTYPE" ChooserType = "FREEFALLING" ChooserType = "GAMETIME_HRS" ChooserType = "GETUP" ChooserType = "GRABZOMBIEATTACKSIDE" ChooserType = "GRABZOMBIEATTACKTYPE" ChooserType = "HANDLINGSTYLE" ChooserType = "HANDTYPE" ChooserType = "HITDIRECTION" ChooserType = "HITREACTIONTYPE" ChooserType = "HUGPARENTCHILD" ChooserType = "IDLEAWARENESSTYPE" ChooserType = "IDLEHOLDTYPE" ChooserType = "INJURED" ChooserType = "INPUSHABLETYPE" ChooserType = "ISMERMAID" ChooserType = "KICKATTACKTYPE" ChooserType = "LANDINGTYPE" ChooserType = "LANDTOIDLEORSPLAT" ChooserType = "LANDTOIDLERUNSPLAT" ChooserType = "LEADERAHEAD" ChooserType = "MOOSEHEAD_MINIGAME_CHARGE" ChooserType = "MOOSEHEAD_MINIGAME_SWING_A" ChooserType = "MOOSEHEAD_MINIGAME_SWING_B" ChooserType = "MOOSEHEAD_MINIGAME_SWING_IDLE" ChooserType = "MOTIONSTATE" ChooserType = "MOURNINGSTYLE" ChooserType = "MOVIETHEATRE_MOVIETYPE" ChooserType = "OBJECTHOLDTYPE" ChooserType = "ONBELLY" ChooserType = "PENDINGLANDREACTION" ChooserType = "PHONEJUMPHOLDTYPE" ChooserType = "PICKUPHEIGHT" ChooserType = "PICKUPPROPCOMBOSTATION" ChooserType = "PICKUPTYPE" ChooserType = "PIVOTTYPE" ChooserType = "PLACEPROPSCOMBOSTATION" ChooserType = "PLANT_PIKE" ChooserType = "POKERACTION" ChooserType = "POKERIDLE" ChooserType = "POKERIDLETOLEANBACK" ChooserType = "POKERKNOCKEDOUT" ChooserType = "POKERLEANBACKIDLE" ChooserType = "POKERLEANBACKTOIDLE" ChooserType = "POKERLOSE" ChooserType = "POKERREGULARIDLE" ChooserType = "POKERSPECIALIDLE" ChooserType = "POKERSTRIP" ChooserType = "POKERWIN" ChooserType = "POSEVIEWER" ChooserType = "PSYCHOHITANIM" ChooserType = "PUSHABLEATTACHTYPE" ChooserType = "PUSHABLESTATE" ChooserType = "PUSHABLETYPE" ChooserType = "PUTDOWNTYPE" ChooserType = "QUICKTHROWTYPE" ChooserType = "RIDEABLE_GETOFF" ChooserType = "RIDEABLERIDE" ChooserType = "RIGHTFOOTDOWN" ChooserType = "ROLLABLESPEED" ChooserType = "SAFEHOUSEIDLEMODE" ChooserType = "SFATTACK" ChooserType = "SHOVESIDE" ChooserType = "SICK" ChooserType = "SKELETON" ChooserType = "SPECIAL_MELEE_ATTACK" ChooserType = "SPECIFICVEHICLE" ChooserType = "SPRAYTURN" ChooserType = "STRAFEDIRECTION" ChooserType = "STRAFETYPE" ChooserType = "SURVIVOR_HAS_ONE_HANDED_PROP" ChooserType = "SURVIVORATTACK" ChooserType = "SURVIVORCLASS" ChooserType = "SURVIVORCUSTOM" ChooserType = "SURVIVORCUSTOMPREJOIN" ChooserType = "SURVIVORDEFECT" ChooserType = "SURVIVORDISPOSITION" ChooserType = "SURVIVORENEMYAWARE" ChooserType = "SURVIVOREVENTREACTION" ChooserType = "SURVIVORORHUMAN" ChooserType = "SURVIVORPREJOIN" ChooserType = "SURVIVORREACTIONLEVEL" ChooserType = "SURVIVORTARGETDISTANCE" ChooserType = "SWINGTYPE" ChooserType = "TERRAININTERACTIONTYPE" ChooserType = "THROWTYPE" ChooserType = "TIR_PLAYER_ID" ChooserType = "TOSSOVERSHOULDER" ChooserType = "TRIGGERVOLUMETYPE" ChooserType = "TURNDIRECTION" ChooserType = "USEMOMENTUMSTOP" ChooserType = "VEHICLEEJECTIONIMPACT" ChooserType = "VEHICLEEXIT" ChooserType = "VEHICLESTEERING" ChooserType = "VEHICLETYPE" ChooserType = "WALKRUNHOLDTYPE" ChooserType = "WALKWITHZOMBIETYPE" ChooserType = "WEAPONIMPACT" ChooserType = "WEAPONON" ChooserType = "ZOMBIEGRAPPLE" |
cCategoryChooser[]
# cCategoryChooser 877 cCategoryChooser bossanim cCategoryChooser cat cCategoryChooser catchooser cCategoryChooser category cCategoryChooser Category cCategoryChooser CATEGORY cCategoryChooser category_chooser cCategoryChooser cCatChooser cCategoryChooser cCategory cCategoryChooser cCategoryChoose cCategoryChooser cCategoryChooser cCategoryChooser cRandomChooser cCategoryChooser enter_exit cCategoryChooser exitvehicle cCategoryChooser foot cCategoryChooser footage cCategoryChooser footedness cCategoryChooser landtoidleorsplat cCategoryChooser PreJoinAnim cCategoryChooser random cCategoryChooser selectbike cCategoryChooser side cCategoryChooser skel cCategoryChooser SpecialMeleeAttackChooser cCategoryChooser SurvivorNature cCategoryChooser SurvivorState cCategoryChooser walkrunholdtype cLinearChooser cCategoryChooser cRandomChooser cCategoryChooser |
cGenericTransitioner[]
# cGenericTransitioner 1103 cGenericTransitioner loop cGenericTransitioner MascotSkateUpStairs cGenericTransitioner ToAnswerHeadSet cGenericTransitioner ToAntoineBlock cGenericTransitioner ToAntoineBlockBullet cGenericTransitioner ToAntoineEat cGenericTransitioner ToAntoineLocomotion cGenericTransitioner ToAntoineMelee cGenericTransitioner ToAntoinePutAway cGenericTransitioner ToAntoineThrow cGenericTransitioner ToAttackFiniteCharge cGenericTransitioner ToAttackWithNPC cGenericTransitioner ToBoykinDead cGenericTransitioner ToBoykinDodge cGenericTransitioner ToBoykinIdle cGenericTransitioner ToBoykinKneelingIdle cGenericTransitioner ToBoykinKneelingReload cGenericTransitioner ToBoykinKneelingTaunt cGenericTransitioner ToBoykinKneelToRun cGenericTransitioner ToBoykinKneelToStand cGenericTransitioner ToBoykinMadnessShoot cGenericTransitioner ToBoykinMelee cGenericTransitioner ToBoykinReload cGenericTransitioner ToBoykinShoot cGenericTransitioner ToBoykinShootToIdle cGenericTransitioner ToBoykinTaunt cGenericTransitioner ToBoykinThrow cGenericTransitioner ToBoykinToKneel cGenericTransitioner ToBullRiding cGenericTransitioner ToBullRidingExit cGenericTransitioner ToBullRidingStandUp cGenericTransitioner ToCasualIdle cGenericTransitioner ToCasualIdleWithNPC cGenericTransitioner ToCasualIdleWithPhone cGenericTransitioner ToCasualToInjuredIdle cGenericTransitioner ToCasualToInjuredIdleWithPhone cGenericTransitioner ToCombatIdle cGenericTransitioner ToCowardIdle cGenericTransitioner ToCrouch cGenericTransitioner ToCrouchToIdle cGenericTransitioner ToDead cGenericTransitioner ToDeviantBrideIdle cGenericTransitioner ToDeviantBrideKissing cGenericTransitioner ToDeviantDead cGenericTransitioner ToDeviantInhaler cGenericTransitioner ToDeviantKissingLoop cGenericTransitioner ToDeviantLocomotion cGenericTransitioner ToDeviantMeleeChainsaw_Front cGenericTransitioner ToDeviantMeleeChainsaw_Side cGenericTransitioner ToDeviantTaunt cGenericTransitioner ToDeviantVulnerableIdle cGenericTransitioner ToDeviantVulnerableIdleToIdle cGenericTransitioner ToDirectSurvivor cGenericTransitioner ToDivaAngry cGenericTransitioner ToDivaBow cGenericTransitioner ToDivaSinging cGenericTransitioner ToDivaSinging_StandStill cGenericTransitioner ToDivaWireLoop cGenericTransitioner ToDLCAttackFiniteCharge cGenericTransitioner ToDonutIdle cGenericTransitioner ToDonutSteering cGenericTransitioner ToDragged cGenericTransitioner ToDrinkCheers cGenericTransitioner ToDriveIdle cGenericTransitioner ToDriveReverse cGenericTransitioner ToF_ChildAmbient cGenericTransitioner ToF_FacialTest cGenericTransitioner ToF_LargeSkeleton cGenericTransitioner ToF_LongCloak cGenericTransitioner ToF_Tiger cGenericTransitioner ToFirePitThrow cGenericTransitioner ToFreefall cGenericTransitioner ToGateHackPress cGenericTransitioner ToGateHackStandUp cGenericTransitioner ToGATERATTLERS cGenericTransitioner ToGetup cGenericTransitioner ToGiantWheelLose cGenericTransitioner ToGiantWheelSpin cGenericTransitioner ToGiantWheelWatch cGenericTransitioner ToGiantWheelWin cGenericTransitioner ToGolfBoothBackToIdle cGenericTransitioner ToGolfBoothIdle cGenericTransitioner ToGolfBoothLose cGenericTransitioner ToGolfBoothPostSwingIdle cGenericTransitioner ToGolfBoothWin cGenericTransitioner ToGrabZombieAttack cGenericTransitioner ToGyroscopeExitLose cGenericTransitioner ToGyroscopeExitWin cGenericTransitioner ToGyroscopeGetUp cGenericTransitioner ToGyroscopeIdle cGenericTransitioner ToGyroscopeIdleMoving cGenericTransitioner ToGyroscopeMove cGenericTransitioner ToHadouken cGenericTransitioner ToHangIdleOnLedge cGenericTransitioner ToHangIdleOnLedgeToStand cGenericTransitioner ToHangmanClearout cGenericTransitioner ToHangmanClearoutZombie cGenericTransitioner ToHangmanClubTaunt cGenericTransitioner ToHangmanDead cGenericTransitioner ToHangmanDragPlayer cGenericTransitioner ToHangmanLocomotion cGenericTransitioner ToHangmanMelee cGenericTransitioner ToHangmanNooseTwirl cGenericTransitioner ToHangmanRelent cGenericTransitioner ToHangmanShoot cGenericTransitioner ToHangmanThrow cGenericTransitioner ToHangupHeadSet cGenericTransitioner ToHeavyWeaponAttack cGenericTransitioner ToHighBomberChargeLoop cGenericTransitioner ToHighBomberKnockDownIdle cGenericTransitioner ToHighBomberKnockDownRecover cGenericTransitioner ToHighBomberLocomotion cGenericTransitioner ToHighBomberShoot cGenericTransitioner ToHighBomberShootFinish cGenericTransitioner ToHighChaserClearout cGenericTransitioner ToHighChaserLocomotion cGenericTransitioner ToHighChaserMelee cGenericTransitioner ToHighChaserMeleeSlashFest cGenericTransitioner ToHoldZombie cGenericTransitioner ToIdleAimGun cGenericTransitioner ToIdleAimGunToIdle cGenericTransitioner ToIdleAimShootGun cGenericTransitioner ToIdleGunToIdleAimGun cGenericTransitioner ToIdleToRun cGenericTransitioner ToIdleToRunWithNPC cGenericTransitioner ToIdleToWalk cGenericTransitioner ToIdleWithZombie cGenericTransitioner ToInAirHitReactionFallLoop cGenericTransitioner ToInjuredIdle cGenericTransitioner ToInjuredIdleWithPhone cGenericTransitioner ToJumpA cGenericTransitioner ToKatieExcited cGenericTransitioner ToKatieIdle cGenericTransitioner ToKatieSick cGenericTransitioner ToKatieToSick cGenericTransitioner ToKCCharge cGenericTransitioner ToKCGrabRun cGenericTransitioner ToKCHolsterGun cGenericTransitioner ToKCKateyHangLoop cGenericTransitioner ToKCKickWinch cGenericTransitioner ToKCLeapOn cGenericTransitioner ToKCLocomotion cGenericTransitioner ToKCMelee cGenericTransitioner ToKCMinigameAnim cGenericTransitioner ToKCShoot cGenericTransitioner ToKCStaceyHangLoop cGenericTransitioner ToKCStartFireworks cGenericTransitioner ToKCThugDead cGenericTransitioner ToKCThugHitReaction cGenericTransitioner ToKCThugLocomotion cGenericTransitioner ToKCThugShoot cGenericTransitioner ToKCUnholsterGun cGenericTransitioner ToKCWinchMinigameLoop cGenericTransitioner ToKCWinchTaunt cGenericTransitioner ToKnockBackHitReactionFreeFall cGenericTransitioner ToKnockBackHitReactionLandFromFreeFall cGenericTransitioner ToKnockBackHitReactionLoop cGenericTransitioner ToKnockedOut cGenericTransitioner ToKnockedOutToDeath cGenericTransitioner ToLightWeaponAttack cGenericTransitioner ToMascotBackpeddle cGenericTransitioner ToMascotChargeLoop cGenericTransitioner ToMascotDeathBlossom cGenericTransitioner ToMascotFallLoop cGenericTransitioner ToMascotFlameOut cGenericTransitioner ToMascotHatTrickAttack cGenericTransitioner ToMascotHitReaction cGenericTransitioner ToMascotHitReactionOnGround cGenericTransitioner ToMascotJumpLoop cGenericTransitioner ToMascotLocomotion cGenericTransitioner ToMascotStopAndBurn cGenericTransitioner ToMascotVulnerableIdle cGenericTransitioner ToMascotVulnerableIdleToIdle cGenericTransitioner ToMermaidIdle cGenericTransitioner ToMilitiaClearout cGenericTransitioner ToMilitiaHitReaction cGenericTransitioner ToMilitiaLocomotion cGenericTransitioner ToMilitiaMelee cGenericTransitioner ToMilitiaShootReady cGenericTransitioner ToMilitiaSidestep cGenericTransitioner ToMilitiaSwapWeapons cGenericTransitioner ToMoneyGrab cGenericTransitioner ToMoneyGrabEnter cGenericTransitioner ToMoneyGrabExit cGenericTransitioner ToMoneyGrabFinishHappy cGenericTransitioner ToMoneyGrabFinishNeutral cGenericTransitioner ToMoneyGrabStart cGenericTransitioner ToMovieTheatreEnter cGenericTransitioner ToOutfitPose cGenericTransitioner ToPawnshopLooterIdle cGenericTransitioner ToPeepShowEnter cGenericTransitioner ToPeepShowFinishHappy cGenericTransitioner ToPeepShowIdle cGenericTransitioner ToPF_Ambient cGenericTransitioner ToPickupZombie cGenericTransitioner ToPikeMiss cGenericTransitioner ToPikeShuffleLoop cGenericTransitioner ToPivot cGenericTransitioner ToPlayerCrankLoop cGenericTransitioner ToPlayerGetChoked cGenericTransitioner ToPlayerGetGrabRunByKC cGenericTransitioner ToPlayerGrappledToGround cGenericTransitioner ToPlayerGroundGrappleBitten cGenericTransitioner ToPlayerGroundGrappleStruggle cGenericTransitioner ToPlayerIceGameLoop cGenericTransitioner ToPlayerKCMinigameAnim cGenericTransitioner ToPlayerLyingOnGround cGenericTransitioner ToPlayerOnGroundByAntoine cGenericTransitioner ToPlayerOnGroundByAntoineFromBack cGenericTransitioner ToPlayerOnGroundByBoykin cGenericTransitioner ToPlayerReactToNooseFalling cGenericTransitioner ToPlayerReactToNooseImpact cGenericTransitioner ToPlayerRubFace cGenericTransitioner ToPlayerStruggleWithZombie cGenericTransitioner ToPlayerStruggleWithZombieBitten cGenericTransitioner ToPlayerWinchMinigameLoop cGenericTransitioner ToPokerIdle cGenericTransitioner ToPokerLeanBackIdle cGenericTransitioner ToPokerPhoneIdle cGenericTransitioner ToPokerRegularIdle cGenericTransitioner ToPoseViewer cGenericTransitioner ToPostmanGetup cGenericTransitioner ToPostmanHitReaction cGenericTransitioner ToPostmanLocomotion cGenericTransitioner ToPostmanMelee cGenericTransitioner ToPostmanReload cGenericTransitioner ToPostmanShootReady cGenericTransitioner ToPowerSlide cGenericTransitioner ToProtesterAmbushIdle cGenericTransitioner ToProtesterAmbushIdleToIdle cGenericTransitioner ToProtesterJumpAttackFail cGenericTransitioner ToProtesterJumpAttackSuccess cGenericTransitioner ToProtesterLeapFail cGenericTransitioner ToProtesterLeapOnBackStabbed cGenericTransitioner ToProtesterLeapOnFrontStabbed cGenericTransitioner ToProtesterLeapPlayerOnBackIdle cGenericTransitioner ToProtesterLeapSuccess cGenericTransitioner ToProtesterLeapSuccessOnBack cGenericTransitioner ToProtesterLocomotion cGenericTransitioner ToProtesterMelee cGenericTransitioner ToPsychoHitReaction cGenericTransitioner ToPushableAlternateCharge cGenericTransitioner ToPushableDetachFrom cGenericTransitioner ToPushableDump cGenericTransitioner ToPushableIdle cGenericTransitioner ToPushableIdleToAlternateCharge cGenericTransitioner ToPushableIdleToPushForward cGenericTransitioner ToPushableIdleToReverse cGenericTransitioner ToPushablePushForward cGenericTransitioner ToPushableReverse cGenericTransitioner ToPushableTurnLeft cGenericTransitioner ToPushableTurnRight cGenericTransitioner ToRebeccaFilmLoop cGenericTransitioner ToRideFitnessBike cGenericTransitioner ToRollableIdle cGenericTransitioner ToRun cGenericTransitioner ToRunJumpA cGenericTransitioner ToRunJumpB cGenericTransitioner ToRunJumpBWithNPC cGenericTransitioner ToSCatLounging cGenericTransitioner ToSCryForHelp cGenericTransitioner ToSDead cGenericTransitioner ToSDriveIdle cGenericTransitioner ToSEat cGenericTransitioner ToSelf cGenericTransitioner ToSGettingEaten cGenericTransitioner ToSGetUp cGenericTransitioner ToSGiveObject cGenericTransitioner ToSHeavyHitReaction cGenericTransitioner ToSHitReaction cGenericTransitioner ToSHUG cGenericTransitioner ToSIdle cGenericTransitioner ToSIdleAimGun cGenericTransitioner ToSIdleAimGunToIdle cGenericTransitioner ToSIdleAimShootGun cGenericTransitioner ToSIdleToIdleAimGun cGenericTransitioner ToSIdleToRun cGenericTransitioner ToSIntoWeepingOverBody cGenericTransitioner ToSit cGenericTransitioner ToSkateboardPreJump cGenericTransitioner ToSkateboardPump cGenericTransitioner ToSkateboardRide cGenericTransitioner ToSlotMachineIdle cGenericTransitioner ToSNatureEventReaction cGenericTransitioner ToSnowflakeHitReaction cGenericTransitioner ToSnowflakeIdleToLounge cGenericTransitioner ToSnowflakeLocomotion cGenericTransitioner ToSnowflakeLounge cGenericTransitioner ToSnowflakeMaul cGenericTransitioner ToSnowflakeMelee cGenericTransitioner ToSnowflakeRoar cGenericTransitioner ToSOutOfWeepingOverBody cGenericTransitioner ToSpit cGenericTransitioner ToSPivot cGenericTransitioner ToSpray cGenericTransitioner ToSPreJoin cGenericTransitioner ToSPushThrough cGenericTransitioner ToSRescuedIdle cGenericTransitioner ToSRideInPushableIdle cGenericTransitioner ToSRun cGenericTransitioner ToSSafehouseIdle cGenericTransitioner ToSScaredDefection cGenericTransitioner ToSSit cGenericTransitioner ToSSullivanPace cGenericTransitioner ToSSullivanSit cGenericTransitioner ToSSullivanSit2 cGenericTransitioner ToSullivanAim cGenericTransitioner ToSullivanAimToIdle cGenericTransitioner ToSullivanBlockIdle cGenericTransitioner ToSullivanClearout cGenericTransitioner ToSullivanDeathReaction cGenericTransitioner ToSullivanDodgeRoll cGenericTransitioner ToSullivanHitReaction cGenericTransitioner ToSullivanIdleInteraction cGenericTransitioner ToSullivanIdleToIdleInteraction cGenericTransitioner ToSullivanKickProp cGenericTransitioner ToSullivanLocomotion cGenericTransitioner ToSullivanMelee cGenericTransitioner ToSullivanMeleeLocomotion cGenericTransitioner ToSullivanMeleeSpecial cGenericTransitioner ToSullivanShoot cGenericTransitioner ToSullivanTauntConsole cGenericTransitioner ToSullivanTauntRadio cGenericTransitioner ToSullivanThrowSuccess cGenericTransitioner ToSullivanVulnerableIdle cGenericTransitioner ToSurvivorLightWeaponAttack cGenericTransitioner ToSurvivorStruggleWithZombie cGenericTransitioner ToSurvivorStruggleWithZombieDetach cGenericTransitioner ToSurvivorStruggleWithZombieEngaged cGenericTransitioner ToSWaveAtPlayer cGenericTransitioner ToSWeepingOverBody cGenericTransitioner ToThrow cGenericTransitioner ToThrowIdle cGenericTransitioner ToThrowIdleToIdle cGenericTransitioner ToThrowQuick cGenericTransitioner ToToKnockedOut cGenericTransitioner ToTossZombie cGenericTransitioner ToTrainThugDrop cGenericTransitioner ToTrainThugIdle cGenericTransitioner ToTrainThugIdleToShoot cGenericTransitioner ToTrainThugReload cGenericTransitioner ToTrainThugShoot cGenericTransitioner ToTrainThugShootIdle cGenericTransitioner ToTrainThugShootToIdle cGenericTransitioner ToTrainThugThrow cGenericTransitioner ToTwinsFlipAttack cGenericTransitioner ToTwinsFlipAttackFail cGenericTransitioner ToTwinsFlipAttackFinish cGenericTransitioner ToTwinsFlipAttackSuccess cGenericTransitioner ToTwinsHitReaction cGenericTransitioner ToTwinsKnockDownIdle cGenericTransitioner ToTwinsLocomotion cGenericTransitioner ToTwinsMelee cGenericTransitioner ToTwinsPaintingIdle cGenericTransitioner ToTwinsPlayerOnBackIdle cGenericTransitioner ToTwinsStomp cGenericTransitioner ToTwinsStompPlayer cGenericTransitioner ToUB_AimAtReticle cGenericTransitioner ToUltimateFanDrive cGenericTransitioner ToUltimateFanHitReaction cGenericTransitioner ToUltimateFanStop cGenericTransitioner ToVehicleEjection_Fly cGenericTransitioner ToVendingMachineEnter cGenericTransitioner ToVomit cGenericTransitioner ToWalkWithZombie cGenericTransitioner ToZombieDead cGenericTransitioner ToZombieIdle |
cGenericBlender[]
# cGenericBlender 1651 cGenericBlender BlendToDivaAngry cGenericBlender BlendToDivaSinging cGenericBlender BlendToDivaWireLift cGenericBlender BlendToDivaWireLoop cGenericBlender ToAntoineBlock cGenericBlender ToAntoineBlockBullet cGenericBlender ToAntoineClearout cGenericBlender ToAntoineClearoutZombie cGenericBlender ToAntoineEat cGenericBlender ToAntoineHitReaction cGenericBlender ToAntoineLocomotion cGenericBlender ToAntoineMelee cGenericBlender ToAntoinePullOut cGenericBlender ToAntoinePutAway cGenericBlender ToAntoineThrow cGenericBlender ToAntoineThrowTransition cGenericBlender ToAttackChargeDown cGenericBlender ToAttackChargeIdle cGenericBlender ToAttackFiniteCharge cGenericBlender ToAttackSequence cGenericBlender ToAttackSequenceBlender cGenericBlender ToAttackWithNPC cGenericBlender ToBoykinDodge cGenericBlender ToBoykinIdle cGenericBlender ToBoykinIdleToShoot cGenericBlender ToBoykinKneelingReload cGenericBlender ToBoykinKneelToRun cGenericBlender ToBoykinMadnessShoot cGenericBlender ToBoykinMelee cGenericBlender ToBoykinReload cGenericBlender ToBoykinShoot cGenericBlender ToBoykinShootToIdle cGenericBlender ToBoykinTaunt cGenericBlender ToBoykinThrow cGenericBlender ToCasualIdle cGenericBlender ToCasualIdleBlender cGenericBlender ToCasualIdleWithNPC cGenericBlender ToCasualIdleWithPhone cGenericBlender ToCasualIdleWithPhoneBlender cGenericBlender ToCasualToInjuredIdle cGenericBlender ToCasualToInjuredIdleBlender cGenericBlender ToCasualToInjuredIdleWithPhone cGenericBlender ToClimbFromShinLevel cGenericBlender ToCrouch cGenericBlender ToCrouchToIdle cGenericBlender ToDead cGenericBlender ToDeviantDead cGenericBlender ToDeviantFatalHitReaction cGenericBlender ToDeviantHitReaction cGenericBlender ToDeviantIdleToInhaler cGenericBlender ToDeviantIdleToKissing cGenericBlender ToDeviantInhaler cGenericBlender ToDeviantInhalerToLocomotion cGenericBlender ToDeviantLocomotion cGenericBlender ToDeviantLocomotionToAttack cGenericBlender ToDeviantMeleeChainsaw_Front cGenericBlender ToDeviantMeleeChainsaw_Side cGenericBlender ToDeviantMeleeClearout cGenericBlender ToDeviantTaunt cGenericBlender ToDeviantVulnerableHitReaction cGenericBlender ToDeviantVulnerableIdle cGenericBlender ToDeviantVulnerableIdleToIdle cGenericBlender ToDirectSurvivor cGenericBlender ToDLCAttackChargeDown cGenericBlender ToDLCAttackChargeIdle cGenericBlender ToDLCAttackFiniteCharge cGenericBlender ToDLCWeaponImpact cGenericBlender ToDodge cGenericBlender ToDonutIdle cGenericBlender ToDonutSteering cGenericBlender ToDragonPunch cGenericBlender ToDrive cGenericBlender ToDriveIdle cGenericBlender ToEatDrink cGenericBlender ToEnterVehicle cGenericBlender ToEnterVehicleBlender cGenericBlender ToFeeding cGenericBlender ToFieldGoalKick cGenericBlender ToFieldGoalKickBlender cGenericBlender ToFinalCombo13487 cGenericBlender ToFirePitThrow cGenericBlender ToFreefallAttack cGenericBlender ToFreefallAttackLand cGenericBlender ToFreefallAttackToGround cGenericBlender ToFreefallAttackToIdle cGenericBlender ToFreefallLandBlender cGenericBlender ToGATERATTLERS cGenericBlender ToGetOnActor cGenericBlender ToGetup cGenericBlender ToGiantWheelSpin cGenericBlender ToGiantWheelWatch cGenericBlender ToGiveObject cGenericBlender ToGrabZombieAttack cGenericBlender ToGrabZombieAttackBlender cGenericBlender ToH_HoldProp cGenericBlender ToH_Override cGenericBlender ToH_TwoHandGripBlend cGenericBlender ToH_TwoHandSpreadBlend cGenericBlender ToHadouken cGenericBlender ToHadoukenCharge cGenericBlender ToHangmanChokePlayer cGenericBlender ToHangmanClearout cGenericBlender ToHangmanClubTaunt cGenericBlender ToHangmanLocomotion cGenericBlender ToHangmanMelee cGenericBlender ToHangmanNoosePickup cGenericBlender ToHangmanNooseTwirl cGenericBlender ToHeavyWeaponAttackMiss cGenericBlender ToHighBomberChargeFinish cGenericBlender ToHighBomberChargeLoop cGenericBlender ToHighBomberChargeStart cGenericBlender ToHighBomberCheer cGenericBlender ToHighBomberClearout cGenericBlender ToHighBomberJeerBoss cGenericBlender ToHighBomberLocomotion cGenericBlender ToHighBomberShoot cGenericBlender ToHighBomberShootFinish cGenericBlender ToHighBomberShootReady cGenericBlender ToHighChaserBlinded cGenericBlender ToHighChaserCheer cGenericBlender ToHighChaserClearout cGenericBlender ToHighChaserFatalHitReaction cGenericBlender ToHighChaserHitReaction cGenericBlender ToHighChaserJeer cGenericBlender ToHighChaserJeerBoss cGenericBlender ToHighChaserLocomotion cGenericBlender ToHighChaserMelee cGenericBlender ToHighChaserMeleeGash cGenericBlender ToHighChaserTaunt cGenericBlender ToIdleAimGun cGenericBlender ToIdleAimGunBlender cGenericBlender ToIdleAimGunToIdle cGenericBlender ToIdleAimGunToIdleBlender cGenericBlender ToIdleAimShootGun cGenericBlender ToIdleGunToIdleAimGun cGenericBlender ToIdleToCrouch cGenericBlender ToIdleToRun cGenericBlender ToIdleToRunBlender cGenericBlender ToIdleToRunWithNPC cGenericBlender ToIdleToRunWithPhone cGenericBlender ToIdleToRunWithPhoneBlender cGenericBlender ToIdleToThrowIdle cGenericBlender ToIdleToWalk cGenericBlender ToIdleToWalkBlender cGenericBlender ToIdleToWalkWithPhone cGenericBlender ToIdleToWalkWithPhoneBlender cGenericBlender ToIdleWithZombie cGenericBlender ToInjuredIdle cGenericBlender ToInjuredIdleBlender cGenericBlender ToInjuredIdleWithPhone cGenericBlender ToInteractWithMachineBlender cGenericBlender ToJumpA cGenericBlender ToJumpABlender cGenericBlender ToJumpB cGenericBlender ToJumpC cGenericBlender ToJumpCBlender cGenericBlender ToKCCasualIdle cGenericBlender ToKCCharge cGenericBlender ToKCChargeTelegraph cGenericBlender ToKCHitReaction cGenericBlender ToKCKickWinch cGenericBlender ToKCLocomotion cGenericBlender ToKCMelee cGenericBlender ToKCMinigameLose cGenericBlender ToKCMinigameTie cGenericBlender ToKCMinigameWin cGenericBlender ToKCStartFireworks cGenericBlender ToKick cGenericBlender ToKickBlender cGenericBlender ToKnockBackHitReactionLand cGenericBlender ToKnockBackHitReactionLandFromFreeFall cGenericBlender ToKnockBackHitReactionLoop cGenericBlender ToKnockedOut cGenericBlender ToKnockedOutBlender cGenericBlender ToLeftHaymaker cGenericBlender ToLeftHookPunch cGenericBlender ToLeftHookPunch1846 cGenericBlender ToLeftHookPunch1937 cGenericBlender ToLeftHookPunch4346 cGenericBlender ToLeftHookPunchBlender cGenericBlender ToMascotBackpeddle cGenericBlender ToMascotChargeLoop cGenericBlender ToMascotChargeToIdle cGenericBlender ToMascotDeathBlossom cGenericBlender ToMascotFallLanding cGenericBlender ToMascotFallLoop cGenericBlender ToMascotFireMurderBall cGenericBlender ToMascotFlameOut cGenericBlender ToMascotHatTrickAttack cGenericBlender ToMascotHitReaction cGenericBlender ToMascotHitReactionOnGround cGenericBlender ToMascotIdleToCharge cGenericBlender ToMascotIdleToVulnerableIdle cGenericBlender ToMascotJump cGenericBlender ToMascotJumpLanding cGenericBlender ToMascotJumpLoop cGenericBlender ToMascotLocomotion cGenericBlender ToMascotLocomotionToStopAndBurn cGenericBlender ToMascotStopAndBurn cGenericBlender ToMascotVulnerableIdle cGenericBlender ToMascotVulnerableIdleToIdle cGenericBlender ToMermaidIdle cGenericBlender ToMermaidSHThanks cGenericBlender ToMilitiaClearout cGenericBlender ToMilitiaDeath cGenericBlender ToMilitiaGrabAndStab cGenericBlender ToMilitiaGrabAndStabFail cGenericBlender ToMilitiaHitReaction cGenericBlender ToMilitiaIdleToShoot cGenericBlender ToMilitiaLocomotion cGenericBlender ToMilitiaMelee cGenericBlender ToMilitiaReload cGenericBlender ToMilitiaShoot cGenericBlender ToMilitiaShootReady cGenericBlender ToMilitiaShootToIdle cGenericBlender ToMilitiaSidestep cGenericBlender ToMilitiaSwapWeapons cGenericBlender ToMilitiaTaunt cGenericBlender ToMilitiaTurnAndShoot cGenericBlender ToOutfitPoseBlender cGenericBlender ToPickup cGenericBlender ToPickupBlender cGenericBlender ToPickupZombie cGenericBlender ToPikeFailure cGenericBlender ToPikeSuccess cGenericBlender ToPivot cGenericBlender ToPivotBlender cGenericBlender ToPivotWithNPC cGenericBlender ToPivotWithPhone cGenericBlender ToPivotWithPhoneBlender cGenericBlender ToPlayerGetChoked cGenericBlender ToPlayerHit cGenericBlender ToPlayerKCMinigameLose cGenericBlender ToPlayerKCMinigameTie cGenericBlender ToPlayerKCMinigameWin cGenericBlender ToPlayerLyingOnGround cGenericBlender ToPlayerReactToNooseImpact cGenericBlender ToPlayerRubFace cGenericBlender ToPlayerStruggleWithZombie cGenericBlender ToPlayerStruggleWithZombieBitten cGenericBlender ToPlayerStruggleWithZombieDetach cGenericBlender ToPlayerStruggleWithZombieEngaged cGenericBlender ToPostmanClearout cGenericBlender ToPostmanDeath cGenericBlender ToPostmanDodge cGenericBlender ToPostmanGetup cGenericBlender ToPostmanHitReaction cGenericBlender ToPostmanLocomotion cGenericBlender ToPostmanMelee cGenericBlender ToPostmanReload cGenericBlender ToPostmanShoot cGenericBlender ToPostmanShootReady cGenericBlender ToPostmanTaunt cGenericBlender ToPowerSlide cGenericBlender ToProtesterAmbushIdle cGenericBlender ToProtesterCharge cGenericBlender ToProtesterClearout cGenericBlender ToProtesterDodge cGenericBlender ToProtesterIdleToAmbushIdle cGenericBlender ToProtesterJumpAttack cGenericBlender ToProtesterJumpAttackFail cGenericBlender ToProtesterJumpAttackSuccess cGenericBlender ToProtesterLeap cGenericBlender ToProtesterLeapFail cGenericBlender ToProtesterLeapSuccess cGenericBlender ToProtesterLeapSuccessOnBack cGenericBlender ToProtesterLocomotion cGenericBlender ToProtesterMelee cGenericBlender ToProtesterRetreat cGenericBlender ToProtesterStallJumpStart cGenericBlender ToProtesterTaunt cGenericBlender ToPsychoHitReaction cGenericBlender ToPushableAlternateCharge cGenericBlender ToPushableAlternateChargeToIdle cGenericBlender ToPushableAlternateChargeToPushForward cGenericBlender ToPushableAttachTo cGenericBlender ToPushableCharge cGenericBlender ToPushableDetachFrom cGenericBlender ToPushableDump cGenericBlender ToPushableIdle cGenericBlender ToPushableIdleToAlternateCharge cGenericBlender ToPushableIdleToPushForward cGenericBlender ToPushableIdleToReverse cGenericBlender ToPushablePushForward cGenericBlender ToPushablePushForwardToAlternateCharge cGenericBlender ToPushablePushForwardToIdle cGenericBlender ToPushableReverse cGenericBlender ToPushableReverseToIdle cGenericBlender ToPushableTurnLeft cGenericBlender ToPushableTurnRight cGenericBlender ToPutdown cGenericBlender ToPutdownBlender cGenericBlender ToReadMagazine cGenericBlender ToRebeccaFilmLoop cGenericBlender ToRevival cGenericBlender ToRightHaymaker cGenericBlender ToRightHookPunch cGenericBlender ToRightHookPunch1937 cGenericBlender ToRun cGenericBlender ToRun180LeftFoot cGenericBlender ToRun180LeftFootBlender cGenericBlender ToRun180RightFoot cGenericBlender ToRun180RightFootBlender cGenericBlender ToRunBlender cGenericBlender ToRunJumpA cGenericBlender ToRunJumpABlender cGenericBlender ToRunJumpB cGenericBlender ToRunJumpBBlender cGenericBlender ToRunJumpCBlender cGenericBlender ToRunJumpCWithNPCBlender cGenericBlender ToRunningStepUpBlender cGenericBlender ToRunPushAside cGenericBlender ToRunPushAsideBlender cGenericBlender ToRunPushWithNPC cGenericBlender ToRunToIdle cGenericBlender ToRunToIdleWithNPC cGenericBlender ToRunToIdleWithPhone cGenericBlender ToRunWithNPC cGenericBlender ToRunWithNPCBlender cGenericBlender ToRunWithPhone cGenericBlender ToSCryForHelp cGenericBlender ToSDead cGenericBlender ToSEat cGenericBlender ToSelf cGenericBlender ToSelfBlender cGenericBlender ToSEnterPushable cGenericBlender ToSEnterVehicle cGenericBlender ToSGettingEaten cGenericBlender ToSGiveObject cGenericBlender ToSHitReaction cGenericBlender ToSHUG cGenericBlender ToSIdle cGenericBlender ToSIdleAimGun cGenericBlender ToSIdleAimGunToIdle cGenericBlender ToSIdleAimShootGun cGenericBlender ToSIdleHandMelee cGenericBlender ToSIdleToIdleAimGun cGenericBlender ToSIdleToRun cGenericBlender ToSIntoWeepingOverBody cGenericBlender ToSkateboardBrake cGenericBlender ToSkateboardCrouch cGenericBlender ToSkateboardDownStairs cGenericBlender ToSkateboardFreefall cGenericBlender ToSkateboardGetOff cGenericBlender ToSkateboardJump cGenericBlender ToSkateboardLand cGenericBlender ToSkateboardPreJump cGenericBlender ToSkateboardPump cGenericBlender ToSkateboardRide cGenericBlender ToSkateboardUpStairs cGenericBlender ToSNatureEventReaction cGenericBlender ToSnowflakeEatFood cGenericBlender ToSnowflakeHighPounce cGenericBlender ToSnowflakeHitReaction cGenericBlender ToSnowflakeLocomotion cGenericBlender ToSnowflakeMelee cGenericBlender ToSnowflakePounce cGenericBlender ToSnowflakeRoar cGenericBlender ToSnowflakeSniffFood cGenericBlender ToSpit cGenericBlender ToSPivot cGenericBlender ToSpray cGenericBlender ToSPreJoin cGenericBlender ToSPushThrough cGenericBlender ToSReceiveObject cGenericBlender ToSRescuedIdle cGenericBlender ToSRun cGenericBlender ToSRunToIdle cGenericBlender ToSSafehouseIdle cGenericBlender ToSSit cGenericBlender ToSStepBack cGenericBlender ToSStepToIdle cGenericBlender ToSStraightFreeFall cGenericBlender ToStandingVault cGenericBlender ToStandingVaultBlender cGenericBlender ToStepToIdle cGenericBlender ToStepToIdleWithNPCBlender cGenericBlender ToStepToIdleWithPhoneBlender cGenericBlender ToSThankPlayer cGenericBlender ToStomp cGenericBlender ToStrafe135Left cGenericBlender ToStrafe135Right cGenericBlender ToStrafe45Left cGenericBlender ToStrafe45Right cGenericBlender ToStrafeBackward cGenericBlender ToStrafeForward cGenericBlender ToStrafeLeft cGenericBlender ToStrafeRight cGenericBlender ToStrafeRun135Left cGenericBlender ToStrafeRun135LeftBlender cGenericBlender ToStrafeRun135Right cGenericBlender ToStrafeRun135RightBlender cGenericBlender ToStrafeRun45Left cGenericBlender ToStrafeRun45LeftBlender cGenericBlender ToStrafeRun45Right cGenericBlender ToStrafeRun45RightBlender cGenericBlender ToStrafeRunBackward cGenericBlender ToStrafeRunBackwardBlender cGenericBlender ToStrafeRunForward cGenericBlender ToStrafeRunForwardBlender cGenericBlender ToStrafeRunLeft cGenericBlender ToStrafeRunLeftBlender cGenericBlender ToStrafeRunRight cGenericBlender ToStrafeRunRightBlender cGenericBlender ToStraightFreefall cGenericBlender ToStraightFreefallBlender cGenericBlender ToSullivanAim cGenericBlender ToSullivanLocomotion cGenericBlender ToSullivanMeleeLocomotion cGenericBlender ToSullivanVulnerableIdleToIdle cGenericBlender ToSurvivorLightWeaponAttack cGenericBlender ToSWaveAtPlayer cGenericBlender ToSWeepingOverBody cGenericBlender ToThrow cGenericBlender ToThrowCharge cGenericBlender ToThrowIdle cGenericBlender ToThrowIdleToIdle cGenericBlender ToThrowQuick cGenericBlender ToToDeviantMeleeChainsaw_Side cGenericBlender ToTossZombie cGenericBlender ToTwinsCharge cGenericBlender ToTwinsClearout cGenericBlender ToTwinsDodge cGenericBlender ToTwinsFlipAttack cGenericBlender ToTwinsFlipAttackFail cGenericBlender ToTwinsFlipAttackFinish cGenericBlender ToTwinsFlipAttackStart cGenericBlender ToTwinsFlipAttackSuccess cGenericBlender ToTwinsHitReaction cGenericBlender ToTwinsKnockDown cGenericBlender ToTwinsKnockDownHit cGenericBlender ToTwinsKnockDownIdle cGenericBlender ToTwinsLocomotion cGenericBlender ToTwinsMelee cGenericBlender ToTwinsMeleeTransition cGenericBlender ToTwinsP1Taunt cGenericBlender ToTwinsPaintingHitReaction cGenericBlender ToTwinsSlash cGenericBlender ToTwinsStomp cGenericBlender ToUltimateFanDrive cGenericBlender ToUltimateFanHitReaction cGenericBlender ToUltimateFanStop cGenericBlender ToVehicleEjection_Eject cGenericBlender ToVehicleEjection_Fly cGenericBlender ToVehicleEjection_Impact cGenericBlender ToVomit cGenericBlender ToVomitBlender cGenericBlender ToWalk cGenericBlender ToWalkStepToIdle cGenericBlender ToWalkStepToIdleWithPhoneBlender cGenericBlender ToWalkToIdle cGenericBlender ToWalkToIdleWithPhone cGenericBlender ToWalkToIdleWithPhoneBlender cGenericBlender ToWalkWithPhone cGenericBlender ToWalkWithPhoneBlender cGenericBlender ToWalkWithZombie cGenericBlender ToWeaponImpact cGenericBlender ToWeaponLostBlender cGenericBlender ToWeaponStomp cGenericBlender ToZoltarMachineEnter |
cImmediateTransitioner[]
# cImmediateTransitioner 2045 cImmediateTransitioner ToAbilityGainedReaction cImmediateTransitioner ToAddPropToPushable cImmediateTransitioner ToAirHitReactionLanding cImmediateTransitioner ToAnswerHeadSet cImmediateTransitioner ToAntoineBlock cImmediateTransitioner ToAntoineBlockBullet cImmediateTransitioner ToAntoineClearout cImmediateTransitioner ToAntoineClearoutZombie cImmediateTransitioner ToAntoineEat cImmediateTransitioner ToAntoineHitReaction cImmediateTransitioner ToAntoineMelee cImmediateTransitioner ToAntoinePullOut cImmediateTransitioner ToAntoineThrowTransition cImmediateTransitioner ToArthurArmorLoss cImmediateTransitioner ToAttackChargeDown cImmediateTransitioner ToAttackSequence cImmediateTransitioner ToAttackWithNPC cImmediateTransitioner ToBikeAttack cImmediateTransitioner ToBoykinDodge cImmediateTransitioner ToBoykinIdle cImmediateTransitioner ToBoykinIdleToShoot cImmediateTransitioner ToBoykinKneelingReload cImmediateTransitioner ToBoykinKneelingTaunt cImmediateTransitioner ToBoykinKneelToRun cImmediateTransitioner ToBoykinKneelToStand cImmediateTransitioner ToBoykinMadnessShoot cImmediateTransitioner ToBoykinMelee cImmediateTransitioner ToBoykinReload cImmediateTransitioner ToBoykinTaunt cImmediateTransitioner ToBoykinThrow cImmediateTransitioner ToBoykinToKneel cImmediateTransitioner ToBullRidingEjected cImmediateTransitioner ToBullRidingEnter cImmediateTransitioner ToCartPivot cImmediateTransitioner ToCasualIdle cImmediateTransitioner ToCasualIdleWithPhone cImmediateTransitioner ToCasualToInjuredIdle cImmediateTransitioner ToCasualToInjuredIdleWithPhone cImmediateTransitioner ToChargeRun cImmediateTransitioner ToChargeRunTo cImmediateTransitioner ToClimbFromShinLevel cImmediateTransitioner ToCombinePropsNegativeReaction cImmediateTransitioner ToCombinePropsWorkbench cImmediateTransitioner ToCrouchToIdle cImmediateTransitioner ToDeviantFatalHitReaction cImmediateTransitioner ToDeviantHitReaction cImmediateTransitioner ToDeviantIdleToInhaler cImmediateTransitioner ToDeviantIdleToKissing cImmediateTransitioner ToDeviantInhalerToLocomotion cImmediateTransitioner ToDeviantInhalerToVulnerableIdle cImmediateTransitioner ToDeviantKissingToIdle cImmediateTransitioner ToDeviantMeleeChainsaw_Front cImmediateTransitioner ToDeviantMeleeChainsaw_Side cImmediateTransitioner ToDeviantMeleeClearout cImmediateTransitioner ToDeviantTaunt cImmediateTransitioner ToDeviantVulnerableHitReaction cImmediateTransitioner ToDeviantVulnerableIdleToIdle cImmediateTransitioner ToDismountFitnessBike cImmediateTransitioner ToDivaBow cImmediateTransitioner ToDivaWireLift cImmediateTransitioner ToDivaWireLower cImmediateTransitioner ToDLCAttackChargeDown cImmediateTransitioner ToDLCWeaponSequence cImmediateTransitioner ToDodge cImmediateTransitioner ToDonutIdle cImmediateTransitioner ToDonutSteering cImmediateTransitioner ToDragonPunch cImmediateTransitioner ToDrive cImmediateTransitioner ToDriveIdle cImmediateTransitioner ToDriveReverse cImmediateTransitioner ToDriveWithChild cImmediateTransitioner ToDriveWithChildIdle cImmediateTransitioner ToDriveWithChildReverse cImmediateTransitioner ToEatDrink cImmediateTransitioner ToEnterVehicle cImmediateTransitioner ToExitVehicle cImmediateTransitioner ToF_Ambient cImmediateTransitioner ToF_FightFace cImmediateTransitioner ToF_OpenMouth cImmediateTransitioner ToF_Standee cImmediateTransitioner ToFatalHitReaction cImmediateTransitioner ToFeeding cImmediateTransitioner ToFieldGoalKick cImmediateTransitioner ToFirePitThrow cImmediateTransitioner ToFreefall cImmediateTransitioner ToFreefallAttack cImmediateTransitioner ToFreefallAttackToGround cImmediateTransitioner ToFreefallAttackToIdle cImmediateTransitioner ToFreefallLand cImmediateTransitioner ToGateHackAssembly cImmediateTransitioner ToGateHackEnter cImmediateTransitioner ToGateHackFail cImmediateTransitioner ToGetInPushable cImmediateTransitioner ToGetOffActor cImmediateTransitioner ToGetOnActor cImmediateTransitioner ToGetOutPushable cImmediateTransitioner ToGetup cImmediateTransitioner ToGiveObject cImmediateTransitioner ToGolfBoothEnter cImmediateTransitioner ToGolfBoothSwing cImmediateTransitioner ToGrabZombie cImmediateTransitioner ToGrabZombieAttack cImmediateTransitioner ToGroundKick cImmediateTransitioner ToGyroscopeMove cImmediateTransitioner ToGyroscopeMovingToIdle cImmediateTransitioner ToGyroscopeTumble cImmediateTransitioner ToH_FistPose cImmediateTransitioner ToH_FrontGrapple cImmediateTransitioner ToH_HoldProp cImmediateTransitioner ToH_Idle cImmediateTransitioner ToH_Override cImmediateTransitioner ToH_TwoHandGrip cImmediateTransitioner ToH_TwoHandSpread cImmediateTransitioner ToHadouken cImmediateTransitioner ToHangIdleOnLedgeToStand cImmediateTransitioner ToHangmanAttackAfterChoke cImmediateTransitioner ToHangmanChokeBreakout cImmediateTransitioner ToHangmanChokePlayer cImmediateTransitioner ToHangmanClearout cImmediateTransitioner ToHangmanClearoutZombie cImmediateTransitioner ToHangmanClubTaunt cImmediateTransitioner ToHangmanClubToNoose cImmediateTransitioner ToHangmanMelee cImmediateTransitioner ToHangmanNoosePickup cImmediateTransitioner ToHangmanNooseTwirl cImmediateTransitioner ToHangmanPullPlayer cImmediateTransitioner ToHangmanRelent cImmediateTransitioner ToHangmanShoot cImmediateTransitioner ToHangupHeadSet cImmediateTransitioner ToHeavyKick cImmediateTransitioner ToHeavyWeaponAttack cImmediateTransitioner ToHeavyWeaponAttackMiss cImmediateTransitioner ToHF_Idle cImmediateTransitioner ToHighBomberChargeFinish cImmediateTransitioner ToHighBomberChargeStart cImmediateTransitioner ToHighBomberCheer cImmediateTransitioner ToHighBomberClearout cImmediateTransitioner ToHighBomberFatalHitReaction cImmediateTransitioner ToHighBomberHitReaction cImmediateTransitioner ToHighBomberJeer cImmediateTransitioner ToHighBomberJeerBoss cImmediateTransitioner ToHighBomberKnockDown cImmediateTransitioner ToHighBomberKnockDownRecover cImmediateTransitioner ToHighBomberLocomotion cImmediateTransitioner ToHighBomberMelee cImmediateTransitioner ToHighBomberSearch cImmediateTransitioner ToHighBomberShootReady cImmediateTransitioner ToHighChaserBlinded cImmediateTransitioner ToHighChaserCheer cImmediateTransitioner ToHighChaserClearout cImmediateTransitioner ToHighChaserFatalHitReaction cImmediateTransitioner ToHighChaserHitReaction cImmediateTransitioner ToHighChaserJeer cImmediateTransitioner ToHighChaserJeerBoss cImmediateTransitioner ToHighChaserMelee cImmediateTransitioner ToHighChaserMeleeGash cImmediateTransitioner ToHighChaserTaunt cImmediateTransitioner ToHitReaction cImmediateTransitioner ToHurricaneKick cImmediateTransitioner ToIdleAimGun cImmediateTransitioner ToIdleAimGunToIdle cImmediateTransitioner ToIdleAimShootGun cImmediateTransitioner ToIdleGunToIdleAimGun cImmediateTransitioner ToIdleToCrouch cImmediateTransitioner ToIdleToHang cImmediateTransitioner ToIdleToPlantPike cImmediateTransitioner ToIdleToRun cImmediateTransitioner ToIdleToRunWithPhone cImmediateTransitioner ToIdleToThrowIdle cImmediateTransitioner ToIdleToWalk cImmediateTransitioner ToIdleToWalkWithPhone cImmediateTransitioner ToIdleWithZombie cImmediateTransitioner ToInjuredIdle cImmediateTransitioner ToInjuredIdleWithPhone cImmediateTransitioner ToInPushableShoot cImmediateTransitioner ToInteractWithButton cImmediateTransitioner ToInteractWithDoor cImmediateTransitioner ToInteractWithMachine cImmediateTransitioner ToIrwinRunThroughDoor cImmediateTransitioner ToJumpA cImmediateTransitioner ToJumpC cImmediateTransitioner ToKCCasualIdle cImmediateTransitioner ToKCChargeGrab cImmediateTransitioner ToKCChargeStun cImmediateTransitioner ToKCChargeTelegraph cImmediateTransitioner ToKCClearout cImmediateTransitioner ToKCGrabSmash cImmediateTransitioner ToKCHeavyHitReaction cImmediateTransitioner ToKCHitReaction cImmediateTransitioner ToKCHolsterGun cImmediateTransitioner ToKCKickStun cImmediateTransitioner ToKCKickWinch cImmediateTransitioner ToKCKnockdownStun cImmediateTransitioner ToKCKnockdownTaunt cImmediateTransitioner ToKCLeapOff cImmediateTransitioner ToKCLeapOn cImmediateTransitioner ToKCLocomotion cImmediateTransitioner ToKCMelee cImmediateTransitioner ToKCMinigameLose cImmediateTransitioner ToKCMinigameTie cImmediateTransitioner ToKCMinigameWin cImmediateTransitioner ToKCRelent cImmediateTransitioner ToKCStartFireworks cImmediateTransitioner ToKCStun cImmediateTransitioner ToKCTaunt cImmediateTransitioner ToKCThugShoot cImmediateTransitioner ToKCUnholsterGun cImmediateTransitioner ToKCWinchMinigameFailPress cImmediateTransitioner ToKCWinchMinigameLose cImmediateTransitioner ToKCWinchMinigameWin cImmediateTransitioner ToKick cImmediateTransitioner ToKnockBackHitReactionBounce cImmediateTransitioner ToKnockBackHitReactionLand cImmediateTransitioner ToKnockBackHitReactionLandFromFreeFall cImmediateTransitioner ToKnockBackHitReactionToFreeFall cImmediateTransitioner ToKnockedOut cImmediateTransitioner ToKnockedOutToDeath cImmediateTransitioner ToKnowledgeGainedReaction cImmediateTransitioner ToLeftHaymaker cImmediateTransitioner ToLeftHookPunch cImmediateTransitioner ToLightWeaponAttack cImmediateTransitioner ToLookAtTool cImmediateTransitioner ToMascotBackpeddle cImmediateTransitioner ToMascotChargeToIdle cImmediateTransitioner ToMascotDeath cImmediateTransitioner ToMascotDeathBlossom cImmediateTransitioner ToMascotFallLanding cImmediateTransitioner ToMascotFireMurderBall cImmediateTransitioner ToMascotFlameOut cImmediateTransitioner ToMascotHatTrickAttack cImmediateTransitioner ToMascotHitReaction cImmediateTransitioner ToMascotHitReactionOnGround cImmediateTransitioner ToMascotIdleToCharge cImmediateTransitioner ToMascotIdleToVulnerableIdle cImmediateTransitioner ToMascotJump cImmediateTransitioner ToMascotJumpLanding cImmediateTransitioner ToMascotLocomotion cImmediateTransitioner ToMascotLocomotionToStopAndBurn cImmediateTransitioner ToMascotRangedClearout cImmediateTransitioner ToMascotStopAndBurn cImmediateTransitioner ToMascotVulnerableIdle cImmediateTransitioner ToMascotVulnerableIdleToIdle cImmediateTransitioner ToMermaidSHThanks cImmediateTransitioner ToMilitiaClearout cImmediateTransitioner ToMilitiaDeath cImmediateTransitioner ToMilitiaGrabAndStab cImmediateTransitioner ToMilitiaGrabAndStabFail cImmediateTransitioner ToMilitiaHitReaction cImmediateTransitioner ToMilitiaIdleToShoot cImmediateTransitioner ToMilitiaLocomotion cImmediateTransitioner ToMilitiaMelee cImmediateTransitioner ToMilitiaReload cImmediateTransitioner ToMilitiaShoot cImmediateTransitioner ToMilitiaShootHitReaction cImmediateTransitioner ToMilitiaShootToIdle cImmediateTransitioner ToMilitiaSidestep cImmediateTransitioner ToMilitiaSwapWeapons cImmediateTransitioner ToMilitiaTaunt cImmediateTransitioner ToMilitiaTurnAndShoot cImmediateTransitioner ToMixDrinks cImmediateTransitioner ToMoneyGrabIdle cImmediateTransitioner ToMountFitnessBike cImmediateTransitioner ToMovieTheatreEnter cImmediateTransitioner ToNullState cImmediateTransitioner ToOutfitPose cImmediateTransitioner ToPickup cImmediateTransitioner ToPickupPhone cImmediateTransitioner ToPickupPropComboStation cImmediateTransitioner ToPickupZombie cImmediateTransitioner ToPikeFailure cImmediateTransitioner ToPikeLoop cImmediateTransitioner ToPikeShuffleLoop cImmediateTransitioner ToPikeSuccess cImmediateTransitioner ToPivot cImmediateTransitioner ToPivotWithPhone cImmediateTransitioner ToPlacePropOnZombie cImmediateTransitioner ToPlacePropsComboStation cImmediateTransitioner ToPlayerBreakOutFromChoke cImmediateTransitioner ToPlayerCrankToIdle cImmediateTransitioner ToPlayerFailureReaction cImmediateTransitioner ToPlayerGetChoked cImmediateTransitioner ToPlayerGetGrabSmashByKC cImmediateTransitioner ToPlayerGrappledToGround cImmediateTransitioner ToPlayerGroundGrappleBitten cImmediateTransitioner ToPlayerGroundGrapplePushoff cImmediateTransitioner ToPlayerHit cImmediateTransitioner ToPlayerIceGameOutOf cImmediateTransitioner ToPlayerKCMinigameLose cImmediateTransitioner ToPlayerKCMinigameTie cImmediateTransitioner ToPlayerKCMinigameWin cImmediateTransitioner ToPlayerReactToHitFromChoke cImmediateTransitioner ToPlayerReactToNooseImpact cImmediateTransitioner ToPlayerRubFace cImmediateTransitioner ToPlayerStruggleWithZombieBitten cImmediateTransitioner ToPlayerStruggleWithZombieDetach cImmediateTransitioner ToPlayerStruggleWithZombieEngaged cImmediateTransitioner ToPlayerSuccessReaction cImmediateTransitioner ToPlayerWinchMinigameFailPress cImmediateTransitioner ToPlayerWinchMinigameLose cImmediateTransitioner ToPlayerWinchMinigameWin cImmediateTransitioner ToPokerAction cImmediateTransitioner ToPokerIdle cImmediateTransitioner ToPokerIdleToLeanBack cImmediateTransitioner ToPokerIdleToPhone cImmediateTransitioner ToPokerKnockedOut cImmediateTransitioner ToPokerLeanBackToIdle cImmediateTransitioner ToPokerLose cImmediateTransitioner ToPokerPhoneToIdle cImmediateTransitioner ToPokerSpecialIdle cImmediateTransitioner ToPokerStrip cImmediateTransitioner ToPokerWin cImmediateTransitioner ToPostmanClearout cImmediateTransitioner ToPostmanDeath cImmediateTransitioner ToPostmanDodge cImmediateTransitioner ToPostmanHitReaction cImmediateTransitioner ToPostmanLocomotion cImmediateTransitioner ToPostmanMelee cImmediateTransitioner ToPostmanReload cImmediateTransitioner ToPostmanShoot cImmediateTransitioner ToPostmanShootReady cImmediateTransitioner ToPostmanTaunt cImmediateTransitioner ToPowerSlide cImmediateTransitioner ToProtesterCharge cImmediateTransitioner ToProtesterClearout cImmediateTransitioner ToProtesterDodge cImmediateTransitioner ToProtesterHitReaction cImmediateTransitioner ToProtesterIdleToAmbushIdle cImmediateTransitioner ToProtesterJumpAttack cImmediateTransitioner ToProtesterLeap cImmediateTransitioner ToProtesterMelee cImmediateTransitioner ToProtesterRetreat cImmediateTransitioner ToProtesterStallJumpStart cImmediateTransitioner ToProtesterTaunt cImmediateTransitioner ToPsychoHitLand cImmediateTransitioner ToPushableAlternateChargeToIdle cImmediateTransitioner ToPushableAlternateChargeToPushForward cImmediateTransitioner ToPushableAttachTo cImmediateTransitioner ToPushableDetachFrom cImmediateTransitioner ToPushableDump cImmediateTransitioner ToPushableIdle cImmediateTransitioner ToPushableIdleToAlternateCharge cImmediateTransitioner ToPushableIdleToPushForward cImmediateTransitioner ToPushableIdleToReverse cImmediateTransitioner ToPushablePushForwardToAlternateCharge cImmediateTransitioner ToPushablePushForwardToIdle cImmediateTransitioner ToPushableReverseToIdle cImmediateTransitioner ToPushableTurnLeft cImmediateTransitioner ToPushableTurnRight cImmediateTransitioner ToPutdown cImmediateTransitioner ToPutdownPhone cImmediateTransitioner ToReadMagazine cImmediateTransitioner ToReceiveObject cImmediateTransitioner ToReleaseZombie cImmediateTransitioner ToRevival cImmediateTransitioner ToRightHaymaker cImmediateTransitioner ToRightHookPunch cImmediateTransitioner ToRollableIdle cImmediateTransitioner ToRollableMove cImmediateTransitioner ToRollableMovingToIdle cImmediateTransitioner ToRun cImmediateTransitioner ToRun180LeftFoot cImmediateTransitioner ToRun180RightFoot cImmediateTransitioner ToRunJumpA cImmediateTransitioner ToRunJumpB cImmediateTransitioner ToRunningClimbUp cImmediateTransitioner ToRunningLedgeJump cImmediateTransitioner ToRunningLedgeJumpHang cImmediateTransitioner ToRunningStepUp cImmediateTransitioner ToRunningVault cImmediateTransitioner ToRunningVaultToFreefall cImmediateTransitioner ToRunPushAside cImmediateTransitioner ToRunPushWithNPC cImmediateTransitioner ToRunToIdle cImmediateTransitioner ToRunToIdleWithNPC cImmediateTransitioner ToRunToIdleWithPhone cImmediateTransitioner ToRunToPlantPike cImmediateTransitioner ToRunWithNPC cImmediateTransitioner ToRunWithPhone cImmediateTransitioner ToSaveProgress cImmediateTransitioner ToSClimb cImmediateTransitioner ToSCryForHelp cImmediateTransitioner ToSDead cImmediateTransitioner ToSEat cImmediateTransitioner ToSelf cImmediateTransitioner ToSEnterPushable cImmediateTransitioner ToSEnterVehicle cImmediateTransitioner ToSExitPushable cImmediateTransitioner ToSExitVehicle cImmediateTransitioner ToSFatalHitReaction cImmediateTransitioner ToSGiveObject cImmediateTransitioner ToSHitReaction cImmediateTransitioner ToSIdleAimShootGun cImmediateTransitioner ToSIdleHandMelee cImmediateTransitioner ToSIdleToIdleAimGun cImmediateTransitioner ToSIdleToRun cImmediateTransitioner ToSIntoWeepingOverBody cImmediateTransitioner ToSit cImmediateTransitioner ToSkateboardBrake cImmediateTransitioner ToSkateboardCrouch cImmediateTransitioner ToSkateboardDownStairs cImmediateTransitioner ToSkateboardFreefall cImmediateTransitioner ToSkateboardGetOff cImmediateTransitioner ToSkateboardGetOn cImmediateTransitioner ToSkateboardJump cImmediateTransitioner ToSkateboardLand cImmediateTransitioner ToSkateboardPump cImmediateTransitioner ToSkateboardRide cImmediateTransitioner ToSkateboardUpStairs cImmediateTransitioner ToSlotMachineLose cImmediateTransitioner ToSlotMachinePush cImmediateTransitioner ToSlotMachineWin cImmediateTransitioner ToSNatureEventReaction cImmediateTransitioner ToSnowflakeCringe cImmediateTransitioner ToSnowflakeDead cImmediateTransitioner ToSnowflakeEatFood cImmediateTransitioner ToSnowflakeHighPounce cImmediateTransitioner ToSnowflakeHitReaction cImmediateTransitioner ToSnowflakeLoungeToIdle cImmediateTransitioner ToSnowflakeMelee cImmediateTransitioner ToSnowflakePounce cImmediateTransitioner ToSnowflakeRoar cImmediateTransitioner ToSnowflakeSniffFood cImmediateTransitioner ToSpit cImmediateTransitioner ToSPivot cImmediateTransitioner ToSPreJoin cImmediateTransitioner ToSPushThrough cImmediateTransitioner ToSReceiveObject cImmediateTransitioner ToSRescuedIdle cImmediateTransitioner ToSRunToIdle cImmediateTransitioner ToSScaredDefection cImmediateTransitioner ToSStepBack cImmediateTransitioner ToSStepToIdle cImmediateTransitioner ToSStraightFreeFall cImmediateTransitioner ToStandeeEnter cImmediateTransitioner ToStandingClimbUp cImmediateTransitioner ToStandingVault cImmediateTransitioner ToStartCharge cImmediateTransitioner ToStepToIdle cImmediateTransitioner ToStepToIdleWithNPC cImmediateTransitioner ToStepToIdleWithPhone cImmediateTransitioner ToSThankPlayer cImmediateTransitioner ToStomp cImmediateTransitioner ToStrafe135Left cImmediateTransitioner ToStrafe135Right cImmediateTransitioner ToStrafe45Left cImmediateTransitioner ToStrafe45Right cImmediateTransitioner ToStrafeBackward cImmediateTransitioner ToStrafeForward cImmediateTransitioner ToStrafeLeft cImmediateTransitioner ToStrafeRight cImmediateTransitioner ToStrafeRun135Left cImmediateTransitioner ToStrafeRun135Right cImmediateTransitioner ToStrafeRun45Left cImmediateTransitioner ToStrafeRun45Right cImmediateTransitioner ToStrafeRunBackward cImmediateTransitioner ToStrafeRunForward cImmediateTransitioner ToStrafeRunLeft cImmediateTransitioner ToStrafeRunRight cImmediateTransitioner ToStraightFreefall cImmediateTransitioner ToSullivanAimToIdle cImmediateTransitioner ToSullivanBlockIdle cImmediateTransitioner ToSullivanClearout cImmediateTransitioner ToSullivanDeathReaction cImmediateTransitioner ToSullivanDeathReaction_FromShooting cImmediateTransitioner ToSullivanDodgeRoll cImmediateTransitioner ToSullivanHitReaction cImmediateTransitioner ToSullivanIdleInteractionToIdle cImmediateTransitioner ToSullivanIdleToAim cImmediateTransitioner ToSullivanKickProp cImmediateTransitioner ToSullivanLocomotion cImmediateTransitioner ToSullivanMelee cImmediateTransitioner ToSullivanMeleeLocomotion cImmediateTransitioner ToSullivanMeleeSpecial cImmediateTransitioner ToSullivanReload cImmediateTransitioner ToSullivanShoot cImmediateTransitioner ToSullivanThrowFlare cImmediateTransitioner ToSullivanThrowSuccess cImmediateTransitioner ToSullivanVulnerableIdleToIdle cImmediateTransitioner ToSurvivorLightWeaponAttack cImmediateTransitioner ToSurvivorStruggleWithZombieEngaged cImmediateTransitioner ToSWaveAtPlayer cImmediateTransitioner ToSwingKick cImmediateTransitioner ToSwingThrough cImmediateTransitioner ToThrow cImmediateTransitioner ToThrowIdleToIdle cImmediateTransitioner ToThrowQuick cImmediateTransitioner ToToCowardIdle cImmediateTransitioner ToTossZombie cImmediateTransitioner ToTrainThugDrop cImmediateTransitioner ToTrainThugThrow cImmediateTransitioner ToTwinsCharge cImmediateTransitioner ToTwinsClearout cImmediateTransitioner ToTwinsDeath cImmediateTransitioner ToTwinsDodge cImmediateTransitioner ToTwinsFlipAttackFinish cImmediateTransitioner ToTwinsFlipAttackStart cImmediateTransitioner ToTwinsHitReaction cImmediateTransitioner ToTwinsKnockDown cImmediateTransitioner ToTwinsKnockDownFinish cImmediateTransitioner ToTwinsKnockDownHit cImmediateTransitioner ToTwinsLocomotion cImmediateTransitioner ToTwinsMelee cImmediateTransitioner ToTwinsP1Taunt cImmediateTransitioner ToTwinsPaintingBreakout cImmediateTransitioner ToTwinsPaintingHitReaction cImmediateTransitioner ToTwinsSlash cImmediateTransitioner ToTwinsStomp cImmediateTransitioner ToTwinsStompPlayer cImmediateTransitioner ToUB_Throw cImmediateTransitioner ToUntie cImmediateTransitioner ToVehicleEjection_Eject cImmediateTransitioner ToVehicleEjection_Impact cImmediateTransitioner ToVomit cImmediateTransitioner ToWalk cImmediateTransitioner ToWalkStepToIdle cImmediateTransitioner ToWalkStepToIdleWithPhone cImmediateTransitioner ToWalkToIdle cImmediateTransitioner ToWalkToIdleWithPhone cImmediateTransitioner ToWalkToPlantPike cImmediateTransitioner ToWalkWithPhone cImmediateTransitioner ToWalkWithZombie cImmediateTransitioner ToWeaponLost cImmediateTransitioner ToWeaponStomp cImmediateTransitioner ToWeaponTurnOn cImmediateTransitioner ToZoltarMachineEnter cImmediateTransitioner ToZombieBreakFree cImmediateTransitioner ToZombieDead cImmediateTransitioner ToZombieHitReaction cImmediateTransitioner ToZombieWalk |
AssetName[]
AssetName = "Alert" AssetName = "AssetName" AssetName = "AttackLight" AssetName = "AttackMedium" AssetName = "Bite" AssetName = "BloodDecalLight" AssetName = "BodyDrag" AssetName = "BodyExplode" AssetName = "BodyFall" AssetName = "BodyFallBloody" AssetName = "BodyFallHead" AssetName = "BoykinAttackLight" AssetName = "BoykinAttackMedium" AssetName = "BoykinAttacksZombiesShort" AssetName = "BoykinDeath" AssetName = "BoykinFatalHitReaction" AssetName = "BoykinGetup" AssetName = "BoykinHitReactionLight" AssetName = "BoykinHitReactionMedium" AssetName = "BoykinThrowPlayer" AssetName = "CallForHelp" AssetName = "CfoleyArmFast" AssetName = "CfoleyArmMed" AssetName = "CfoleyArmSlow" AssetName = "CfoleyLegFast" AssetName = "CfoleyLegKick" AssetName = "CfoleyLegMed" AssetName = "CfoleyLegMedium" AssetName = "CfoleyLegSlow" AssetName = "CfoleyTorsoFast" AssetName = "CfoleyTorsoMed" AssetName = "CfoleyTorsoSlow" AssetName = "CfolyArmFast" AssetName = "CfolyeLegSlow" AssetName = "ChefAttackHeavy" AssetName = "ChefAttackLight" AssetName = "ChefAttackMedium" AssetName = "ChefEat" AssetName = "ChefFatalHitReaction" AssetName = "ChefHitReactionHeavy" AssetName = "ChefHitReactionLight" AssetName = "ChefHitReactionMedium" AssetName = "ChefThrow" AssetName = "ChuckChuckle" AssetName = "ChuckClothes" AssetName = "ChuckClothesArthur" AssetName = "ChuckClothesBillyBoy" AssetName = "ChuckClothesKen" AssetName = "ChuckClothesProto" AssetName = "ChuckClothesWomens" AssetName = "ChuckClothesYouth" AssetName = "ChuckComboCard" AssetName = "ChuckEmotePositive" AssetName = "ChuckFoodPositive" AssetName = "ChuckHmm" AssetName = "ChuckLaugh" AssetName = "ChuckLose" AssetName = "ChuckWeaponBreak" AssetName = "ChuckWin" AssetName = "ClothJogDR1" AssetName = "ComboSuccess" AssetName = "CoughBig" AssetName = "CoughMed" AssetName = "CoughSmall" AssetName = "CoughSpit" AssetName = "CrashBikeHit" AssetName = "CrashBikeRoll" AssetName = "CrunchZombieBack" AssetName = "Death" AssetName = "DeathBig" AssetName = "DeathFast" AssetName = "DeathScream" AssetName = "DeviantDizzy" AssetName = "DeviantHeavyEffort" AssetName = "DeviantHitReactionBig" AssetName = "DeviantHitReactionMed" AssetName = "DeviantHitReactionSmall" AssetName = "DeviantLightEffort" AssetName = "DeviantMediumEffort" AssetName = "DeviantThrust" AssetName = "DirectPeopleToSafeHouse" AssetName = "DragonPunch" AssetName = "Eating" AssetName = "EatingBite" AssetName = "Falling" AssetName = "FlameWhoosh" AssetName = "FleshyHit" AssetName = "FtpspRunLeft" AssetName = "FtsoRunLeft" AssetName = "FtspPivot" AssetName = "FtspRunHardLeft" AssetName = "FtspRunHardRight" AssetName = "FtspRunLeft" AssetName = "FtspRunRight" AssetName = "FtspRunSoftLeft" AssetName = "FtspRunSoftRight" AssetName = "FtspRunSoftRIght" AssetName = "FtspScuff" AssetName = "FtspSlide" AssetName = "FtspWaklRight" AssetName = "FtspWalkHardLeft" AssetName = "FtspWalkHardRight" AssetName = "FtspwalkLeft" AssetName = "FtspWalkLeft" AssetName = "FtspWalkRight" AssetName = "FtspWalkSoftLeft" AssetName = "FtspWalkSoftRight" AssetName = "fx_antoinebattle.big/BodyHitBig.sfx" AssetName = "fx_antoinebattle.big/BodyHitGrab.sfx" AssetName = "fx_antoinebattle.big/EatForceFeed.sfx" AssetName = "fx_antoinebattle.big/EatSloppy.sfx" AssetName = "fx_antoinebattle.big/MaleChoke.sfx" AssetName = "fx_arenabackstage.big/GateSurvHit.sfx" AssetName = "fx_arenabackstage.big/GateSurvShake.sfx" AssetName = "fx_bathroom.big/SaveZipper.sfx" AssetName = "fx_bathroom.big/UrinalFlush.sfx" AssetName = "fx_boykinbattle.big/BodyHitSmash.sfx" AssetName = "fx_boykinbattle.big/BodySlide1.sfx" AssetName = "fx_boykinbattle.big/ClothGrab.sfx" AssetName = "fx_boykinbattle.big/ClothThrow.sfx" AssetName = "fx_boykinbattle.big/Grab.sfx" AssetName = "fx_boykinmachinegun.big/MachineGunClipOut.sfx" AssetName = "fx_bride.big/BrideCries.sfx" AssetName = "fx_case64.big/GeneratorAssembly.sfx" AssetName = "fx_cfoleyknightarmourchest.big/KnightArmourBreak.sfx" AssetName = "fx_chefknife.big/ChefKnifeHitBodyBig.sfx" AssetName = "fx_chefknife.big/ChefKnifeStabOut.sfx" AssetName = "fx_deviant.big/BrideHitReaction.sfx" AssetName = "fx_deviant.big/BrideStruggle.sfx" AssetName = "fx_door.big/DoorRoundHandleOpen.sfx" AssetName = "fx_dumbell.big/DumbellHitHardSurface.sfx" AssetName = "fx_food.big/BaggedFoodEatAnim.sfx" AssetName = "fx_food.big/HamburgerEat.sfx" AssetName = "fx_ftspdefault.big/FtspGyroscopeLeft.sfx" AssetName = "fx_ftspdefault.big/FtspGyroscopeRight.sfx" AssetName = "fx_ftsplite.big/FtspRunHardLeftBarefeetCeramicLite.sfx" AssetName = "fx_ftsplite.big/FtspRunHardRightBarefeetCeramicLite.sfx" AssetName = "fx_ftsplite.big/FtspRunLeftBarefeetCeramicLite.sfx" AssetName = "fx_ftsplite.big/FtspRunRightBarefeetCeramicLite.sfx" AssetName = "fx_ftsplite.big/FtspRunSoftLeftBarefeetCeramicLite.sfx" AssetName = "fx_golfball.big/GolfballHitClub.sfx" AssetName = "fx_grenade/GrenadeDetonate.sfx" AssetName = "fx_hangman.big/HandSlapWeapon.sfx" AssetName = "fx_hangman.big/HangmanGruntClearOut.sfx" AssetName = "fx_hangman.big/HolsterIn.sfx" AssetName = "fx_hangman.big/HolsterOut.sfx" AssetName = "fx_hangman.big/MaleChoke.sfx" AssetName = "fx_hangman.big/RopeStretch.sfx" AssetName = "fx_hangman.big/RopeThrow.sfx" AssetName = "fx_hangman.big/RopeTwirl.sfx" AssetName = "fx_hangmanclub.big/HangmanClubHitBody.sfx" AssetName = "fx_hangmanclub.big/HangmanClubHitBodyBig.sfx" AssetName = "fx_hangmanclub.big/HangmanClubSwing1.sfx" AssetName = "fx_hangmanclub.big/HangmanClubSwing2.sfx" AssetName = "fx_hummer.big/HummerDoorClose.sfx" AssetName = "fx_hummer.big/HummerDoorOpen.sfx" AssetName = "fx_main.big/BloodSquirtSprayHeavy.sfx" AssetName = "fx_main.big/SubStabPullout.sfx" AssetName = "fx_mascotbattle.big/MascotSkates_RollCharge.sfx" AssetName = "fx_mascotbattle.big/MascotSkates_RollFast.sfx" AssetName = "fx_mascotbattle.big/MascotSkates_RollPivot.sfx" AssetName = "fx_mascotbattle.big/MascotSkates_RollSlow.sfx" AssetName = "fx_mascotbattle.big/MascotSkates_RollSpin.sfx" AssetName = "fx_mascotbattle.big/MascotSkates_RollStop.sfx" AssetName = "fx_mascotbattle.big/MascotSkates_Step.sfx" AssetName = "fx_mascotbattle.big/MascotSkates_StepFast.sfx" AssetName = "fx_mascotbattle.big/MascotSkates_StepSoft.sfx" AssetName = "fx_mascotmask.big/MascotMaskAttachBody.sfx" AssetName = "fx_mascotmask.big/MascotMaskDetachBody.sfx" AssetName = "fx_metalbaseballbat.big/BaseballHitMetalBat.sfx" AssetName = "fx_poker.big/minigamePokerCardDown.sfx" AssetName = "fx_poker.big/minigamePokerCardPickUp.sfx" AssetName = "fx_poker.big/minigamePokerChairCreakBack.sfx" AssetName = "fx_poker.big/minigamePokerChairCreakForward.sfx" AssetName = "fx_poker.big/minigamePokerChipDownHeavy.sfx" AssetName = "fx_poker.big/minigamePokerChipGrabHeavy.sfx" AssetName = "fx_poker.big/minigamePokerChipGrabLight.sfx" AssetName = "fx_poker.big/minigamePokerChipInLarge.sfx" AssetName = "fx_poker.big/minigamePokerChipInSmall.sfx" AssetName = "fx_poker.big/minigamePokerTableHit.sfx" AssetName = "fx_poker.big/minigamePokerTableKnock.sfx" AssetName = "fx_queenbeejar.big/HeadExplodeQueen.sfx" AssetName = "fx_sixshooter.big/TwirlWhoosh.sfx" AssetName = "fx_skateboard.big/SkateboardJump.sfx" AssetName = "fx_skateboard.big/SkateboardKickUp.sfx" AssetName = "fx_skateboard.big/SkateboardLand.sfx" AssetName = "fx_skateboard.big/SkateboardSqueak.sfx" AssetName = "fx_skateboard.big/SkateboardSqueakFast.sfx" AssetName = "fx_sniperbossgun.big/SniperBossGunGrab.sfx" AssetName = "fx_sniperbossgun.big/SniperBossGunPickup.sfx" AssetName = "fx_sniperbossgun.big/SniperBossGunReload.sfx" AssetName = "fx_soccerball.big/SoccerBallKick.sfx" AssetName = "fx_sportscar.big/SportsCarDoorClose.sfx" AssetName = "fx_sportscar.big/SportsCarDoorOpen.sfx" AssetName = "fx_spraypaint.big/SpraypaintCarry.sfx" AssetName = "fx_spraypaint.big/SpraypaintCarryBig.sfx" AssetName = "fx_spraypaint.big/SpraypaintPickup.sfx" AssetName = "fx_teddybearsentrygun.big/TeddyBearSentryGunButton.sfx" AssetName = "fx_teddybearsentrygun.big/TeddyBearSentryGunTalk.sfx" AssetName = "fx_tiger.big/TigerExhaleSlow.sfx" AssetName = "fx_tiger.big/TigerHitReaxLight.sfx" AssetName = "fx_tiger.big/TigerHitReaxMed.sfx" AssetName = "fx_tiger.big/TigerIdleExhale.sfx" AssetName = "fx_tiger.big/TigerIdleInhale.sfx" AssetName = "fx_tiger.big/TigerInhaleSlow.sfx" AssetName = "fx_tiger.big/TigerMeleeSwipe.sfx" AssetName = "fx_tiger.big/TigerMeleeTear.sfx" AssetName = "fx_tiger.big/TigerPounceFail.sfx" AssetName = "fx_tiger.big/TigerPounceSuccess.sfx" AssetName = "fx_tiger.big/TigerRunExhale.sfx" AssetName = "fx_tiger.big/TigerRunInhale.sfx" AssetName = "fx_tiger.big/TigerSwipeNoInhale.sfx" AssetName = "fx_tk_ot_battle.big/BodyHitGrab.sfx" AssetName = "fx_tk_ot_battle.big/BodyHitSmash.sfx" AssetName = "fx_twinsbattle.big/DressSequinMetalBig.sfx" AssetName = "fx_twinsbattle.big/DressSequinMetalMed.sfx" AssetName = "fx_twinsbattle.big/DressSequinMetalSmall.sfx" AssetName = "fx_twinsbattle.big/NutCrunch.sfx" AssetName = "fx_twinsbattle.big/TwinFlip1.sfx" AssetName = "fx_twinsbattle.big/TwinFlip2.sfx" AssetName = "fx_twinsbattle.big/TwinSlide.sfx" AssetName = "fx_wheelchair.big/WheelchairHitHardSurface.sfx" AssetName = "fx_workbench.big/DuctTape.sfx" AssetName = "fx_zombrex.big/ZombrexUse.sfx" AssetName = "GainsHp" AssetName = "Getup" AssetName = "Grapple" AssetName = "GrappleEndPush" AssetName = "GrappleGrowlLong" AssetName = "GrappleGrowlMed" AssetName = "GrappleGrowlShort" AssetName = "GrappleInhaleQuick" AssetName = "GrappleLarge" AssetName = "GrappleMedium" AssetName = "GrappleSmall" AssetName = "Grunt" AssetName = "GruntBigExhale" AssetName = "GruntSnortyHighPitch" AssetName = "HangmanAttackHeavy" AssetName = "HangmanAttackLight" AssetName = "HangmanAttackMedium" AssetName = "HangmanDeath" AssetName = "HangmanHitReactionFatal" AssetName = "HangmanHitReactionLight" AssetName = "HangmanHitReactionMedium" AssetName = "HangmanLift" AssetName = "HangmanTaunt1" AssetName = "HeadExplode" AssetName = "-helditem-AttachBody" AssetName = "-helditem-Blade" AssetName = "-helditem-Burn" AssetName = "-helditem-Carry" AssetName = "-helditem-CarryBig" AssetName = "-helditem-Catch" AssetName = "-helditem-CfoleyTorsoSlow" AssetName = "-helditem-ClipIn" AssetName = "-helditem-ClipInSmack" AssetName = "-helditem-ClipOut" AssetName = "-helditem-Cock" AssetName = "-helditem-CockSlide" AssetName = "-helditem-DetachBody" AssetName = "-helditem-Detonate" AssetName = "-helditem-Drink" AssetName = "-helditem-Eat" AssetName = "-helditem-Grunt" AssetName = "-helditem-HitAcct" AssetName = "-helditem-HitBall" AssetName = "-helditem-HitBody" AssetName = "-helditem-HitBodyBig" AssetName = "-helditem-HitBodyBlock" AssetName = "-helditem-HitHardSurface" AssetName = "-helditem-HitHardSurface.sfx" AssetName = "-helditem-HitSoftSurface" AssetName = "-helditem-Open" AssetName = "-helditem-Pickup" AssetName = "-helditem-PullStart" AssetName = "-helditem-Reload" AssetName = "-helditem-Shot" AssetName = "-helditem-Snort" AssetName = "-helditem-StabOut" AssetName = "-helditem-Stretch" AssetName = "-helditem-StretchRelease" AssetName = "-helditem-Swing" AssetName = "-helditem-Swing1" AssetName = "-helditem-Swing2" AssetName = "-helditem-Swing3" AssetName = "-helditem-Swing4" AssetName = "-helditem-Throw" AssetName = "HitReactionFatal" AssetName = "HitReactionHeavy" AssetName = "HitReactionLight" AssetName = "HitReactionMedium" AssetName = "HitReactionWind" AssetName = "HoistEnd" AssetName = "HoistStart" AssetName = "HumanAttackKick" AssetName = "HumanAttackPunch" AssetName = "HumanAttackPunch1" AssetName = "HumanAttackPunch2" AssetName = "HurricaneKick" AssetName = "Idle" AssetName = "IdleExhale" AssetName = "IdleInhale" AssetName = "IdleInjured" AssetName = "InhaleFast" AssetName = "InjuredExhale" AssetName = "Jog" AssetName = "KateySafehouse" AssetName = "KateySickKatey" AssetName = "KickVocal" AssetName = "LiftHeavy" AssetName = "LimbExplode" AssetName = "LooterAwareness" AssetName = "LooterIdle" AssetName = "Lunge" AssetName = "MagBombAttackHeavy" AssetName = "MagBombAttackMedium" AssetName = "MagBombAttackPrep" AssetName = "MagBombDeath" AssetName = "MagBombGetup" AssetName = "MagBombHitReactionHeavy" AssetName = "MagBombHitReactionLight" AssetName = "MagBombHitReactionMedium" AssetName = "MagChaseAttackHeavy" AssetName = "MagChaseAttackLight" AssetName = "MagChaseAttackMedium" AssetName = "MagChaseDeath" AssetName = "MagChaseHitReactionFatal" AssetName = "MagChaseHitReactionLight" AssetName = "MagChaseHitReactionMedium" AssetName = "MagChaseJump" AssetName = "MakeComboItem" AssetName = "MascotAttackHeavy" AssetName = "MascotAttackMedium" AssetName = "MascotGetup" AssetName = "MascotHitReactionFatal" AssetName = "MascotHitReactionHeavy" AssetName = "MascotHitReactionLight" AssetName = "MascotHitReactionMedium" AssetName = "MascotJump" AssetName = "MascotLand" AssetName = "MercHandWave" AssetName = "MercIdle" AssetName = "MercTarget" AssetName = "MilitiaAttackHeavy" AssetName = "MilitiaAttackMedium" AssetName = "MilitiaHitReactionFatal" AssetName = "MilitiaHitReactionHeavy" AssetName = "MilitiaHitReactionLight" AssetName = "MilitiaHitReactionMedium" AssetName = "MoosePaw" AssetName = "PanicGrowlLong" AssetName = "PanicGrowlMed" AssetName = "PanicGrowlQuick" AssetName = "PileDriver" AssetName = "Pivot" AssetName = "PokerAllIn" AssetName = "PokerCall" AssetName = "PokerCheck" AssetName = "PokerFoldHi" AssetName = "PokerFoldLo" AssetName = "PokerFoldLow" AssetName = "PokerOut" AssetName = "PokerRaiseHi" AssetName = "PokerRaiseLo" AssetName = "PokerWin" AssetName = "PostmanAttackHeavy" AssetName = "PostmanAttackMedium" AssetName = "PostmanHitReactionHeavy" AssetName = "PostmanHitReactionLight" AssetName = "PostmanHitReactionMedium" AssetName = "PostmanThrow" AssetName = "ProtestorAttackMedium" AssetName = "ProtestorDeath" AssetName = "ProtestorExhale" AssetName = "ProtestorGetup" AssetName = "ProtestorHitReactionFatal" AssetName = "ProtestorHitReactionLight" AssetName = "ProtestorHitReactionMedium" AssetName = "ProtestorInhale" AssetName = "ProtestorLick" AssetName = "ProtestorTakeoff" AssetName = "PsychoAttack" AssetName = "PsychoBoykinBattleCry" AssetName = "PsychoBoykinGrenade" AssetName = "PsychoBoykinReload" AssetName = "PsychoBoykinStomp" AssetName = "PsychoBoykinTossChuck" AssetName = "PsychoChefFoodShovel" AssetName = "PsychoChuckHealthLoss" AssetName = "PsychoDeviantCharge" AssetName = "PsychoDeviantPelvicThrust" AssetName = "PsychoDeviantScream" AssetName = "PsychoHangmanHandWave" AssetName = "PsychoHealthLoss" AssetName = "PsychoMagicianCharge" AssetName = "PsychoMascotCharge" AssetName = "PsychoMascotFlameOut" AssetName = "PsychoMascotHatChuck" AssetName = "PsychoMascotLaugh" AssetName = "PsychoMascotSits" AssetName = "PsychoPostmanChuckHL" AssetName = "PsychoProtestorHideFace" AssetName = "PsychoProtestorScream" AssetName = "PsychoSullivanRadio" AssetName = "PsychoTKCharge" AssetName = "PsychoTKComeOn" AssetName = "PsychoTKKickWinch" AssetName = "PsychoTKLaugh" AssetName = "PsychoTKSaveThem" AssetName = "PsychoTKTauntShort" AssetName = "PsychoTKTheMan" AssetName = "PsychoTwinsCharge" AssetName = "PsychoTwinsGiggle" AssetName = "PsychoTwinsShimmy" AssetName = "PsychoTwinsStepGrind" AssetName = "PsychoTwinsTaunt" AssetName = "PsychoUltimateFanCelebrate" AssetName = "PsychoUltimateFanMiss" AssetName = "PsychoUltimateFanStuck" AssetName = "PukeEnd" AssetName = "PukeStart" AssetName = "PunchVocal" AssetName = "Push" AssetName = "RebeccaCall" AssetName = "RebeccaCamera" AssetName = "RunInjured" AssetName = "RunSoftRight" AssetName = "SeveredBodyPartHitsGround" AssetName = "ShakeDrink" AssetName = "StaceySafehouse" AssetName = "Stickable" AssetName = "SullivanAttackHeavy" AssetName = "SullivanAttackLight" AssetName = "SullivanAttackMedium" AssetName = "SullivanDeath" AssetName = "SullivanHitReactionHeavy" AssetName = "SullivanHitReactionLight" AssetName = "SullivanHitReactionMedium" AssetName = "SullivanJump" AssetName = "SullivanStruggle" AssetName = "SurvivorAffirmation" AssetName = "SurvivorApology" AssetName = "SurvivorBobWave" AssetName = "SurvivorCries" AssetName = "SurvivorDeathScream" AssetName = "SurvivorGratitude" AssetName = "SurvivorHappiness" AssetName = "SurvivorHelp" AssetName = "SurvivorLaugh" AssetName = "SurvivorSadness" AssetName = "SurvivorScared" AssetName = "SurvivorScream" AssetName = "SurvivorWait" AssetName = "SwingHeavy" AssetName = "Swipe" AssetName = "SwishLargeLong" AssetName = "ThrowUpLarge" AssetName = "ThrowUpSmall" AssetName = "TigerEatFood" AssetName = "TigerGetup" AssetName = "TigerLayDown" AssetName = "TigerLounge" AssetName = "TigerMaul" AssetName = "TigerRoar" AssetName = "TigerSniff" AssetName = "TKAttackHeavy" AssetName = "TKAttackLight" AssetName = "TKAttackMedium" AssetName = "TKDeath" AssetName = "TKGetup" AssetName = "TKHitReactionHeavy" AssetName = "TKHitReactionLight" AssetName = "TKHitReactionMedium" AssetName = "TKJump" AssetName = "TKMicHitBody" AssetName = "TKMicHitBodyBig" AssetName = "TKMicHitBodyBlock" AssetName = "TKMicHitHardSurface" AssetName = "TKMicPickup" AssetName = "TKMicSwing1" AssetName = "TKMicSwing2" AssetName = "TKMicSwing3" AssetName = "TwinsAttackHeavy" AssetName = "TwinsAttackMedium" AssetName = "TwinsGetup" AssetName = "TwinsHitReactionHeavy" AssetName = "TwinsHitReactionLight" AssetName = "TwinsHitReactionMedium" AssetName = "TwinsJump" AssetName = "TwinsLift" AssetName = "TwinsStruggleLg" AssetName = "TwinsStruggleSm" AssetName = "UltimateFanFling" AssetName = "UltimateFanHitReactionMed" AssetName = "UltimateFanSlice" AssetName = "UltimateFanStuck" AssetName = "VomitEnd" AssetName = "VomitStart" AssetName = "Walk" AssetName = "WinchSlipInterrupt" AssetName = "WinchUpSlow_1" AssetName = "WinchUpSlow_2" AssetName = "WinchUpSlow_3" AssetName = "X1Attack" AssetName = "X2Attack" AssetName = "Y1Attack" AssetName = "ZanLaugh" AssetName = "ZanThrow" AssetName = "ZombieBites" AssetName = "ZombieEatBite" AssetName = "ZombieEatBiteTear" AssetName = "ZombieEatBiteTearBig" AssetName = "ZombieEatHollow" AssetName = "ZombieImpactHeavyPunch" AssetName = "ZombieImpactLightPunch" AssetName = "ZombieImpactRoundhouse" |
cChooserEntryInt[]
# cChooserEntryInt 4385 cChooserEntryInt 2handed cChooserEntryInt abovelaw_male_waving560078 cChooserEntryInt air_horn_idle_to_loop20562 cChooserEntryInt air_horn_loop_to_idle330890 cChooserEntryInt air_horn_loop380203 cChooserEntryInt air_horn_loop530187 cChooserEntryInt air_horn_loop928 cChooserEntryInt airhorn_a10897 cChooserEntryInt ambient510220 cChooserEntryInt ambients190217 cChooserEntryInt Anger310500 cChooserEntryInt AnimGroup10010000 cChooserEntryInt AnimGroup1013100013 cChooserEntryInt AnimGroup101880218 cChooserEntryInt AnimGroup1031 cChooserEntryInt AnimGroup1049100049 cChooserEntryInt AnimGroup107340673 cChooserEntryInt AnimGroup1075 cChooserEntryInt AnimGroup108610986 cChooserEntryInt AnimGroup110140701 cChooserEntryInt AnimGroup110160501 cChooserEntryInt AnimGroup11110011 cChooserEntryInt AnimGroup112830828 cChooserEntryInt AnimGroup116420980 cChooserEntryInt AnimGroup1166110066 cChooserEntryInt AnimGroup118750687 cChooserEntryInt AnimGroup119360593 cChooserEntryInt AnimGroup123730937 cChooserEntryInt AnimGroup125990359 cChooserEntryInt AnimGroup1260 cChooserEntryInt AnimGroup127590390 cChooserEntryInt AnimGroup1306320266 cChooserEntryInt AnimGroup1326100326 cChooserEntryInt AnimGroup134070640 cChooserEntryInt AnimGroup136780567 cChooserEntryInt AnimGroup1396110296 cChooserEntryInt AnimGroup140980609 cChooserEntryInt AnimGroup142580625 cChooserEntryInt AnimGroup143190546 cChooserEntryInt AnimGroup143470734 cChooserEntryInt AnimGroup1465130165 cChooserEntryInt AnimGroup146780683 cChooserEntryInt AnimGroup146850968 cChooserEntryInt AnimGroup1512120312 cChooserEntryInt AnimGroup1571140171 cChooserEntryInt AnimGroup1603140203 cChooserEntryInt AnimGroup1606 cChooserEntryInt AnimGroup160670906 cChooserEntryInt AnimGroup1609150109 cChooserEntryInt AnimGroup1615160015 cChooserEntryInt AnimGroup1621120421 cChooserEntryInt AnimGroup1665 cChooserEntryInt AnimGroup1675130375 cChooserEntryInt AnimGroup1693110593 cChooserEntryInt AnimGroup169390750 cChooserEntryInt AnimGroup172890828 cChooserEntryInt AnimGroup1756130456 cChooserEntryInt AnimGroup1890100890 cChooserEntryInt AnimGroup1912160312 cChooserEntryInt AnimGroup1928160328 cChooserEntryInt AnimGroup1956130656 cChooserEntryInt AnimGroup1978140578 cChooserEntryInt AnimGroup1981120781 cChooserEntryInt AnimGroup1993190093 cChooserEntryInt AnimGroup1996170296 cChooserEntryInt AnimGroup2015200015 cChooserEntryInt AnimGroup2025190125 cChooserEntryInt AnimGroup2030110930 cChooserEntryInt AnimGroup2031150531 cChooserEntryInt AnimGroup2096130812 cChooserEntryInt AnimGroup2135150635 cChooserEntryInt AnimGroup2140200140 cChooserEntryInt AnimGroup2143160543 cChooserEntryInt AnimGroup2168120968 cChooserEntryInt AnimGroup2175130875 cChooserEntryInt AnimGroup2175180375 cChooserEntryInt AnimGroup2203200203 cChooserEntryInt AnimGroup2228140828 cChooserEntryInt AnimGroup2260320266 cChooserEntryInt AnimGroup2310200310 cChooserEntryInt AnimGroup2340170640 cChooserEntryInt AnimGroup2356 cChooserEntryInt AnimGroup2363140963 cChooserEntryInt AnimGroup2393230125 cChooserEntryInt AnimGroup2396230765 cChooserEntryInt AnimGroup2415190515 cChooserEntryInt AnimGroup2428210328 cChooserEntryInt AnimGroup2428210359 cChooserEntryInt AnimGroup2443210343 cChooserEntryInt AnimGroup2475210375 cChooserEntryInt AnimGroup248248 cChooserEntryInt AnimGroup2490210390 cChooserEntryInt AnimGroup2571190671 cChooserEntryInt AnimGroup2578200578 cChooserEntryInt AnimGroup2618190718 cChooserEntryInt AnimGroup2631260031 cChooserEntryInt AnimGroup2643180843 cChooserEntryInt AnimGroup2646210546 cChooserEntryInt AnimGroup2684 cChooserEntryInt AnimGroup2696250437 cChooserEntryInt AnimGroup2718200718 cChooserEntryInt AnimGroup2733250233 cChooserEntryInt AnimGroup2735180935 cChooserEntryInt AnimGroup2756210656 cChooserEntryInt AnimGroup2875250375 cChooserEntryInt AnimGroup2893230593 cChooserEntryInt AnimGroup2912210812 cChooserEntryInt AnimGroup2915240515 cChooserEntryInt AnimGroup2921200921 //Changed ori 546 cChooserEntryInt AnimGroup2951270251 cChooserEntryInt AnimGroup2965230000 cChooserEntryInt AnimGroup2971 cChooserEntryInt AnimGroup2990260390 cChooserEntryInt AnimGroup2996270296 cChooserEntryInt AnimGroup3003230703 cChooserEntryInt AnimGroup3012 cChooserEntryInt AnimGroup3034230734 cChooserEntryInt AnimGroup3037210937 cChooserEntryInt AnimGroup3069300069 cChooserEntryInt AnimGroup3090220890 cChooserEntryInt AnimGroup3096 cChooserEntryInt AnimGroup3097220897 cChooserEntryInt AnimGroup3131310031 cChooserEntryInt AnimGroup3134 cChooserEntryInt AnimGroup3143280343 cChooserEntryInt AnimGroup3150 cChooserEntryInt AnimGroup3237280437 cChooserEntryInt AnimGroup3237280437 //Changed Original 534 cChooserEntryInt AnimGroup3243240843 cChooserEntryInt AnimGroup3300 cChooserEntryInt AnimGroup3311330011 cChooserEntryInt AnimGroup3334310234 cChooserEntryInt AnimGroup3337250837 cChooserEntryInt AnimGroup3375250875 cChooserEntryInt AnimGroup3416330116 cChooserEntryInt AnimGroup3446340046 cChooserEntryInt AnimGroup3453 cChooserEntryInt AnimGroup3475260875 cChooserEntryInt AnimGroup3496270796 cChooserEntryInt AnimGroup3503330203 cChooserEntryInt AnimGroup3521310421 cChooserEntryInt AnimGroup3525340125 cChooserEntryInt AnimGroup3528320328 cChooserEntryInt AnimGroup3559320359 cChooserEntryInt AnimGroup35620156 cChooserEntryInt AnimGroup359359 cChooserEntryInt AnimGroup3594 cChooserEntryInt AnimGroup3612110015 cChooserEntryInt AnimGroup3631 cChooserEntryInt AnimGroup3687350187 cChooserEntryInt AnimGroup3703300812 cChooserEntryInt AnimGroup3737320537 cChooserEntryInt AnimGroup3737330437 cChooserEntryInt AnimGroup3750350250 cChooserEntryInt AnimGroup3758320558 cChooserEntryInt AnimGroup3762320562 cChooserEntryInt AnimGroup3784280984 cChooserEntryInt AnimGroup3809 cChooserEntryInt AnimGroup3815360215 cChooserEntryInt AnimGroup385385 cChooserEntryInt AnimGroup3856370156 cChooserEntryInt AnimGroup3859300859 cChooserEntryInt AnimGroup3862 cChooserEntryInt AnimGroup3862380078 cChooserEntryInt AnimGroup3954380154 cChooserEntryInt AnimGroup3971330671 cChooserEntryInt AnimGroup3984300984 cChooserEntryInt AnimGroup4012370312 cChooserEntryInt AnimGroup4015 cChooserEntryInt AnimGroup4034380234 cChooserEntryInt AnimGroup4046 cChooserEntryInt AnimGroup4074350574 cChooserEntryInt AnimGroup4075400075 cChooserEntryInt AnimGroup4097340697 cChooserEntryInt AnimGroup4125400125 cChooserEntryInt AnimGroup4137370437 cChooserEntryInt AnimGroup4137370438 cChooserEntryInt AnimGroup4190380390 cChooserEntryInt AnimGroup4206380406 cChooserEntryInt AnimGroup4224350724 cChooserEntryInt AnimGroup4250 cChooserEntryInt AnimGroup4265 cChooserEntryInt AnimGroup4290330990 cChooserEntryInt AnimGroup4300430000 cChooserEntryInt AnimGroup4310 cChooserEntryInt AnimGroup4311380512 cChooserEntryInt AnimGroup4318360718 cChooserEntryInt AnimGroup4353390453 cChooserEntryInt AnimGroup4359400359 cChooserEntryInt AnimGroup4362430062 cChooserEntryInt AnimGroup4368 cChooserEntryInt AnimGroup4381360781 cChooserEntryInt AnimGroup4393380609 cChooserEntryInt AnimGroup4428410328 cChooserEntryInt AnimGroup4451400451 cChooserEntryInt AnimGroup4527390627 cChooserEntryInt AnimGroup4628430328 cChooserEntryInt AnimGroup4637420437 cChooserEntryInt AnimGroup4650440250 cChooserEntryInt AnimGroup4693460093 cChooserEntryInt AnimGroup4721430421 cChooserEntryInt AnimGroup4746470046 cChooserEntryInt AnimGroup4790390890 cChooserEntryInt AnimGroup4812400828 cChooserEntryInt AnimGroup4839450339 cChooserEntryInt AnimGroup4853390953 cChooserEntryInt AnimGroup4856440456 cChooserEntryInt AnimGroup4862430562 cChooserEntryInt AnimGroup4862480062 cChooserEntryInt AnimGroup4928 cChooserEntryInt AnimGroup4990300812 cChooserEntryInt AnimGroup5000450500 cChooserEntryInt AnimGroup5003 cChooserEntryInt AnimGroup5009460409 cChooserEntryInt AnimGroup5029 cChooserEntryInt AnimGroup5043420843 cChooserEntryInt AnimGroup5059440659 cChooserEntryInt AnimGroup5112480312 cChooserEntryInt AnimGroup5168470468 cChooserEntryInt AnimGroup5171375 cChooserEntryInt AnimGroup517517 cChooserEntryInt AnimGroup5179470494 cChooserEntryInt AnimGroup5233430933 cChooserEntryInt AnimGroup5235480435 cChooserEntryInt AnimGroup5256460656 cChooserEntryInt AnimGroup5268 cChooserEntryInt AnimGroup52820328 cChooserEntryInt AnimGroup5291500291 cChooserEntryInt AnimGroup5318460718 cChooserEntryInt AnimGroup5337490453 cChooserEntryInt AnimGroup5359450859 cChooserEntryInt AnimGroup5366470666 cChooserEntryInt AnimGroup5375500375 cChooserEntryInt AnimGroup5378480578 cChooserEntryInt AnimGroup5392480592 cChooserEntryInt AnimGroup5409530109 cChooserEntryInt AnimGroup5431540031 cChooserEntryInt AnimGroup5471480671 cChooserEntryInt AnimGroup5506460921 cChooserEntryInt AnimGroup5556490656 cChooserEntryInt AnimGroup5619520419 cChooserEntryInt AnimGroup5621470921 cChooserEntryInt AnimGroup5671550171 cChooserEntryInt AnimGroup5718550218 cChooserEntryInt AnimGroup5727560127 cChooserEntryInt AnimGroup5750500750 cChooserEntryInt AnimGroup5780540380 cChooserEntryInt AnimGroup5787540387 cChooserEntryInt AnimGroup5800580000 cChooserEntryInt AnimGroup5803560203 cChooserEntryInt AnimGroup5837540437 cChooserEntryInt AnimGroup5850490950 cChooserEntryInt AnimGroup5862530562 cChooserEntryInt AnimGroup59340194 cChooserEntryInt AnimGroup5961570266 cChooserEntryInt AnimGroup5984 cChooserEntryInt AnimGroup60060000 cChooserEntryInt AnimGroup6018580218 cChooserEntryInt AnimGroup6050300937 cChooserEntryInt AnimGroup6085 cChooserEntryInt AnimGroup6109550609 cChooserEntryInt AnimGroup6134590234 cChooserEntryInt AnimGroup6137570437 cChooserEntryInt AnimGroup6139520939 cChooserEntryInt AnimGroup6140550656 cChooserEntryInt AnimGroup61510515 cChooserEntryInt AnimGroup6164250324 cChooserEntryInt AnimGroup6181590281 cChooserEntryInt AnimGroup621 cChooserEntryInt AnimGroup6221530921 cChooserEntryInt AnimGroup6225560625 cChooserEntryInt AnimGroup6228540828 cChooserEntryInt AnimGroup6240560640 cChooserEntryInt AnimGroup6268530968 cChooserEntryInt AnimGroup6277590377 cChooserEntryInt AnimGroup6284580484 cChooserEntryInt AnimGroup6296550796 cChooserEntryInt AnimGroup6322550822 cChooserEntryInt AnimGroup6328550828 cChooserEntryInt AnimGroup6365560765 cChooserEntryInt AnimGroup6402570718 cChooserEntryInt AnimGroup6441590541 cChooserEntryInt AnimGroup6459580659 cChooserEntryInt AnimGroup6543570843 cChooserEntryInt AnimGroup6570580770 cChooserEntryInt AnimGroup6587590687 cChooserEntryInt AnimGroup6592250324 cChooserEntryInt AnimGroup6675580875 cChooserEntryInt AnimGroup71240328 cChooserEntryInt AnimGroup71520515 cChooserEntryInt AnimGroup750765 cChooserEntryInt AnimGroup78360183 cChooserEntryInt AnimGroup790 cChooserEntryInt AnimGroup87120671 cChooserEntryInt AnimGroup89610796 cChooserEntryInt AnimGroup91010810 cChooserEntryInt AnimGroup98120796 cChooserEntryInt AnimGroupWithGun cChooserEntryInt AnimGroupWithKnife cChooserEntryInt art_male_survivor_begging30226 cChooserEntryInt bankrun_hit_reaction300797 cChooserEntryInt barn_female_survivor_fire_panic60359 cChooserEntryInt barn_female_survivor_redneck_idle110235 cChooserEntryInt barn_male_survivor_fire_panic60359 cChooserEntryInt barn_male_survivor_redneck_idle150875 cChooserEntryInt battle_chef_attack_idle_to_throw_knives_loop190494 cChooserEntryInt battle_chef_attack_plate_spread_shot320244 cChooserEntryInt battle_chef_attack_throw_butcher_knives70319 cChooserEntryInt battle_chef_attack_throw_frying_pan420361 cChooserEntryInt battle_chef_attack_throw_knives_loop_to_idle550666 cChooserEntryInt battle_chef_attack_throw_knives_loop250869 cChooserEntryInt battle_chef_attack_throw_plates470783 cChooserEntryInt battle_chef_locomotion_block_idle_getting_hit110166 cChooserEntryInt battle_chef_locomotion_block_idle_getting_hit260338 cChooserEntryInt battle_chef_locomotion_block_idle_getting_hit400228 cChooserEntryInt battle_chef_locomotion_block_idle_getting_hit480431 cChooserEntryInt battle_chef_locomotion_death460468 cChooserEntryInt battle_chef_locomotion_death500359 cChooserEntryInt battle_chef_locomotion_death60953 cChooserEntryInt battle_chef_locomotion_idle220315 cChooserEntryInt battle_chef_locomotion_run_to_idle370062 cChooserEntryInt battle_chef_locomotion_run_to_pivot_180330761 cChooserEntryInt battle_chef_locomotion_run120954 cChooserEntryInt battle_chef_locomotion_walk310927 cChooserEntryInt battle_chef_transition_idle_to_run570281 cChooserEntryInt battle_chef_transition_idle_to_throw_plates150338 cChooserEntryInt battle_chef_transition_idle_to_throw_plates480275 cChooserEntryInt battle_chef_transition_pivot_180100296 cChooserEntryInt battle_chef_transition_pivot_180neg200421 cChooserEntryInt battle_chef_transition_pivot_90570796 cChooserEntryInt battle_chef_transition_pivot_90neg150265 cChooserEntryInt battle_chef_transition_throw_plates_to_idle520400 cChooserEntryInt battle_chef_transition_throw_plates_to_idle540369 cChooserEntryInt battle_deivant_idle cChooserEntryInt battle_deviant_charge cChooserEntryInt battle_deviant_charge_to_idle cChooserEntryInt battle_deviant_idle_chainsaw340338 cChooserEntryInt battle_deviant_idle_to_charge cChooserEntryInt battle_deviant_idle_to_charge_90 cChooserEntryInt battle_deviant_idle_to_charge_90neg cChooserEntryInt battle_deviant_idle_to_run cChooserEntryInt battle_deviant_idle_to_run_90 cChooserEntryInt battle_deviant_idle_to_run_90neg cChooserEntryInt battle_deviant_interaction_death490359 cChooserEntryInt battle_deviant_pivot_180 cChooserEntryInt battle_deviant_pivot_180neg cChooserEntryInt battle_deviant_pivot_90 cChooserEntryInt battle_deviant_pivot_90neg cChooserEntryInt battle_deviant_run cChooserEntryInt battle_deviant_run_to_charge cChooserEntryInt battle_deviant_run_to_idle cChooserEntryInt battle_fan_hitreaction_generic530765 cChooserEntryInt battle_fan_reaction_front_cheer420923 cChooserEntryInt battle_fan_reaction_front_jeer420908 cChooserEntryInt battle_fan_reaction_stuck430982 cChooserEntryInt battle_fan_reaction_stun440013 cChooserEntryInt battle_fan_stalled_bike_reaction130438 cChooserEntryInt battle_fan_taunt_stand_idle_1200572 cChooserEntryInt battle_mascot_idle cChooserEntryInt battle_mascot_idle_to_run_90 cChooserEntryInt battle_mascot_idle_to_run_90neg cChooserEntryInt battle_mascot_idle_to_run0 cChooserEntryInt battle_mascot_idle90604 cChooserEntryInt battle_mascot_run0 cChooserEntryInt battle_mascot_run0_to_idle cChooserEntryInt battle_mascot_turn180 cChooserEntryInt battle_mascot_turn180neg cChooserEntryInt battle_mascot_turn90 cChooserEntryInt battle_mascot_turn90neg cChooserEntryInt battle_sullivan_attack_sequence_2 cChooserEntryInt battle_sullivan_attack_sequence_3 cChooserEntryInt battle_sullivan_idle cChooserEntryInt battle_sullivan_idle_to_run_90 cChooserEntryInt battle_sullivan_idle_to_run_90neg cChooserEntryInt battle_sullivan_idle_to_run0 cChooserEntryInt battle_sullivan_idle_to_walk0 cChooserEntryInt battle_sullivan_junk_buster cChooserEntryInt battle_sullivan_locomotion_idle360229 cChooserEntryInt battle_sullivan_reaction_death_forwards270890 cChooserEntryInt battle_sullivan_run0 cChooserEntryInt battle_sullivan_run0_to_idle cChooserEntryInt battle_sullivan_turn180 cChooserEntryInt battle_sullivan_turn180neg cChooserEntryInt battle_sullivan_turn90 cChooserEntryInt battle_sullivan_turn90neg cChooserEntryInt battle_sullivan_walk0 cChooserEntryInt battle_sullivan_walk0_to_idle cChooserEntryInt biggame_male_survivor_vain_idle370093 cChooserEntryInt bitten_male_hitreaction_death170563 cChooserEntryInt bitten_male_survivor_hitreaction20390 cChooserEntryInt bitten_male_survivor_injured_to_stand290703 cChooserEntryInt bitten_male_survivor_injured_to_stand470906 cChooserEntryInt bitten_male_survivor_injured470578 cChooserEntryInt bitten_male_survivor_zombrex150000 cChooserEntryInt bitten_male_survivor_zombrex370703 cChooserEntryInt bomber_locomotion_idle410385 cChooserEntryInt boss_battle_diva_death290421 cChooserEntryInt boss_battle_diva_locomotion_idle530010 cChooserEntryInt boss_militia_knife_combat_idle_ cChooserEntryInt boss_militia_knife_combat_idle130609 cChooserEntryInt boss_militia_knife_death540800 cChooserEntryInt boss_militia_knife_equip_rifle2400156 cChooserEntryInt boss_militia_knife_idle_to_run_ cChooserEntryInt boss_militia_knife_idle_to_turn_180_ cChooserEntryInt boss_militia_knife_idle_to_turn_180__ cChooserEntryInt boss_militia_knife_idle_to_turn_90_ cChooserEntryInt boss_militia_knife_idle_to_turn_90neg_ cChooserEntryInt boss_militia_knife_pivot_180_ cChooserEntryInt boss_militia_knife_pivot_180neg_ cChooserEntryInt boss_militia_knife_pivot_90_ cChooserEntryInt boss_militia_knife_pivot_90neg_ cChooserEntryInt boss_militia_knife_run_ cChooserEntryInt boss_militia_knife_run_to_idle_ cChooserEntryInt boss_militia_rifle_aim_celebrate170969 cChooserEntryInt boss_militia_rifle_aim_celebrate80484 cChooserEntryInt boss_militia_rifle_aim_death160781 cChooserEntryInt boss_militia_rifle_aim_death570894 cChooserEntryInt boss_militia_rifle_aim_idle_45270484 cChooserEntryInt boss_militia_rifle_aim_idle530277 cChooserEntryInt boss_militia_rifle_aim_reload210043 cChooserEntryInt boss_militia_rifle_aim_reload30453 cChooserEntryInt boss_militia_rifle_aim_shoot_45420266 cChooserEntryInt boss_militia_rifle_aim_shoot560449 cChooserEntryInt boss_militia_rifle_aim_to_idle310715 cChooserEntryInt boss_militia_rifle_aim_to_idle590922 cChooserEntryInt boss_militia_rifle_combat_idle_ cChooserEntryInt boss_militia_rifle_equip_knife500953 cChooserEntryInt boss_militia_rifle_idle_to_aim110933 cChooserEntryInt boss_militia_rifle_idle_to_aim200203 cChooserEntryInt boss_militia_rifle_idle_to_kneel_aim210699 cChooserEntryInt boss_militia_rifle_idle_to_run_ cChooserEntryInt boss_militia_rifle_idle_to_turn_180_ cChooserEntryInt boss_militia_rifle_idle_to_turn_180neg_ cChooserEntryInt boss_militia_rifle_idle_to_turn_90_ cChooserEntryInt boss_militia_rifle_idle_to_turn_90neg_ cChooserEntryInt boss_militia_rifle_kneel_aim_celebrate80484 cChooserEntryInt boss_militia_rifle_kneel_aim_idle590152 cChooserEntryInt boss_militia_rifle_kneel_aim_shoot40590 cChooserEntryInt boss_militia_rifle_kneel_aim_to_idle380386 cChooserEntryInt boss_militia_rifle_kneel_reload320933 cChooserEntryInt boss_militia_rifle_pivot_180_ cChooserEntryInt boss_militia_rifle_pivot_180neg_ cChooserEntryInt boss_militia_rifle_pivot_90_ cChooserEntryInt boss_militia_rifle_pivot_90neg_ cChooserEntryInt boss_militia_rifle_run_to_idle_ cChooserEntryInt boss_militia_rifle_run0_ cChooserEntryInt boss_militia_rifle_run0_pivot180_to_idle_ cChooserEntryInt boss_militia_rifle_run0_pivot180neg_to_idle_ cChooserEntryInt boss_protester_idle_to_run_180 cChooserEntryInt boss_protester_idle_to_run_180neg cChooserEntryInt boss_protester_idle_to_run_90 cChooserEntryInt boss_protester_idle_to_run_90neg cChooserEntryInt boss_protester_idle_to_run0 cChooserEntryInt boss_protester_locomotion_idle450432 cChooserEntryInt boss_protester_locomotion_idle560360 cChooserEntryInt boss_protester_locomotion_jump_back290969 cChooserEntryInt boss_protester_locomotion_jump_forward180469 cChooserEntryInt boss_protester_locomotion_run120103 cChooserEntryInt boss_protester_locomotion_side_strafe_left450985 cChooserEntryInt boss_protester_locomotion_side_strafe_right550376 cChooserEntryInt boss_protester_locomotion_walk530838 cChooserEntryInt boss_protester_reaction_death470734 cChooserEntryInt boss_protester_transition_pivot_18070900 cChooserEntryInt boss_protester_transition_pivot_180neg190494 cChooserEntryInt boss_protester_transition_pivot_90430150 cChooserEntryInt boss_protester_transition_pivot_90neg570744 cChooserEntryInt boss_snowflake_death360781 cChooserEntryInt boss_snowflake_locomotion_combat_turn_180_to_run470105 cChooserEntryInt boss_snowflake_locomotion_combat_turn_180590920 cChooserEntryInt boss_snowflake_locomotion_combat_turn_180neg_to_run470105 cChooserEntryInt boss_snowflake_locomotion_combat_turn_180neg480217 cChooserEntryInt boss_snowflake_locomotion_combat_turn_90_to_run40761 cChooserEntryInt boss_snowflake_locomotion_combat_turn_90590920 cChooserEntryInt boss_snowflake_locomotion_combat_turn_90neg_to_run340933 cChooserEntryInt boss_snowflake_locomotion_combat_turn_90neg480217 cChooserEntryInt boss_snowflake_locomotion_idle_to_run140984 cChooserEntryInt boss_snowflake_locomotion_idle_to_walk240765 cChooserEntryInt boss_snowflake_locomotion_idle360765 cChooserEntryInt boss_snowflake_locomotion_idle400968 cChooserEntryInt boss_snowflake_locomotion_idle70031 cChooserEntryInt boss_snowflake_locomotion_run_to_idle320109 cChooserEntryInt boss_snowflake_locomotion_run_turn_45500334 cChooserEntryInt boss_snowflake_locomotion_run_turn_45neg590521 cChooserEntryInt boss_snowflake_locomotion_run_turn_9020203 cChooserEntryInt boss_snowflake_locomotion_run_turn_90neg550734 cChooserEntryInt boss_snowflake_locomotion_run470593 cChooserEntryInt boss_snowflake_locomotion_trot20960 cChooserEntryInt boss_snowflake_locomotion_turn180_group550734 cChooserEntryInt boss_snowflake_locomotion_turn180230545 cChooserEntryInt boss_snowflake_locomotion_turn180neg_group20171 cChooserEntryInt boss_snowflake_locomotion_turn180neg460217 cChooserEntryInt boss_snowflake_locomotion_turn45550734 cChooserEntryInt boss_snowflake_locomotion_turn45neg20171 cChooserEntryInt boss_snowflake_locomotion_turn90_group90550734 cChooserEntryInt boss_snowflake_locomotion_turn90230545 cChooserEntryInt boss_snowflake_locomotion_turn90neg_group20171 cChooserEntryInt boss_snowflake_locomotion_turn90neg460217 cChooserEntryInt boss_snowflake_locomotion_walk_to_idle410328 cChooserEntryInt boss_snowflake_locomotion_walk30796 cChooserEntryInt bowling_ball_heavy_impact450859 cChooserEntryInt bowling_ball_heavy_miss400781 cChooserEntryInt brains_male_survivor_game_160375 cChooserEntryInt brains_male_survivor_game_260375 cChooserEntryInt brains_male_survivor_game_360375 cChooserEntryInt brains_male_survivor_game_460375 cChooserEntryInt brains_male_survivor_game_getup_1210610 cChooserEntryInt brains_male_survivor_game_getup_1240553 cChooserEntryInt brains_male_survivor_game_getup_2240553 cChooserEntryInt brains_male_survivor_game_getup_2280195 cChooserEntryInt brains_male_survivor_game_getup_3240553 cChooserEntryInt brains_male_survivor_game_getup_3280195 cChooserEntryInt brains_male_survivor_game_getup_4240506 cChooserEntryInt brains_male_survivor_game_getup_4280164 cChooserEntryInt brains_male_survivor_nerdy_idle_160375 cChooserEntryInt brains_male_survivor_nerdy_idle_160798 cChooserEntryInt brains_male_survivor_nerdy_idle_2280517 cChooserEntryInt brains_male_survivor_nerdy_idle_260375 cChooserEntryInt brains_male_survivor_nerdy_idle_3420485 cChooserEntryInt brains_male_survivor_nerdy_idle_360390 cChooserEntryInt brains_male_survivor_nerdy_idle_4500626 cChooserEntryInt brains_male_survivor_nerdy_idle_460390 cChooserEntryInt Carry cChooserEntryInt Carry280046 cChooserEntryInt Carry290343 cChooserEntryInt Carry320640 cChooserEntryInt Carry340046 cChooserEntryInt Carry490734 cChooserEntryInt Carry50750 cChooserEntryInt Carry510531 cChooserEntryInt Carry60703 cChooserEntryInt CarryAdultMermaid480343 cChooserEntryInt CarryAdultMermaid78 cChooserEntryInt cat_attack_swipe100062 cChooserEntryInt cat_attack_tear440046 cChooserEntryInt cat_dead130359 cChooserEntryInt cat_hit_reaction_death520937 cChooserEntryInt cat_hit_reaction_light_left200718 cChooserEntryInt cat_hit_reaction_light_left70000 cChooserEntryInt cat_hit_reaction_light_right380937 cChooserEntryInt cat_hit_reaction_light_right520515 cChooserEntryInt cat_hit_reaction_medium_left280750 cChooserEntryInt cat_hit_reaction_medium_left360921 cChooserEntryInt cat_hit_reaction_medium_right40546 cChooserEntryInt cat_hit_reaction_medium_right460656 cChooserEntryInt cat_idle_lounging540562 cChooserEntryInt cat_interaction_eat_food420453 cChooserEntryInt cat_interaction_sniff_food150156 cChooserEntryInt cat_locomotion_idle150056 cChooserEntryInt cat_locomotion_idle430015 cChooserEntryInt cat_locomotion_idle560500 cChooserEntryInt cat_locomotion_idle570640 cChooserEntryInt cat_locomotion_turn18010632 cChooserEntryInt cat_locomotion_turn18010633 cChooserEntryInt cat_locomotion_turn18010634 cChooserEntryInt cat_locomotion_turn18010635 cChooserEntryInt cat_locomotion_walk_to_idle430765 cChooserEntryInt cat_taunt_roar160703 cChooserEntryInt cat_taunt_roar340421 cChooserEntryInt cat_taunt_roar400375 cChooserEntryInt cat_taunt_roar420906 cChooserEntryInt cat_taunt_roar430181 cChooserEntryInt cat_taunt_roar430859 cChooserEntryInt cat_taunt_roar510109 cChooserEntryInt cf_7_3_prejoin260921 cChooserEntryInt chef_female_survivor_hit_reaction150046 cChooserEntryInt chef_female_survivor_shiver579 cChooserEntryInt child_eyes_closed380609 cChooserEntryInt child_idle190781 cChooserEntryInt child_male_carry_freefall_lfoot240656 cChooserEntryInt child_male_carry_freefall_rfoot240656 cChooserEntryInt child_male_carry_freefall_to_carry_idle_lfoot490921 cChooserEntryInt child_male_carry_freefall_to_carry_idle_rfoot490921 cChooserEntryInt child_male_carry_idle550421 cChooserEntryInt child_male_carry_kick110078 cChooserEntryInt child_male_carry_kick130015 cChooserEntryInt child_male_carry_kick50031 cChooserEntryInt child_male_carry_kick90015 cChooserEntryInt child_on_bike_reverse80747 cChooserEntryInt child_on_bike_stopped510341 cChooserEntryInt child_sitting_idle_1490578 cChooserEntryInt Child260085 cChooserEntryInt Child420828 cChooserEntryInt chooser0 cChooserEntryInt chooser1 cChooserEntryInt chooser10 cChooserEntryInt chooser11 cChooserEntryInt chooser13 cChooserEntryInt chooser14 cChooserEntryInt chooser15 cChooserEntryInt chooser2 cChooserEntryInt chooser3 cChooserEntryInt chooser4 cChooserEntryInt chooser5 cChooserEntryInt chooser6 cChooserEntryInt chooser7 cChooserEntryInt chooser8 cChooserEntryInt chooser9 cChooserEntryInt chooserminus1 cChooserEntryInt Chopper560017 cChooserEntryInt choppper270776 cChooserEntryInt chuck cChooserEntryInt Chuck cChooserEntryInt chuck_screenshot_pose_1921 cChooserEntryInt Chuck10031 cChooserEntryInt Chuck170781 cChooserEntryInt Chuck20109 cChooserEntryInt Chuck220453 cChooserEntryInt Chuck270031 cChooserEntryInt Chuck270375 cChooserEntryInt Chuck280140 cChooserEntryInt Chuck290093 cChooserEntryInt Chuck300031 cChooserEntryInt Chuck300906 cChooserEntryInt Chuck30515 cChooserEntryInt Chuck340484 cChooserEntryInt Chuck350187 cChooserEntryInt Chuck360906 cChooserEntryInt Chuck380109 cChooserEntryInt Chuck390078 cChooserEntryInt Chuck400015 cChooserEntryInt Chuck50281 cChooserEntryInt Chuck50406 cChooserEntryInt Chuck510218 cChooserEntryInt Chuck550406 cChooserEntryInt Chuck60609 cChooserEntryInt Chuck70703 cChooserEntryInt Chuck80343 cChooserEntryInt Chuck90812 cChooserEntryInt civic_male_survivor_atm_withdrawal180109 cChooserEntryInt civic_male_survivor_atm_withdrawal210500 cChooserEntryInt close120984 cChooserEntryInt close200375 cChooserEntryInt close70218 cChooserEntryInt covered_female_survivor_sultryidle160390 cChooserEntryInt covered_female_survivor_sultryidle260390 cChooserEntryInt covered_female_survivor_sultryidle360390 cChooserEntryInt coveredgirls_sexy_1160375 cChooserEntryInt coveredgirls_sexy_1370308 cChooserEntryInt coveredgirls_sexy_2190703 cChooserEntryInt coveredgirls_sexy_2370324 cChooserEntryInt coveredgirls_sexy_3370261 cChooserEntryInt coveredgirls_sexy_3400218 cChooserEntryInt Custom220296 cChooserEntryInt Custom260007 cChooserEntryInt DayFour390777 cChooserEntryInt DayOne320495 cChooserEntryInt DayThree380495 cChooserEntryInt DayTwo350417 cChooserEntryInt Default cChooserEntryInt Default220296 cChooserEntryInt Default260007 cChooserEntryInt Default590734 cChooserEntryInt Default90920 cChooserEntryInt deviant_screenshot_pose_1480968 cChooserEntryInt deviant_smirk510296 cChooserEntryInt diva_survivor_allison_dead_onbelly480953 cChooserEntryInt diva_survivor_allison_hitreaction_death590078 cChooserEntryInt diva_survivor_allison_hitreaction_front280140 cChooserEntryInt diva_survivor_allison_tied_up100171 cChooserEntryInt diva_survivor_cameron_dead31 cChooserEntryInt diva_survivor_cameron_hitreaction0 cChooserEntryInt diva_survivor_cameron_reaction_death100984 cChooserEntryInt diva_survivor_cameron_tied_up260187 cChooserEntryInt diva_survivor_juan_dead140796 cChooserEntryInt diva_survivor_juan_hitreaction140031 cChooserEntryInt diva_survivor_juan_reaction_death320750 cChooserEntryInt diva_survivor_juan_tied_up400734 cChooserEntryInt dont_draw_gun cChooserEntryInt dont_holster_gun cChooserEntryInt draw_gun cChooserEntryInt drive130468 cChooserEntryInt Driver570875 cChooserEntryInt EyeWear310777 cChooserEntryInt falldown_finish_forward cChooserEntryInt falldown_finish_hitwall cChooserEntryInt falldown_reactions cChooserEntryInt far120984 cChooserEntryInt far200375 cChooserEntryInt far70218 cChooserEntryInt female_climb_up_100cm cChooserEntryInt female_climb_up_195cm cChooserEntryInt female_climb_up_265cm cChooserEntryInt female_dead_onback30984 cChooserEntryInt female_dead_onback420703 cChooserEntryInt female_dead_onbelly30984 cChooserEntryInt female_dead_onbelly420703 cChooserEntryInt female_eyes_closed300921 cChooserEntryInt female_freefall cChooserEntryInt female_healthy150593 cChooserEntryInt female_hitreaction_light cChooserEntryInt female_hitreaction_light_180 cChooserEntryInt female_hitreaction_light_90 cChooserEntryInt female_hitreaction_light_90neg cChooserEntryInt female_hitreaction_medium cChooserEntryInt female_hitreaction_medium_180 cChooserEntryInt female_hitreaction_medium_90 cChooserEntryInt female_hitreaction_medium_90neg cChooserEntryInt female_idle_cover cChooserEntryInt female_idle_generic230687 cChooserEntryInt female_idle_to_walk cChooserEntryInt female_idle_turn_180 cChooserEntryInt female_into_cover_idle cChooserEntryInt female_jump_to_run_soft cChooserEntryInt female_jump_to_stand_roll cChooserEntryInt female_land_to_idle cChooserEntryInt female_male_carry_freefall_lfoot360875 cChooserEntryInt female_male_carry_freefall_rfoot360875 cChooserEntryInt female_male_carry_freefall_to_carry_idle_lfoot570062 cChooserEntryInt female_male_carry_freefall_to_carry_idle_rfoot570062 cChooserEntryInt female_poker_allin_calmly_pushing_chips160815 cChooserEntryInt female_poker_call_push_small_chip_stack10675 cChooserEntryInt female_poker_check_knocking_table50440 cChooserEntryInt female_poker_cross_arms_to_idle360308 cChooserEntryInt female_poker_fold_push_cards_centre_of_table400503 cChooserEntryInt female_poker_fold_shaking_head_smash_cards_on_table240237 cChooserEntryInt female_poker_idle_arms_crossed80590 cChooserEntryInt female_poker_idle_hands_on_table150190 cChooserEntryInt female_poker_idle_look_left30753 cChooserEntryInt female_poker_idle_look_right180518 cChooserEntryInt female_poker_idle_to_cross_arms10683 cChooserEntryInt female_poker_lose_collapse_head_in_hands440165 cChooserEntryInt female_poker_lose_collapse_head_in_hands550581 cChooserEntryInt female_poker_lose_smashing_table170862 cChooserEntryInt female_poker_raise_aggressive_putting_in_chips350643 cChooserEntryInt female_poker_raise_low_intensity340859 cChooserEntryInt female_poker_strip_1150065 cChooserEntryInt female_poker_strip_2150065 cChooserEntryInt female_poker_strip_3150065 cChooserEntryInt female_poker_strip_4150065 cChooserEntryInt female_poker_strip_5150065 cChooserEntryInt female_poker_strip_naked170703 cChooserEntryInt female_poker_strip_naked40250 cChooserEntryInt female_poker_stripped_naked310296 cChooserEntryInt female_poker_tell_leaning_back_in_chair250518 cChooserEntryInt female_poker_win_fist_pump_hand_r20081 cChooserEntryInt female_pose_hero120921 cChooserEntryInt female_push_idle180958 cChooserEntryInt female_rebecca_film_relaxed280531 cChooserEntryInt female_rebecca_film_relaxed500793 cChooserEntryInt female_rebecca_seated250296 cChooserEntryInt female_rebecca_tied_up_dead290766 cChooserEntryInt female_rebecca_tied_up_death170563 cChooserEntryInt female_rebecca_tied_up_hit_reaction580703 cChooserEntryInt female_rebecca_tied_up_idle230546 cChooserEntryInt female_rebecca_tied_up_stand150519 cChooserEntryInt female_run_short_climb_up_100cm cChooserEntryInt female_run_short_climb_up_195cm cChooserEntryInt female_run_short_climb_up_265cm cChooserEntryInt female_run_turn_180 cChooserEntryInt female_run_vault_100cm240500 cChooserEntryInt female_run_vault_110cm60546 cChooserEntryInt female_run490828 cChooserEntryInt female_screenshot_pose_1270406 cChooserEntryInt female_stacey_breach_idle420456 cChooserEntryInt female_survivor_angry_high160734 cChooserEntryInt female_survivor_angry_low160734 cChooserEntryInt female_survivor_angry_med160734 cChooserEntryInt female_survivor_arguing_high390343 cChooserEntryInt female_survivor_arguing_low390343 cChooserEntryInt female_survivor_arguing_med390343 cChooserEntryInt female_survivor_brave_high320031 cChooserEntryInt female_survivor_brave_low320046 cChooserEntryInt female_survivor_brave_med320046 cChooserEntryInt female_survivor_calm_high320093 cChooserEntryInt female_survivor_calm_low320093 cChooserEntryInt female_survivor_calm_med320093 cChooserEntryInt female_survivor_carried_hitreaction_0240968 cChooserEntryInt female_survivor_carried_idle_to_run270031 cChooserEntryInt female_survivor_carried_idle530656 cChooserEntryInt female_survivor_carried_into_from_stand420859 cChooserEntryInt female_survivor_carried_into420859 cChooserEntryInt female_survivor_carried_kick230734 cChooserEntryInt female_survivor_carried_out_of_to_stand560390 cChooserEntryInt female_survivor_carried_run_to_idle_lfoot290062 cChooserEntryInt female_survivor_carried_run_to_idle_lfoot312 cChooserEntryInt female_survivor_carried_run_to_idle_rfoot20500 cChooserEntryInt female_survivor_carried_run_to_idle_rfoot300734 cChooserEntryInt female_survivor_carried_run540921 cChooserEntryInt female_survivor_carried_step590125 cChooserEntryInt female_survivor_climb_up_to_idle370375 cChooserEntryInt female_survivor_confused_high540984 cChooserEntryInt female_survivor_confused_low540984 cChooserEntryInt female_survivor_confused_med540984 cChooserEntryInt female_survivor_decline_high540437 cChooserEntryInt female_survivor_decline_low540437 cChooserEntryInt female_survivor_decline_med540437 cChooserEntryInt female_survivor_drinking140640 cChooserEntryInt female_survivor_eating140640 cChooserEntryInt female_survivor_eating500593 cChooserEntryInt female_survivor_eating510671 cChooserEntryInt female_survivor_get_up_from_front370078 cChooserEntryInt female_survivor_getin_wheelchair160819 cChooserEntryInt female_survivor_getingolfkart_back_left390125 cChooserEntryInt female_survivor_getingolfkart_back_right90468 cChooserEntryInt female_survivor_getingolfkart_passengerside440796 cChooserEntryInt female_survivor_getinhummer_back_left170000 cChooserEntryInt female_survivor_getinhummer_back_right170000 cChooserEntryInt female_survivor_getinhummer_passengerside170000 cChooserEntryInt female_survivor_getinsportscar_passengerside30932 cChooserEntryInt female_survivor_getout_wheelchair150661 cChooserEntryInt female_survivor_getoutgolfkart_back_left60390 cChooserEntryInt female_survivor_getoutgolfkart_back_right60421 cChooserEntryInt female_survivor_getoutgolfkart_passengerside440609 cChooserEntryInt female_survivor_getouthummer_back_left430578 cChooserEntryInt female_survivor_getouthummer_back_right430578 cChooserEntryInt female_survivor_getouthummer_passengerside430578 cChooserEntryInt female_survivor_getoutsportscar_passengerside330635 cChooserEntryInt female_survivor_getup_from_back310546 cChooserEntryInt female_survivor_hitreaction_heavy_back500406 cChooserEntryInt female_survivor_hitreaction_heavy_front300718 cChooserEntryInt female_survivor_hitreaction_sitting90046 cChooserEntryInt female_survivor_hold_dead_companion_getup30296 cChooserEntryInt female_survivor_hold_dead_companion_into80812 cChooserEntryInt female_survivor_hold_dead_companion300218 cChooserEntryInt female_survivor_idle_aim_rifle320187 cChooserEntryInt female_survivor_idle_exhausted370381 cChooserEntryInt female_survivor_idle_frightened380796 cChooserEntryInt female_survivor_idle_golfkart_back_left50937 cChooserEntryInt female_survivor_idle_golfkart_back_right50937 cChooserEntryInt female_survivor_idle_golfkart_passenger50937 cChooserEntryInt female_survivor_idle_hummer_back_left60859 cChooserEntryInt female_survivor_idle_hummer_back_right60859 cChooserEntryInt female_survivor_idle_hummer_passengerside370343 cChooserEntryInt female_survivor_idle_panicked380796 cChooserEntryInt female_survivor_idle_pistol_aim_to_idle_pistol280406 cChooserEntryInt female_survivor_idle_pistol_aim240593 cChooserEntryInt female_survivor_idle_pistol_to_idle_pistol_aim160640 cChooserEntryInt female_survivor_idle_prop_aggresive10296 cChooserEntryInt female_survivor_idle_prop_brave10296 cChooserEntryInt female_survivor_idle_prop_calm10296 cChooserEntryInt female_survivor_idle_prop_confused560921 cChooserEntryInt female_survivor_idle_prop_sad240671 cChooserEntryInt female_survivor_idle_prop_scared10296 cChooserEntryInt female_survivor_idle_rebecca cChooserEntryInt female_survivor_idle_rifle_aim_to_idle_rifle230453 cChooserEntryInt female_survivor_idle_rifle_to_idle_rifle_aim300937 cChooserEntryInt female_survivor_idle_sad20218 cChooserEntryInt female_survivor_idle_sad350984 cChooserEntryInt female_survivor_idle_sad370421 cChooserEntryInt female_survivor_idle_sad380656 cChooserEntryInt female_survivor_idle_sad50437 cChooserEntryInt female_survivor_idle_sad550578 cChooserEntryInt female_survivor_idle_scared150093 cChooserEntryInt female_survivor_idle_scared380796 cChooserEntryInt female_survivor_idle_sitting_floor210906 cChooserEntryInt female_survivor_idle_sportscar_passenger350572 cChooserEntryInt female_survivor_idle_step380536 cChooserEntryInt female_survivor_idle_to_climb_up_100cm300078 cChooserEntryInt female_survivor_idle_to_run_injured150593 cChooserEntryInt female_survivor_idle150250 cChooserEntryInt female_survivor_idle180113 cChooserEntryInt female_survivor_idle400781 cChooserEntryInt female_survivor_idle90031 cChooserEntryInt female_survivor_injured_walk_to_idle_lfoot250093 cChooserEntryInt female_survivor_injured_walk_to_idle_lfoot340187 cChooserEntryInt female_survivor_injured_walk_to_idle_rfoot280765 cChooserEntryInt female_survivor_injured_walk_to_idle_rfoot340000 cChooserEntryInt female_survivor_injured_walk150375 cChooserEntryInt female_survivor_injured_walk320906 cChooserEntryInt female_survivor_laugh_high60296 cChooserEntryInt female_survivor_laugh_low60312 cChooserEntryInt female_survivor_laugh_med60312 cChooserEntryInt female_survivor_push_crowd130625 cChooserEntryInt female_survivor_rejoice_high470234 cChooserEntryInt female_survivor_rejoice_low470234 cChooserEntryInt female_survivor_rejoice_med470234 cChooserEntryInt female_survivor_run_jump_land_to_idle_rfoot270203 cChooserEntryInt female_survivor_run_one_handed150375 cChooserEntryInt female_survivor_run_to_idle_lfoot280467 cChooserEntryInt female_survivor_run_to_idle_lfoot430239 cChooserEntryInt female_survivor_run_to_idle_rfoot430239 cChooserEntryInt female_survivor_run_to_idle_rfoot70263 cChooserEntryInt female_survivor_run320906 cChooserEntryInt female_survivor_sad_high340437 cChooserEntryInt female_survivor_sad_high370265 cChooserEntryInt female_survivor_sad_high560000 cChooserEntryInt female_survivor_sad_high570140 cChooserEntryInt female_survivor_sad_low570140 cChooserEntryInt female_survivor_sad_med230734 cChooserEntryInt female_survivor_sad_med250406 cChooserEntryInt female_survivor_sad_med470468 cChooserEntryInt female_survivor_sad_med570125 cChooserEntryInt female_survivor_scared_high360953 cChooserEntryInt female_survivor_scared_low360953 cChooserEntryInt female_survivor_scared_med360937 cChooserEntryInt female_survivor_shoot_m249_rapid10343 cChooserEntryInt female_survivor_shoot_pistol_rapid10343 cChooserEntryInt female_survivor_sitting_death170563 cChooserEntryInt female_survivor_sitting_floor_getup210531 cChooserEntryInt female_survivor_thankful_high490859 cChooserEntryInt female_survivor_thankful_low490859 cChooserEntryInt female_survivor_thankful_med490859 cChooserEntryInt female_survivor_throw270639 cChooserEntryInt female_survivor_understand_high80046 cChooserEntryInt female_survivor_understand_low80046 cChooserEntryInt female_survivor_understand_med80015 cChooserEntryInt female_survivor_vomit_01400796 cChooserEntryInt female_survivor_vomit906 cChooserEntryInt female_survivor_walk_to_idle150593 cChooserEntryInt female_survivor_wheelchair_idle190097 cChooserEntryInt female_thanks320000 cChooserEntryInt female_turn_90 cChooserEntryInt female_turn_90neg cChooserEntryInt female_vault_110cm60515 cChooserEntryInt female_vicki_tied_up_death490921 cChooserEntryInt female_vicki_tied_up_get_up_to_idle300453 cChooserEntryInt female_vicki_tied_up_hit_reaction_fatal30312 cChooserEntryInt female_vicki_tied_up_hit_reaction220640 cChooserEntryInt female_vicki_tied_up_kneeling_idle750 cChooserEntryInt female_wait_wave360953 cChooserEntryInt female_wave240875 cChooserEntryInt Female100465 cChooserEntryInt Female10437 cChooserEntryInt Female10652 cChooserEntryInt Female120328 cChooserEntryInt Female200073 cChooserEntryInt Female20093 cChooserEntryInt Female20156 cChooserEntryInt Female220046 cChooserEntryInt Female220652 cChooserEntryInt Female250015 cChooserEntryInt Female250933 cChooserEntryInt Female260085 cChooserEntryInt Female260234 cChooserEntryInt Female300609 cChooserEntryInt Female40558 cChooserEntryInt Female40656 cChooserEntryInt Female410906 cChooserEntryInt Female420625 cChooserEntryInt Female440546 cChooserEntryInt Female440593 cChooserEntryInt Female450312 cChooserEntryInt Female490265 cChooserEntryInt Female50402 cChooserEntryInt Female550593 cChooserEntryInt Female560765 cChooserEntryInt Female580296 cChooserEntryInt Female590140 cChooserEntryInt Female590480 cChooserEntryInt Female60000 cChooserEntryInt Female70090 cChooserEntryInt Female90062 cChooserEntryInt ffeud_female_survivor_bute_idle60390 cChooserEntryInt ffeud_female_survivor_bute_jump260359 cChooserEntryInt ffeud_female_survivor_bute_jump60390 cChooserEntryInt ffeud_female_survivor_bute_turn140859 cChooserEntryInt ffeud_female_survivor_bute_turn260359 cChooserEntryInt ffeud_female_survivor_bute_turn60390 cChooserEntryInt ffeud_female_survivor_jump250765 cChooserEntryInt FiftyCM cChooserEntryInt firecracker_throw50944 cChooserEntryInt flamethrowerchooserentry cChooserEntryInt foldm_male_survivor_play_slots210234 cChooserEntryInt Formal310777 cChooserEntryInt found_female_survivor_searching_idle470344 cChooserEntryInt from_hit_back cChooserEntryInt from_hit_front cChooserEntryInt generic_survivor_death_from_crouch290766 cChooserEntryInt generic_survivor_death_from_crouch510360 cChooserEntryInt generic_survivor_hit_crouched10610 cChooserEntryInt generic_survivor_hit_crouched180016 cChooserEntryInt generic_survivor_hit_crouched190234 cChooserEntryInt generic_survivor_hit_prone_facedown190203 cChooserEntryInt getup_roll_left cChooserEntryInt getup_roll_right cChooserEntryInt GolfCart580656 cChooserEntryInt GroupLight510906 cChooserEntryInt GroupMedium510906 cChooserEntryInt HandHold cChooserEntryInt happily_female_stand_angry_idle320703 cChooserEntryInt happily_female_stand_angry_stomp360735 cChooserEntryInt happily_male_cowering_crouched_flinch340375 cChooserEntryInt happily_male_cowering_crouched80062 cChooserEntryInt Headwear01 cChooserEntryInt Headwear310777 cChooserEntryInt Healthy340859 cChooserEntryInt Healthy370078 cChooserEntryInt Healthy380093 cChooserEntryInt Healthy390546 cChooserEntryInt heavy cChooserEntryInt heavy_reactions cChooserEntryInt heavy_weapons cChooserEntryInt Heavy140815 cChooserEntryInt Heavy565 cChooserEntryInt Hero70734 cChooserEntryInt heroes_female_final_note200828 cChooserEntryInt heroes_female_sing80146 cChooserEntryInt heroes_male_bass_hit_reaction80062 cChooserEntryInt heroes_male_final_bass_strum410671 cChooserEntryInt heroes_male_final_guitar_strum640 cChooserEntryInt heroes_male_guitar_hit_reaction80015 cChooserEntryInt heroes_male_strum_bass_guitar30068 cChooserEntryInt heroes_male_strum_electric_guitar540037 cChooserEntryInt hit_back_bounce cChooserEntryInt hit_back_landing cChooserEntryInt hit_front_bounce cChooserEntryInt hit_front_landing cChooserEntryInt holster_gun cChooserEntryInt horde_male_survivor_jump_idle340750 cChooserEntryInt horde_male_survivor_kill_self260359 cChooserEntryInt housecall_m_svr_prestand510335 cChooserEntryInt housecall_male_survivor_hitreaction410906 cChooserEntryInt housecall_male_survivor_resucitate300796 cChooserEntryInt hug_child_character50302 cChooserEntryInt hug_parent_character50286 cChooserEntryInt Human cChooserEntryInt Human_box_small_idle120062 cChooserEntryInt human_idle cChooserEntryInt human_idle20609 cChooserEntryInt Human230750 cChooserEntryInt Human400031 cChooserEntryInt Human500316 cChooserEntryInt Human530629 cChooserEntryInt Human550894 cChooserEntryInt hungerpains_male_pat_belly260242 cChooserEntryInt hungerpains_male_rub_belly140789 cChooserEntryInt hungerpains_male_rummage_fridge310703 cChooserEntryInt hungerpains_male_rummage_to_idle280046 cChooserEntryInt Idle200187 cChooserEntryInt Idle30062 cChooserEntryInt idle490312 cChooserEntryInt IdleNoProp290515 cChooserEntryInt IdleProp290515 cChooserEntryInt inair_react_lfoot cChooserEntryInt inair_react_rfoot cChooserEntryInt indust_willa_injured40031 cChooserEntryInt indust_willa_to_stand510562 cChooserEntryInt Injured cChooserEntryInt Injured100406 cChooserEntryInt Injured370765 cChooserEntryInt Injured450060 cChooserEntryInt jump_punch cChooserEntryInt kc_attack_crashing_down370906 cChooserEntryInt kc_attack_double_swing310593 cChooserEntryInt kc_attack_flourish320562 cChooserEntryInt kc_attack_hurrah60640 cChooserEntryInt kc_attack_stinger50343 cChooserEntryInt kc_combat_idle_to_run_180100359 cChooserEntryInt kc_combat_idle_to_run_180neg100375 cChooserEntryInt kc_combat_idle_to_run_90100343 cChooserEntryInt kc_combat_idle_to_run_90neg100343 cChooserEntryInt kc_combat_idle520505 cChooserEntryInt KC_combat_transition_pivot_180100390 cChooserEntryInt KC_combat_transition_pivot_180neg100406 cChooserEntryInt KC_combat_transition_pivot_90100375 cChooserEntryInt KC_combat_transition_pivot_90neg100390 cChooserEntryInt kc_f_idle60421 cChooserEntryInt kc_f_idle90920 cChooserEntryInt kc_interaction_death200750 cChooserEntryInt kc_locomotion_idle390557 cChooserEntryInt kc_locomotion_run470356 cChooserEntryInt kc_taunt_combat_crotchgrab70513 cChooserEntryInt kc_taunt_combat_fistpump240937 cChooserEntryInt kc_taunt_come_on_down530500 cChooserEntryInt kc_taunt_kc_the_man421 cChooserEntryInt kc_taunt_save_them130687 cChooserEntryInt kc_test90281 cChooserEntryInt kc_transiton__combat_idle_to_run350781 cChooserEntryInt kc_transiton_run_to_combat_idle_180380714 cChooserEntryInt kc_transiton_run_to_combat_idle_180neg540730 cChooserEntryInt kc_transiton_run_to_combat_idle100328 cChooserEntryInt kegchooserentry cChooserEntryInt Kneeling290797 cChooserEntryInt knockdown_launch_hit_back cChooserEntryInt knockdown_launch_hit_front cChooserEntryInt knockdown_loop_hit_back cChooserEntryInt knockdown_loop_hit_front cChooserEntryInt lance_bale_miss250765 cChooserEntryInt landtoidle2 cChooserEntryInt landtorun cChooserEntryInt landtosplatchooserentry cChooserEntryInt lastcall_male_prejoin_wave370046 cChooserEntryInt LeftFootDown250418 cChooserEntryInt LeftRightPunch130195 cChooserEntryInt light cChooserEntryInt light_reactions cChooserEntryInt light_reactions170625 cChooserEntryInt light_reactions81860218 cChooserEntryInt light_weapons cChooserEntryInt Light280390 cChooserEntryInt Light430890 cChooserEntryInt Light460625 cChooserEntryInt Light510906 cChooserEntryInt Light540765 cChooserEntryInt lightreactions100092 cChooserEntryInt long_range cChooserEntryInt LongCloak260085 cChooserEntryInt looter_npc_pawnshop_idle80234 cChooserEntryInt lost_male_survivor_searching_idle280875 cChooserEntryInt Macho310777 cChooserEntryInt magicians_bomber_hit_reaction_knockdown_back590718 cChooserEntryInt magicians_bomber_hit_reaction_knockdown_front590718 cChooserEntryInt magicians_bomber_hit_reaction_knockdown_left590718 cChooserEntryInt magicians_bomber_hit_reaction_knockdown_right590687 cChooserEntryInt magicians_bomber_locomotion_idle_to_walk_0500673 cChooserEntryInt magicians_bomber_locomotion_idle_to_walk_180330877 cChooserEntryInt magicians_bomber_locomotion_idle_to_walk_180neg470533 cChooserEntryInt magicians_bomber_locomotion_idle_to_walk_9040502 cChooserEntryInt magicians_bomber_locomotion_idle_to_walk_90neg230158 cChooserEntryInt magicians_bomber_locomotion_idle130580 cChooserEntryInt magicians_bomber_locomotion_pivot_180340861 cChooserEntryInt magicians_bomber_locomotion_pivot_9090486 cChooserEntryInt magicians_bomber_locomotion_pivot_90neg200502 cChooserEntryInt magicians_bomber_locomotion_walk_to_idle540127 cChooserEntryInt magicians_bomber_locomotion_walk530408 cChooserEntryInt magicians_stalker_swords_idle120427 cChooserEntryInt magicians_stalker_swords_run0_to_180_run cChooserEntryInt magicians_stalker_swords_run0_to_180neg_run cChooserEntryInt magicians_stalker_transition_idle_to_run_180290704 cChooserEntryInt magicians_stalker_transition_idle_to_run_180neg290658 cChooserEntryInt magicians_stalker_transition_idle_to_run_90290704 cChooserEntryInt magicians_stalker_transition_idle_to_run_90neg290704 cChooserEntryInt male_1hand_1_to_5_impact340109 cChooserEntryInt male_1hand_1_to_5_miss370687 cChooserEntryInt male_1hand_heavy_1_to_6_b160312 cChooserEntryInt male_1hand_heavy_2_to_6_b160312 cChooserEntryInt male_1hand_heavy_3_to_7_b160312 cChooserEntryInt male_1hand_heavy_4_to_8_b160312 cChooserEntryInt male_1hand_heavy_6_to_2_a170421 cChooserEntryInt male_1hand_heavy_7_to_3_a480062 cChooserEntryInt male_1hand_heavy_8_to_2_a220359 cChooserEntryInt male_1hand_heavy_8_to_4_a_impact240312 cChooserEntryInt male_1hand_heavy_8_to_4_a_miss270015 cChooserEntryInt male_1hand_heavy_8_to_4_a_stick_miss270015 cChooserEntryInt male_1hand_heavy_8_to_4_a30859 cChooserEntryInt male_1hand_overshoulder_full_throw40765 cChooserEntryInt male_1hand_overshoulder_idle_to_throw_idle300265 cChooserEntryInt male_1hand_overshoulder_idle_to_throw_idle350734 cChooserEntryInt male_1hand_overshoulder_idle_to_throw_idle520609 cChooserEntryInt male_1hand_overshoulder_throw_idle_to_combat_idle290546 cChooserEntryInt male_1hand_overshoulder_throw_idle_to_combat_idle380015 cChooserEntryInt male_1hand_overshoulder_throw_idle_to_combat_idle60109 cChooserEntryInt male_1hand_overshoulder_throw_idle190562 cChooserEntryInt male_1hand_overshoulder_throw_idle550625 cChooserEntryInt male_1hand_overshoulder_throw_idle590156 cChooserEntryInt male_1hand_overshoulder_throw_queen210015 cChooserEntryInt male_1hand_overshoulder_throw_v2310500 cChooserEntryInt male_1hand_overshoulder_throw110562 cChooserEntryInt male_1hand_side_throw170140 cChooserEntryInt male_2h_thrust_back_to_thrust_slam90953 cChooserEntryInt male_2h_thrust_bale_miss480421 cChooserEntryInt male_2hand_1_to_5_a_ground_nv560531 cChooserEntryInt male_2hand_1_to_5_a_nv540937 cChooserEntryInt male_2hand_1_to_5_b_ground_nv560640 cChooserEntryInt male_2hand_1_to_5_b_nv560375 cChooserEntryInt male_2hand_1_to_5_ground450171 cChooserEntryInt male_2hand_1_to_5_impact_v2100812 cChooserEntryInt male_2hand_1_to_5_impact340109 cChooserEntryInt male_2hand_1_to_5_miss_v2400875 cChooserEntryInt male_2hand_1_to_5_miss370687 cChooserEntryInt male_2hand_2_to_6_b_nv550781 cChooserEntryInt male_2hand_2_to_7_b430031 cChooserEntryInt male_2hand_3_to_7_b_nv560140 cChooserEntryInt male_2hand_4_to_8_b_nv560531 cChooserEntryInt male_2hand_6_to_2_a_nv560937 cChooserEntryInt male_2hand_7_to_3_a_nv570328 cChooserEntryInt male_2hand_7_to_3_a270078 cChooserEntryInt male_2hand_8_to_4_a_nv510750 cChooserEntryInt male_2hand_heavy_1_to_5530796 cChooserEntryInt male_2hand_heavy_2_to_6_b150337 cChooserEntryInt male_2hand_heavy_3_to_6_b90984 cChooserEntryInt male_2hand_heavy_7_to_4_a100015 cChooserEntryInt male_2hand_heavy_8_to_4_a150337 cChooserEntryInt male_2hand_heavy_crosscheck_a80734 cChooserEntryInt male_2hand_idle_to_throw_overhead_idle260203 cChooserEntryInt male_2hand_idle_to_throw_overshoulder_idle370734 cChooserEntryInt male_2hand_throw_overhead_idle_to_combat_idle580671 cChooserEntryInt male_2hand_throw_overhead_idle_to_moose_idle590484 cChooserEntryInt male_2hand_throw_overhead_idle_to_throw290015 cChooserEntryInt male_2hand_throw_overhead_idle160281 cChooserEntryInt male_2hand_throw_overshoulder_idle_to_combat_idle270765 cChooserEntryInt male_2hand_throw_overshoulder_idle_to_throw170359 cChooserEntryInt male_2hand_throw_overshoulder_idle130484 cChooserEntryInt male_6shooter_1fan_loop_to_idle250481 cChooserEntryInt male_6shooter_1fan_loop_to_idle550890 cChooserEntryInt male_6shooter_1fan_loop340156 cChooserEntryInt male_6shooter_1fan_loop530111 cChooserEntryInt male_6shooter_idle_aim90515 cChooserEntryInt male_6shooter_idle_to_1fan_to_idle200142 cChooserEntryInt male_6shooter_idle_to_idle_aim50546 cChooserEntryInt male_acousticguitar_1_to_5_impact170953 cChooserEntryInt male_acousticguitar_1_to_5_miss480703 cChooserEntryInt male_airhorn_turn_left530203 cChooserEntryInt male_airhorn_turn_right530218 cChooserEntryInt male_ambient_face430234 cChooserEntryInt male_angerface_1210937 cChooserEntryInt male_atm_hacker_idle_to_zap430859 cChooserEntryInt male_atm_hacker_swipe280968 cChooserEntryInt male_atm_hacker_turn_left300156 cChooserEntryInt male_atm_hacker_turn_right300218 cChooserEntryInt male_atm_hacker_zap_loop200968 cChooserEntryInt male_atm_hacker_zap_loop500750 cChooserEntryInt male_atm_hacker_zap_to_idle260312 cChooserEntryInt male_atm_hacker_zap410890 cChooserEntryInt male_attack_1hand_1_to_5_impact320078 cChooserEntryInt male_attack_1hand_1_to_5_miss530609 cChooserEntryInt male_attack_1hand_8_to_3160171 cChooserEntryInt male_attack_1hand_a_impact_8_to_3240477 cChooserEntryInt male_attack_1hand_a_impact_8_to_4_impact100968 cChooserEntryInt male_attack_1hand_a_impact_8_to_4_light540945 cChooserEntryInt male_attack_1hand_a_impact_8_to_4_miss360187 cChooserEntryInt male_attack_1hand_a_impact_miss_8_to_3550977 cChooserEntryInt male_attack_1hand_a_impact_miss_8_to_4_light190711 cChooserEntryInt male_attack_1hand_club_a280390 cChooserEntryInt male_attack_1hand_club_b440468 cChooserEntryInt male_attack_1hand_club_c570937 cChooserEntryInt male_attack_1hand_club_heavy560281 cChooserEntryInt male_attack_1hand_med_item cChooserEntryInt male_attack_1hand_slice_a_1310687 cChooserEntryInt male_attack_1hand_slice_a570937 cChooserEntryInt male_attack_1hand_slice_b_1410248 cChooserEntryInt male_attack_1hand_slice_b_2410310 cChooserEntryInt male_attack_1hand_slice_b_3370560 cChooserEntryInt male_attack_1hand_slice_b110046 cChooserEntryInt male_attack_1hand_slice_c100156 cChooserEntryInt male_attack_1hand_slice_heavy130015 cChooserEntryInt male_attack_1hand_slice_thrust_190546 cChooserEntryInt male_attack_1hand_thrust_1320796 cChooserEntryInt male_attack_1hand_weapon_kick80859 cChooserEntryInt male_attack_2h_thrust_pelvic_impale120341 cChooserEntryInt male_attack_2h_thrust_pelvic_miss550404 cChooserEntryInt male_attack_2hand_club_a80265 cChooserEntryInt male_attack_2hand_club_b280921 cChooserEntryInt male_attack_2hand_club_c20390 cChooserEntryInt male_attack_2hand_club_ground_180859 cChooserEntryInt male_attack_2hand_club_h470890 cChooserEntryInt male_attack_2hand_club_heavy160203 cChooserEntryInt male_attack_2hand_golf_swing160125 cChooserEntryInt male_attack_2hand_golf_swing380703 cChooserEntryInt male_attack_2hand_large_item_light cChooserEntryInt male_attack_2hand_slice_a580421 cChooserEntryInt male_attack_2hand_slice_b320093 cChooserEntryInt male_attack_2hand_slice_c30328 cChooserEntryInt male_attack_2hand_slice_heavy50669 cChooserEntryInt male_attack_2hand_stab_heavy_spear440843 cChooserEntryInt male_attack_2hand_thrust_8_to_4150828 cChooserEntryInt male_attack_2hand_thrust_heavy450855 cChooserEntryInt male_attack_baseball_bat_a530187 cChooserEntryInt male_attack_baseball_bat_b_220468 cChooserEntryInt male_attack_baseball_bat_b390 cChooserEntryInt male_attack_baseball_bat_ball_hit cChooserEntryInt male_attack_baseball_bat_c210015 cChooserEntryInt male_attack_baseball_bat_charge230453 cChooserEntryInt male_attack_baseball_bat_heavy30058 cChooserEntryInt male_attack_baseball_bat_pre_charge250083 cChooserEntryInt male_attack_bass_guitar_1_to_5_c230375 cChooserEntryInt male_attack_bass_guitar_a290015 cChooserEntryInt male_attack_bass_guitar_b460515 cChooserEntryInt male_attack_bass_guitar_c40921 cChooserEntryInt male_attack_bass_guitar_heavy470531 cChooserEntryInt male_attack_battleaxe_heavy470531 cChooserEntryInt male_attack_bowling_charge230593 cChooserEntryInt male_attack_bullskull_a60029 cChooserEntryInt male_attack_bullskull_b50982 cChooserEntryInt male_attack_bullskull_ground450044 cChooserEntryInt male_attack_cardboardbox_a350300 cChooserEntryInt male_attack_cardboardbox_b350331 cChooserEntryInt male_attack_cardboardbox_c330534 cChooserEntryInt male_attack_cash_register_a200271 cChooserEntryInt male_attack_cash_register_b190255 cChooserEntryInt male_attack_chainsaw_ground510500 cChooserEntryInt male_attack_chainsaw_heavy cChooserEntryInt male_attack_chainsaw_heavy_miss cChooserEntryInt male_attack_chainsaw_light_a cChooserEntryInt male_attack_chainsaw_light_b cChooserEntryInt male_attack_chair_ground290841 cChooserEntryInt male_attack_chair_heavy cChooserEntryInt male_attack_chair_impact100906 cChooserEntryInt male_attack_chair_light cChooserEntryInt male_attack_chair_low cChooserEntryInt male_attack_chair_lunge180531 cChooserEntryInt male_attack_chair_miss340093 cChooserEntryInt male_attack_condiment550937 cChooserEntryInt male_attack_croupier_8_to_4_impact510031 cChooserEntryInt male_attack_croupier_8_to_4_miss90328 cChooserEntryInt male_attack_croupier_impact420578 cChooserEntryInt male_attack_croupier_miss460968 cChooserEntryInt male_attack_curb_stomp cChooserEntryInt male_attack_curb_stomp_mechanical cChooserEntryInt male_attack_curb_stomp_smallbox cChooserEntryInt male_attack_curb_stomp_thrust cChooserEntryInt male_attack_defiler_charge_to_idle140906 cChooserEntryInt male_attack_defiler_charge10156 cChooserEntryInt male_attack_defiler_miss540734 cChooserEntryInt male_attack_defiler_transition530250 cChooserEntryInt male_attack_dolly_8_to_4_a150546 cChooserEntryInt male_attack_double_poleweapon_heavy200453 cChooserEntryInt male_attack_dragon_punch cChooserEntryInt male_attack_drop_kick cChooserEntryInt male_attack_drop_kick_impact_low520328 cChooserEntryInt male_attack_drop_kick_impact520328 cChooserEntryInt male_attack_drop_kick190390 cChooserEntryInt male_attack_elbow_drop cChooserEntryInt male_attack_electricrake_idle_to_loop520859 cChooserEntryInt male_attack_electricrake_loop_to_idle420953 cChooserEntryInt male_attack_electricrake_loop_to_idle460015 cChooserEntryInt male_attack_electricrake_loop300125 cChooserEntryInt male_attack_electricrake_loop440656 cChooserEntryInt male_attack_electricrake_miss120109 cChooserEntryInt male_attack_electricrake_turn_left140671 cChooserEntryInt male_attack_electricrake_turn_right140687 cChooserEntryInt male_attack_exsanguinator_a_down120671 cChooserEntryInt male_attack_exsanguinator_a_up120828 cChooserEntryInt male_attack_exsanguinator_miss40484 cChooserEntryInt male_attack_extinguisher_ground460718 cChooserEntryInt male_attack_extinguisher_heavy170421 cChooserEntryInt male_attack_extinguisher_light180250 cChooserEntryInt male_attack_extinguisher_light430421 cChooserEntryInt male_attack_extinguisher_loop50140 cChooserEntryInt male_attack_fieldgoal_kick cChooserEntryInt male_attack_fieldgoal_kick2 cChooserEntryInt male_attack_fieldgoal_kick3 cChooserEntryInt male_attack_fieldgoal_kick4 cChooserEntryInt male_attack_fire_axe_a80109 cChooserEntryInt male_attack_fire_axe_b440046 cChooserEntryInt male_attack_fire_axe_impact_miss370750 cChooserEntryInt male_attack_fire_axe_impact320968 cChooserEntryInt male_attack_flamethrower_light430093 cChooserEntryInt male_attack_fryingpan_impact100718 cChooserEntryInt male_attack_fryingpan_miss530640 cChooserEntryInt male_attack_garbagecan_a450750 cChooserEntryInt male_attack_garbagecan_b260680 cChooserEntryInt male_attack_garbagecan_c250462 cChooserEntryInt male_attack_grab_piledriver270984 cChooserEntryInt male_attack_handbag_a510362 cChooserEntryInt male_attack_heavykick560484 cChooserEntryInt male_attack_hurricane_kick70765 cChooserEntryInt male_attack_jump_kick190390 cChooserEntryInt male_attack_katana_a230250 cChooserEntryInt male_attack_katana_b230562 cChooserEntryInt male_attack_katana_c230640 cChooserEntryInt male_attack_katana_d190437 cChooserEntryInt male_attack_katana_lfoot_long360437 cChooserEntryInt male_attack_katana_lfoot_short200062 cChooserEntryInt male_attack_kick cChooserEntryInt male_attack_kick_mechanical cChooserEntryInt male_attack_kick_smallbox cChooserEntryInt male_attack_kick_thrust cChooserEntryInt male_attack_lance_a_1320968 cChooserEntryInt male_attack_lance_a_2310375 cChooserEntryInt male_attack_large_item_heavy60187 cChooserEntryInt male_attack_large_item_light_a70500 cChooserEntryInt male_attack_large_item_light_b390296 cChooserEntryInt male_attack_laser_sword_2_to_6_b530703 cChooserEntryInt male_attack_laser_sword_3_to_7_b120746 cChooserEntryInt male_attack_laser_sword_7_to_3_a120699 cChooserEntryInt male_attack_laser_sword_8_to_2_c410418 cChooserEntryInt male_attack_laser_sword_thrust530671 cChooserEntryInt male_attack_lawndart_a400125 cChooserEntryInt male_attack_lawnmower_7_to_3_a234 cChooserEntryInt male_attack_leadpipe_a560971 cChooserEntryInt male_attack_Leftcross_b cChooserEntryInt male_attack_Lefthook_b cChooserEntryInt male_attack_Leftuppercut_b cChooserEntryInt male_attack_lgbox_3_to_7_b530562 cChooserEntryInt male_attack_lgbox_4_to_8_b110625 cChooserEntryInt male_attack_lgbox_6_to_4_a440679 cChooserEntryInt male_attack_lgbox_7_to_3_a530562 cChooserEntryInt male_attack_lgbox_7_to_3_aa440710 cChooserEntryInt male_attack_lgbox_8_to_4_a20375 cChooserEntryInt male_attack_lgbox_8_to_6_heavy_a530609 cChooserEntryInt male_attack_meat_cleaver_a320765 cChooserEntryInt male_attack_meat_cleaver_b310359 cChooserEntryInt male_attack_meat_cleaver_heavy520500 cChooserEntryInt male_attack_meat_cleaver_miss110984 cChooserEntryInt male_attack_metalbarrier_3_to_7_b500656 cChooserEntryInt male_attack_metalbarrier_7_to_3_a500859 cChooserEntryInt male_attack_metalbarrier_8_to_6_heavy500984 cChooserEntryInt male_attack_miningpick_2_to_7_b140718 cChooserEntryInt male_attack_miningpick_7_to_3_a140734 cChooserEntryInt male_attack_miningpick_impact240015 cChooserEntryInt male_attack_miningpick_miss410765 cChooserEntryInt male_attack_musket_light cChooserEntryInt male_attack_paddle_push180828 cChooserEntryInt male_attack_paddlesaw_a cChooserEntryInt male_attack_paddlesaw_b cChooserEntryInt male_attack_paddlesaw_charge_to_idle cChooserEntryInt male_attack_paddlesaw_heavy cChooserEntryInt male_attack_paddlesaw_heavy_miss cChooserEntryInt male_attack_parablower_impact30812 cChooserEntryInt male_attack_parablower_miss100187 cChooserEntryInt male_attack_parablower160828 cChooserEntryInt male_attack_phone_kick240265 cChooserEntryInt male_attack_pitchdouble_a cChooserEntryInt male_attack_pitchdouble_b cChooserEntryInt male_attack_pitchdouble_c cChooserEntryInt male_attack_pitchfork_8_to_4170228 cChooserEntryInt male_attack_pitchfork_a_1220380 cChooserEntryInt male_attack_pitchfork_a_2160712 cChooserEntryInt male_attack_pitchfork_a_350978 cChooserEntryInt male_attack_pitchfork_b_170937 cChooserEntryInt male_attack_pitchfork_c cChooserEntryInt male_attack_pitchfork_heavy cChooserEntryInt male_attack_pitchfork_low cChooserEntryInt male_attack_poleweapon_8_to_460343 cChooserEntryInt male_attack_portablelawn_thrust_impact570609 cChooserEntryInt male_attack_portablelawn_thrust_miss570250 cChooserEntryInt male_attack_rifle_light cChooserEntryInt male_attack_rifle_low cChooserEntryInt male_attack_Rightcross_a cChooserEntryInt male_attack_Righthook_a cChooserEntryInt male_attack_Rightuppercut_a cChooserEntryInt male_attack_rocket_fireworks_impact60734 cChooserEntryInt male_attack_rolling_uppercut cChooserEntryInt male_attack_roulette_wheel_a320703 cChooserEntryInt male_attack_samurai_sword_a cChooserEntryInt male_attack_samurai_sword_b cChooserEntryInt male_attack_samurai_sword_c cChooserEntryInt male_attack_samurai_sword_cool_a380336 cChooserEntryInt male_attack_samurai_sword_cool_b380368 cChooserEntryInt male_attack_samurai_sword_cool_c360477 cChooserEntryInt male_attack_samurai_sword_low cChooserEntryInt male_attack_shoot_rifle_low cChooserEntryInt male_attack_shotgunpitchfork_heavy190671 cChooserEntryInt male_attack_shotgunpitchfork_miss_quick400187 cChooserEntryInt male_attack_shotgunpitchfork_miss290578 cChooserEntryInt male_attack_sledgehammer_1_to_5_a_ground_nv270617 cChooserEntryInt male_attack_sledgehammer_1_to_5_ground_choked_up580203 cChooserEntryInt male_attack_sledgehammer_1_to_5_ground_v2400468 cChooserEntryInt male_attack_sledgehammer_2_to_6_b_nv290274 cChooserEntryInt male_attack_sledgehammer_5_to_1_uppercut510109 cChooserEntryInt male_attack_sledgehammer_6_to_2_a_nv290305 cChooserEntryInt male_attack_sledgehammer_7_to_2140020 cChooserEntryInt male_attack_sledgehammer_heavy cChooserEntryInt male_attack_sledgehammer_light cChooserEntryInt male_attack_smallbox_7_to_3190953 cChooserEntryInt male_attack_smallbox_ground130669 cChooserEntryInt male_attack_smallbox_ground540921 cChooserEntryInt male_attack_smallbox_heavy370406 cChooserEntryInt male_attack_smallbox_light_a_1430265 cChooserEntryInt male_attack_smallbox_light_a290156 cChooserEntryInt male_attack_smallbox_light_b_1430203 cChooserEntryInt male_attack_smallbox_light_b540671 cChooserEntryInt male_attack_smallbox_light_c210578 cChooserEntryInt male_attack_smallbox_light_c220593 cChooserEntryInt male_attack_spear_a_1250328 cChooserEntryInt male_attack_spear_a_2531 cChooserEntryInt male_attack_spear_a_3515 cChooserEntryInt male_attack_spear_a_4100015 cChooserEntryInt male_attack_spear_a_520453 cChooserEntryInt male_attack_suitcase_a300468 cChooserEntryInt male_attack_suitcase_b300500 cChooserEntryInt male_attack_suitcase_ground360734 cChooserEntryInt male_attack_superman_punch cChooserEntryInt male_attack_superslicer_headbutt60500 cChooserEntryInt male_attack_sweep cChooserEntryInt male_attack_swing cChooserEntryInt male_attack_swing_1hand cChooserEntryInt male_attack_swing_through cChooserEntryInt male_attack_swing_through_1hand cChooserEntryInt male_attack_sword_1_to_5_c190078 cChooserEntryInt male_attack_sword_6_to_1_a360234 cChooserEntryInt male_attack_sword_6_to_1_b170968 cChooserEntryInt male_attack_sword_heavy cChooserEntryInt male_attack_swordshield_a130125 cChooserEntryInt male_attack_swordshield_a2180531 cChooserEntryInt male_attack_swordshield_b130093 cChooserEntryInt male_attack_swordshield_b2180234 cChooserEntryInt male_attack_swordshield_charge100828 cChooserEntryInt male_attack_swordshield_heavy150546 cChooserEntryInt male_attack_tikitorch_a160304 cChooserEntryInt male_attack_tikitorch_heavy160351 cChooserEntryInt male_attack_wheelchair_7_to_3_a234 cChooserEntryInt male_auger_heavy_7_to_3_a350921 cChooserEntryInt male_auger_idle240203 cChooserEntryInt male_auger_impact450968 cChooserEntryInt male_auger_miss130015 cChooserEntryInt male_auger_shoot260609 cChooserEntryInt male_auger_walk530609 cChooserEntryInt male_baseball_idle_to_toss_idle580968 cChooserEntryInt male_baseball_toss_hit200656 cChooserEntryInt male_baseball_toss_idle_loop500078 cChooserEntryInt male_baseball_toss_idle_to_idle150531 cChooserEntryInt male_battleaxe_3_to_7_b_nv560140 cChooserEntryInt male_battleaxe_7_to_3_a_nv570328 cChooserEntryInt male_beachball_throw480984 cChooserEntryInt male_bike_donut_left520296 cChooserEntryInt male_bike_donut_right520296 cChooserEntryInt male_bike_eject_impact_wall_back550140 cChooserEntryInt male_bike_eject_land_front60323 cChooserEntryInt male_bike_get_off_left cChooserEntryInt male_bike_get_off_left460220 cChooserEntryInt male_bike_get_off_right430939 cChooserEntryInt male_bike_get_on_left250968 cChooserEntryInt male_bike_get_on_left400296 cChooserEntryInt male_bike_get_on_left400532 cChooserEntryInt male_bike_get_on_right240657 cChooserEntryInt male_bike_get_on_right400532 cChooserEntryInt male_bike_get_on_right450578 cChooserEntryInt male_bike_powerslide_left30765 cChooserEntryInt male_bike_powerslide_right370109 cChooserEntryInt male_bike_reverse110860 cChooserEntryInt male_bike_reverse80765 cChooserEntryInt male_bike_with_child_reverse370404 cChooserEntryInt male_bike_with_child_stopped280950 cChooserEntryInt male_bitten430234 cChooserEntryInt male_blink_2430234 cChooserEntryInt male_blink_3430234 cChooserEntryInt male_blink430234 cChooserEntryInt male_bobstoy_inspect340937 cChooserEntryInt male_bowandarrow_idle_to_shoot_idle110741 cChooserEntryInt male_bowandarrow_shoot_idle_loop230413 cChooserEntryInt male_bowandarrow_shoot_idle_to_idle380663 cChooserEntryInt male_bowandarrow_shoot_loop470007 cChooserEntryInt male_bowie_knife_eviscerate540937 cChooserEntryInt male_bowie_knife_miss cChooserEntryInt male_bowl_zombie_head cChooserEntryInt male_bowling_idle_loop360750 cChooserEntryInt male_bowling_idle_to_idle150640 cChooserEntryInt male_bowling_idle_to_roll70203 cChooserEntryInt male_boykin_combat_idle_turn_180180031 cChooserEntryInt male_boykin_combat_idle_turn_90410562 cChooserEntryInt male_boykin_combat_idle_turn_neg180590906 cChooserEntryInt male_boykin_combat_idle_turn_neg90410781 cChooserEntryInt male_boykin_dodge_roll_forward180929 cChooserEntryInt male_boykin_explosion_hit_reaction_0530002 cChooserEntryInt male_boykin_explosion_hit_reaction_180450956 cChooserEntryInt male_boykin_get_up_from_back10265 cChooserEntryInt male_boykin_get_up_from_front160750 cChooserEntryInt male_boykin_get_up_from_front320406 cChooserEntryInt male_boykin_get_up_from_front390000 cChooserEntryInt male_boykin_hit_death_back580609 cChooserEntryInt male_boykin_hit_reaction_90_light430687 cChooserEntryInt male_boykin_hit_reaction_90_medium80625 cChooserEntryInt male_boykin_hit_reaction_90neg_light20109 cChooserEntryInt male_boykin_hit_reaction_90neg_medium180765 cChooserEntryInt male_boykin_hit_reaction_back390187 cChooserEntryInt male_boykin_hit_reaction_back400281 cChooserEntryInt male_boykin_hit_reaction_front180015 cChooserEntryInt male_boykin_hit_reaction_front220828 cChooserEntryInt male_boykin_idle_combat40609 cChooserEntryInt male_boykin_idle_combat510604 cChooserEntryInt male_boykin_idle_to_run350062 cChooserEntryInt male_boykin_run_machine_gun260578 cChooserEntryInt male_boykin_run_machine_gun320578 cChooserEntryInt male_boykin_run_machine_gun470796 cChooserEntryInt male_boykin_run_machine_gun490265 cChooserEntryInt male_brick_8_to_4_a_impact250640 cChooserEntryInt male_brick_8_to_4_a_miss400953 cChooserEntryInt male_bucket_a_impact_8_to_3500093 cChooserEntryInt male_bucket_a_impact_miss_8_to_3968 cChooserEntryInt male_bucket_overhead_slam_head_impact150453 cChooserEntryInt male_bucket_overhead_slam_head_miss330281 cChooserEntryInt male_burningskull_attack_a220765 cChooserEntryInt male_burningskull_attack_b220796 cChooserEntryInt male_carry_adult500501 cChooserEntryInt male_carry_adult530599 cChooserEntryInt male_carry_child_freefall_lfoot420843 cChooserEntryInt male_carry_child_freefall_rfoot410671 cChooserEntryInt male_carry_child_freefall_to_carry_idle_lfoot170218 cChooserEntryInt male_carry_child_freefall_to_carry_idle_rfoot170218 cChooserEntryInt male_carry_child_idle170703 cChooserEntryInt male_carry_child_kick190312 cChooserEntryInt male_carry_child_kick230687 cChooserEntryInt male_carry_child_kick260093 cChooserEntryInt male_carry_child_kick280406 cChooserEntryInt male_carry_female_freefall_lfoot240203 cChooserEntryInt male_carry_female_freefall_rfoot240171 cChooserEntryInt male_carry_female_freefall_to_carry_idle_lfoot350656 cChooserEntryInt male_carry_female_freefall_to_carry_idle_rfoot350640 cChooserEntryInt male_carry_female_survivor_into_from_stand500734 cChooserEntryInt male_carry_female_survivor_into500734 cChooserEntryInt male_carry_female_survivor_out_of_to_stand78 cChooserEntryInt male_carry_survivor_female_hitreaction_0240968 cChooserEntryInt male_carry_survivor_female_idle_to_run190437 cChooserEntryInt male_carry_survivor_female_idle490187 cChooserEntryInt male_carry_survivor_female_kick150625 cChooserEntryInt male_carry_survivor_female_run_to_idle_lfoot220062 cChooserEntryInt male_carry_survivor_female_run_to_idle_lfoot50062 cChooserEntryInt male_carry_survivor_female_run_to_idle_rfoot20312 cChooserEntryInt male_carry_survivor_female_run_to_idle_rfoot230546 cChooserEntryInt male_carry_survivor_female_run430921 cChooserEntryInt male_carry_survivor_female_step480437 cChooserEntryInt male_carry_survivor_male_hitreaction_0460750 cChooserEntryInt male_carry_survivor_male_into_piggyback420671 cChooserEntryInt male_carry_survivor_male_into_piggyback430578 cChooserEntryInt male_carry_survivor_male_into_piggyback60031 cChooserEntryInt male_carry_survivor_male_into_run390921 cChooserEntryInt male_carry_survivor_male_out_of_piggyback320343 cChooserEntryInt male_carry_survivor_male_run340828 cChooserEntryInt male_carry_survivor_male_step20531 cChooserEntryInt male_cart_heavy_stumble_7_to_3320078 cChooserEntryInt male_catch_zombie_clearout_2450765 cChooserEntryInt male_catch_zombie_clearout_3560140 cChooserEntryInt male_catch_zombie_clearout340025 cChooserEntryInt male_catch_zombie_slam540859 cChooserEntryInt male_cementsaw_impact30562 cChooserEntryInt male_cementsaw_light_a430609 cChooserEntryInt male_cementsaw_light_b430562 cChooserEntryInt male_cementsaw_miss490171 cChooserEntryInt male_cementsaw_thrust_torso160718 cChooserEntryInt male_chainsaw_heavy_3_to_7_b20750 cChooserEntryInt male_chainsaw_heavy_7_to_3_a40125 cChooserEntryInt male_chainsaw_pink_chuck_hump420093 cChooserEntryInt male_chainsaw_pink_chuck_spin410765 cChooserEntryInt male_chef_idle280010 cChooserEntryInt male_chefknife_impact360781 cChooserEntryInt male_chefknife_miss220296 cChooserEntryInt male_chopper_get_on_right517 cChooserEntryInt male_chopper_idle40095 cChooserEntryInt male_chuck_safehouse_save420875 cChooserEntryInt male_chuck_urinal_save420875 cChooserEntryInt male_climb_up_100cm cChooserEntryInt male_climb_up_140cm cChooserEntryInt male_climb_up_200cm570531 cChooserEntryInt male_climb_up_270cm560156 cChooserEntryInt male_climb_up_60cm cChooserEntryInt male_climb_up_70cm570531 cChooserEntryInt male_clothing_emote_arthur110109 cChooserEntryInt male_clothing_emote_ken270020 cChooserEntryInt male_clothing_emote_protoman110211 cChooserEntryInt male_combat_freefall_to_climb_up_to_idle cChooserEntryInt male_combat_idle_to_climb_up_to_idle_100cm cChooserEntryInt male_combat_idle_to_plate_idle250265 cChooserEntryInt male_combat_idle_vault cChooserEntryInt male_combogarage_combine140078 cChooserEntryInt male_condiment_idle_to_squirt_idle50069 cChooserEntryInt male_condiment_squirt_idle_to_idle350437 cChooserEntryInt male_condiment_squirt_idle_to_idle490287 cChooserEntryInt male_condiment_squirt_loop160022 cChooserEntryInt male_condiment_squirt_loop60390 cChooserEntryInt male_condiment_squirt_loop70100 cChooserEntryInt male_condiment_turn_left40819 cChooserEntryInt male_condiment_turn_right40834 cChooserEntryInt male_contestant_1_waiting_idle500540 cChooserEntryInt male_contestant_2_waiting_idle180259 cChooserEntryInt male_contestant_3_waiting_idle260415 cChooserEntryInt male_contestant_4_waiting_idle340915 cChooserEntryInt male_cowboy_dance310777 cChooserEntryInt male_dead_onback180421 cChooserEntryInt male_dead_onback330234 cChooserEntryInt male_dead_onbelly180421 cChooserEntryInt male_dead_onbelly330234 cChooserEntryInt male_death_fall_onback80440 cChooserEntryInt male_death_fall_onback90581 cChooserEntryInt male_defiler_2_to_6_b_nv470625 cChooserEntryInt male_defiler_6_to_2_a_nv470656 cChooserEntryInt male_defiler_jump_1_to_5_lfoot_long270578 cChooserEntryInt male_defiler_jump_1_to_5_lfoot_short90296 cChooserEntryInt male_dolly_idle_to_idle540437 cChooserEntryInt male_dolly_putdown460281 cChooserEntryInt male_door_close_pull_front_lhand410734 cChooserEntryInt male_door_close_pull_front_rhand460593 cChooserEntryInt male_door_close_push_front_lhand70296 cChooserEntryInt male_door_close_push_front_rhand150187 cChooserEntryInt male_door_freezer_open_lhand270203 cChooserEntryInt male_door_locked180625 cChooserEntryInt male_door_open_push_front_lhand160781 cChooserEntryInt male_door_open_push_front_rhand260890 cChooserEntryInt male_driller_miss510531 cChooserEntryInt male_drink_beerhat460406 cChooserEntryInt male_drinking_big_pop cChooserEntryInt male_drop_largebox cChooserEntryInt male_drop_largebox_combobench180033 cChooserEntryInt male_drop_lawnmower_combobench30209 cChooserEntryInt male_drop_mech cChooserEntryInt male_drop_mech_combobench530877 cChooserEntryInt male_drop_one_handed_club cChooserEntryInt male_drop_onehand_combobench290643 cChooserEntryInt male_drop_rifle cChooserEntryInt male_drop_rifle_combobench420799 cChooserEntryInt male_drop_shotgun_combobench200580 cChooserEntryInt male_drop_smallbox cChooserEntryInt male_drop_smallbox_combobench70440 cChooserEntryInt male_drop_thrust cChooserEntryInt male_drop_thrust_combobench440362 cChooserEntryInt male_drop_utilitycart_combobench450768 cChooserEntryInt male_drop_wheelchair_combobench320252 cChooserEntryInt male_eating_snacks590968 cChooserEntryInt male_electricrake_idle_loop20640 cChooserEntryInt male_exsanguinator_heavy70531 cChooserEntryInt male_exsanguinator_thrust_idle_to_impact580000 cChooserEntryInt male_exsanguinator_thrust_impact_loop120546 cChooserEntryInt male_exsanguinator_thrust_impact_to_idle220375 cChooserEntryInt male_extinguisher_idle_loop60109 cChooserEntryInt male_extinguisher_idle_to_shoot_idle440984 cChooserEntryInt male_extinguisher_shoot_idle_to_idle10453 cChooserEntryInt male_extinguisher_shoot510875 cChooserEntryInt male_extinguisher_turn_left510875 cChooserEntryInt male_extinguisher_turn_right510875 cChooserEntryInt male_eyes_closed580921 cChooserEntryInt male_fbazooka_idle_loop210171 cChooserEntryInt male_fbazooka_idle_loop280171 cChooserEntryInt male_fbazooka_idle_loop280843 cChooserEntryInt male_fbazooka_idle_to_mech_idle170656 cChooserEntryInt male_fbazooka_idle_to_mech_idle490687 cChooserEntryInt male_fbazooka_idle_to_mech_idle500937 cChooserEntryInt male_fbazooka_shoot160203 cChooserEntryInt male_fbazooka_turn_left420031 cChooserEntryInt male_fbazooka_turn_left420312 cChooserEntryInt male_fbazooka_turn_left530093 cChooserEntryInt male_fbazooka_turn_right410937 cChooserEntryInt male_fbazooka_turn_right420312 cChooserEntryInt male_fbazooka_turn_right530109 cChooserEntryInt male_fightface_10430234 cChooserEntryInt male_fightface_2430234 cChooserEntryInt male_fightface_3430234 cChooserEntryInt male_fightface_4430234 cChooserEntryInt male_fightface_5430234 cChooserEntryInt male_fightface_6430234 cChooserEntryInt male_fightface_7430234 cChooserEntryInt male_fightface_8430234 cChooserEntryInt male_fightface_9430234 cChooserEntryInt male_fightface430234 cChooserEntryInt male_flamethrower_idle_to_idle530375 cChooserEntryInt male_flaminggloves_impact270421 cChooserEntryInt male_flaminggloves_miss200062 cChooserEntryInt male_football_idle_to_throw_idle540734 cChooserEntryInt male_football_throw_idle_loop280687 cChooserEntryInt male_football_throw_idle_to_idle200453 cChooserEntryInt male_football_throw_idle_to_throw390218 cChooserEntryInt male_football_throw60703 cChooserEntryInt male_freefall cChooserEntryInt male_freefall20631 cChooserEntryInt male_freefall50131 cChooserEntryInt male_gas_struggle_back_onground_bite310890 cChooserEntryInt male_gas_struggle_back_onground_idle210015 cChooserEntryInt male_gas_struggle_back_onground_pushoff580250 cChooserEntryInt male_gas_struggle_front_onground_bite120375 cChooserEntryInt male_gas_struggle_front_onground_idle210046 cChooserEntryInt male_gas_struggle_front_onground_pushoff580250 cChooserEntryInt male_gas_struggle_standing_back_bite460625 cChooserEntryInt male_gas_struggle_standing_back_idle290453 cChooserEntryInt male_gas_struggle_standing_back_idle360843 cChooserEntryInt male_gas_struggle_standing_back_into40906 cChooserEntryInt male_gas_struggle_standing_back_pushoff200609 cChooserEntryInt male_gas_struggle_standing_back_to_onground270453 cChooserEntryInt male_gas_struggle_standing_front_bite460593 cChooserEntryInt male_gas_struggle_standing_front_idle290468 cChooserEntryInt male_gas_struggle_standing_front_idle360828 cChooserEntryInt male_gas_struggle_standing_front_into40890 cChooserEntryInt male_gas_struggle_standing_front_pushoff200593 cChooserEntryInt male_gas_struggle_standing_front_to_onground270437 cChooserEntryInt male_gascan_overhead_slam_head_impact40328 cChooserEntryInt male_gascan_overhead_slam_head_miss240515 cChooserEntryInt male_gemblower_shoot270828 cChooserEntryInt male_get_off_girls_bike30932 cChooserEntryInt male_get_on_girls_bike580569 cChooserEntryInt male_get_up_from_front270328 cChooserEntryInt male_get_up_from_on_back10265 cChooserEntryInt male_get_up_from_on_back330578 cChooserEntryInt male_get_up_from_on_back340703 cChooserEntryInt male_getin_wheelchair_tank60828 cChooserEntryInt male_getincar_driverside340317 cChooserEntryInt male_getincar_driverside80625 cChooserEntryInt male_getingolfkart_driverside210390 cChooserEntryInt male_getinsportscar_driverside460354 cChooserEntryInt male_getout_wheelchair_tank200833 cChooserEntryInt male_getoutgolfkart_driverside400843 cChooserEntryInt male_getouthummer_driverside310765 cChooserEntryInt male_getoutsportscar_driverside590312 cChooserEntryInt male_girls_bike_reverse110860 cChooserEntryInt male_girls_bike_reverse160578 cChooserEntryInt male_golfclub_chargeup_loop230796 cChooserEntryInt male_golfclub_chargeup_loop480734 cChooserEntryInt male_golfclub_idle_to_swing_to_idle470343 cChooserEntryInt male_golfclub_idle_to_teeoff_idle30218 cChooserEntryInt male_golfclub_teeoff_idle_loop250093 cChooserEntryInt male_golfclub_teeoff_idle_to_chargeup_loop_idle210414 cChooserEntryInt male_golfclub_teeoff_idle_to_idle540546 cChooserEntryInt male_golfclub_teeoff_to_swing_to_teeoff140937 cChooserEntryInt male_grab_arm_ripoff_front570843 cChooserEntryInt male_grab_arm_ripoff570843 cChooserEntryInt male_grab_bellyflop cChooserEntryInt male_grab_face_breaker_front170609 cChooserEntryInt male_grab_face_breaker170609 cChooserEntryInt male_grab_powerbomb cChooserEntryInt male_grab_upandover_idle430609 cChooserEntryInt male_grab_upandover_toss290734 cChooserEntryInt male_grab_upandover_walk350953 cChooserEntryInt male_grapple_toss_exit_positive270984 cChooserEntryInt male_hand_attack_hedgeclipper_hands90390 cChooserEntryInt male_hand_fist_pose460578 cChooserEntryInt male_hand_hold_2x4_pose510437 cChooserEntryInt male_hand_hold_6shooter_pose490062 cChooserEntryInt male_hand_hold_bowlingball_pose140516 cChooserEntryInt male_hand_hold_chair_pose_lhand580156 cChooserEntryInt male_hand_hold_chair_pose40562 cChooserEntryInt male_hand_hold_drink_pose530471 cChooserEntryInt male_hand_hold_drum_pose160188 cChooserEntryInt male_hand_hold_firecracker_pose360250 cChooserEntryInt male_hand_hold_flush_largebox_pose260468 cChooserEntryInt male_hand_hold_football_pose570140 cChooserEntryInt male_hand_hold_guitar_pose40578 cChooserEntryInt male_hand_hold_molotov_pose510437 cChooserEntryInt male_hand_hold_pole_pose470437 cChooserEntryInt male_hand_hold_scissors_pose160188 cChooserEntryInt male_hand_hold_smallbox_pose40546 cChooserEntryInt male_hand_hold_spraypaint_pose20140 cChooserEntryInt male_hand_hold_teddybearsentrygun_pose470109 cChooserEntryInt male_hand_hold_thick_pole_pose60203 cChooserEntryInt male_hand_idle_pose220578 cChooserEntryInt male_hand_M16_pose220828 cChooserEntryInt male_hand_M16_pose80406 cChooserEntryInt male_hand_right_hold_bucket_pose359 cChooserEntryInt male_hand_right_hold_pole_pose520296 cChooserEntryInt male_hand_shocker_pose570312 cChooserEntryInt male_hand_spread_both580453 cChooserEntryInt male_hand_spread_left580453 cChooserEntryInt male_hand_spread_right560984 cChooserEntryInt male_hangman_idle_combat100822 cChooserEntryInt male_hangman_idle_combat330515 cChooserEntryInt male_hangman_idle_to_run550828 cChooserEntryInt male_hangman_run_billyclub550679 cChooserEntryInt male_hangman_run_quick_billyclub550679 cChooserEntryInt male_hangman_run_to_idle180953 cChooserEntryInt male_hangman_turn_180510296 cChooserEntryInt male_hangman_turn_180neg80453 cChooserEntryInt male_hangman_turn_90320750 cChooserEntryInt male_hangman_turn_90neg410593 cChooserEntryInt male_hangman_walk_billyclub200000 cChooserEntryInt male_happyface_1210968 cChooserEntryInt male_healthy200296 cChooserEntryInt male_highroller_dash_stalker550984 cChooserEntryInt male_highroller_idle_stalker180859 cChooserEntryInt male_highroller_idle_stalker30041 cChooserEntryInt male_highroller_idle_to_0_run_stalker340156 cChooserEntryInt male_highroller_molotov_death540796 cChooserEntryInt male_highroller_run_to_idle_stalker450750 cChooserEntryInt male_highroller_stalker_death220296 cChooserEntryInt male_highroller_turn_180_molotov180031 cChooserEntryInt male_highroller_turn_180neg_molotov200125 cChooserEntryInt male_highroller_turn_90_molotov360343 cChooserEntryInt male_highroller_turn_90neg_molotov500 cChooserEntryInt male_hit_reaction_airborne_land_back450046 cChooserEntryInt male_hit_reaction_airborne_land_front380421 cChooserEntryInt male_hitreaction_catch_clearout_1470734 cChooserEntryInt male_hitreaction_catch_clearout_2_1370984 cChooserEntryInt male_hitreaction_catch_clearout_2_2380000 cChooserEntryInt male_hitreaction_catch_clearout_3_1380000 cChooserEntryInt male_hitreaction_catch_clearout_3_2380015 cChooserEntryInt male_hitreaction_catch_clearout_3_3370984 cChooserEntryInt male_hitreaction_heavy_0430578 cChooserEntryInt male_hitreaction_heavy_180430674 cChooserEntryInt male_hitreaction_heavy_180540018 cChooserEntryInt male_hitreaction_heavy_180550049 cChooserEntryInt male_hitreaction_inair_stumble cChooserEntryInt male_hitreaction_light_0180015 cChooserEntryInt male_hitreaction_light_0220828 cChooserEntryInt male_hitreaction_light_0300109 cChooserEntryInt male_hitreaction_light_0310078 cChooserEntryInt male_hitreaction_light_0310953 cChooserEntryInt male_hitreaction_light_18020125 cChooserEntryInt male_hitreaction_light_18030437 cChooserEntryInt male_hitreaction_light_180370375 cChooserEntryInt male_hitreaction_light_18040437 cChooserEntryInt male_hitreaction_light_90430687 cChooserEntryInt male_hitreaction_light_90540375 cChooserEntryInt male_hitreaction_light_90550218 cChooserEntryInt male_hitreaction_light_90560250 cChooserEntryInt male_hitreaction_light_90neg15 cChooserEntryInt male_hitreaction_light_90neg450437 cChooserEntryInt male_hitreaction_light_90neg460312 cChooserEntryInt male_hitreaction_light_90neg470328 cChooserEntryInt male_hitreaction_medium_180160828 cChooserEntryInt male_hitreaction_medium_180180250 cChooserEntryInt male_hitreaction_medium_180190140 cChooserEntryInt male_hitreaction_medium_180370250 cChooserEntryInt male_hitreaction_medium_9060234 cChooserEntryInt male_hitreaction_medium_9070312 cChooserEntryInt male_hitreaction_medium_9080359 cChooserEntryInt male_hitreaction_medium_9090343 cChooserEntryInt male_hitreaction_medium_90neg180765 cChooserEntryInt male_hitreaction_medium_90neg320328 cChooserEntryInt male_hitreaction_medium_90neg330250 cChooserEntryInt male_hitreaction_medium_90neg340250 cChooserEntryInt male_idle_1h_blade cChooserEntryInt male_idle_1h_blade50015 cChooserEntryInt male_idle_barrel1 cChooserEntryInt male_idle_boxing_guard_to_idle580046 cChooserEntryInt male_idle_boxing_guard190531 cChooserEntryInt male_idle_cart cChooserEntryInt male_idle_chainsaw190578 cChooserEntryInt male_idle_chair cChooserEntryInt male_idle_combat_to_run_1hand_object1 cChooserEntryInt male_idle_combat_to_run10171 cChooserEntryInt male_idle_combat_to_run150859 cChooserEntryInt male_idle_combat_to_run190531 cChooserEntryInt male_idle_combat_to_run370468 cChooserEntryInt male_idle_combat_to_run410609 cChooserEntryInt male_idle_combat_to_run430046 cChooserEntryInt male_idle_combat_to_run540500 cChooserEntryInt male_idle_combat_to_run80937 cChooserEntryInt male_idle_combat_to_run80984 cChooserEntryInt male_idle_combat_turn_180230796 cChooserEntryInt male_idle_combat_turn_180250203 cChooserEntryInt male_idle_combat_turn_180neg30968 cChooserEntryInt male_idle_combat_turn_180neg40875 cChooserEntryInt male_idle_combat_turn_90460312 cChooserEntryInt male_idle_combat_turn_90470250 cChooserEntryInt male_idle_combat_turn_90neg460437 cChooserEntryInt male_idle_combat_turn_90neg470531 cChooserEntryInt male_idle_combat190311 cChooserEntryInt male_idle_combat290667 cChooserEntryInt male_idle_combat320343 cChooserEntryInt male_idle_combat510220 cChooserEntryInt male_idle_combat60500 cChooserEntryInt male_idle_combat70113 cChooserEntryInt male_idle_combo_paddlesaw cChooserEntryInt male_idle_cover cChooserEntryInt male_idle_drive_cart440031 cChooserEntryInt male_idle_drive_hummer290046 cChooserEntryInt male_idle_dumpster cChooserEntryInt male_idle_flamethrower260656 cChooserEntryInt male_idle_garden_cart cChooserEntryInt male_idle_grab_queen80125 cChooserEntryInt male_idle_grab_queen80656 cChooserEntryInt male_idle_hamsterball cChooserEntryInt male_idle_injured_mech cChooserEntryInt male_idle_injured_rifle cChooserEntryInt male_idle_injured_rifle1 cChooserEntryInt male_idle_injured_rifle430796 cChooserEntryInt male_idle_injured_shotgun cChooserEntryInt male_idle_injured_thrust cChooserEntryInt male_idle_kayakpaddle cChooserEntryInt male_idle_largebox_injured cChooserEntryInt male_idle_mech_injured_to_run_injured cChooserEntryInt male_idle_mech_to_injured_mech_idle cChooserEntryInt male_idle_mech_to_run cChooserEntryInt male_idle_mech460765 cChooserEntryInt male_idle_on_phone cChooserEntryInt male_idle_phone_jump_freefall390437 cChooserEntryInt male_idle_phone_jump_land180062 cChooserEntryInt male_idle_phone_jump_land190562 cChooserEntryInt male_idle_phone_jump_start110937 cChooserEntryInt male_idle_pistol80703 cChooserEntryInt male_idle_portablelawn150500 cChooserEntryInt male_idle_relax cChooserEntryInt male_idle_relax10265 cChooserEntryInt male_idle_relax110187 cChooserEntryInt male_idle_relax210281 cChooserEntryInt male_idle_relax240453 cChooserEntryInt male_idle_relax240828 cChooserEntryInt male_idle_relax300531 cChooserEntryInt male_idle_relax400093 cChooserEntryInt male_idle_relax480890 cChooserEntryInt male_idle_relax510515 cChooserEntryInt male_idle_relax80281 cChooserEntryInt male_idle_relax90015 cChooserEntryInt male_idle_rifle cChooserEntryInt male_idle_rifle_garden_cart cChooserEntryInt male_idle_rifle_step_injured480562 cChooserEntryInt male_idle_rifle_step200125 cChooserEntryInt male_idle_rifle_to_run_injured50968 cChooserEntryInt male_idle_rifle_to_run_rifle550390 cChooserEntryInt male_idle_rifle_turn_180510625 cChooserEntryInt male_idle_rifle_turn_180neg60078 cChooserEntryInt male_idle_rifle_turn_90200125 cChooserEntryInt male_idle_rifle_turn_90neg350156 cChooserEntryInt male_idle_rifle1 cChooserEntryInt male_idle_rifle2 cChooserEntryInt male_idle_rifle270671 cChooserEntryInt male_idle_rifle80031 cChooserEntryInt male_idle_samurai_sword70500 cChooserEntryInt male_idle_shotgun cChooserEntryInt male_idle_smallbox_to_run_injured cChooserEntryInt male_idle_smallbox150500 cChooserEntryInt male_idle_smallbox530703 cChooserEntryInt male_idle_sniper cChooserEntryInt male_idle_stand_superbike390 cChooserEntryInt male_idle_stand_superbike40095 cChooserEntryInt male_idle_stand_superbike40843 cChooserEntryInt male_idle_stand_superbike540500 cChooserEntryInt male_idle_throw_bat_ball380078 cChooserEntryInt male_idle_throw_bat_ball410671 cChooserEntryInt male_idle_throw_chair cChooserEntryInt male_idle_throw_chair70671 cChooserEntryInt male_idle_throw_large_object cChooserEntryInt male_idle_throw_large_object140546 cChooserEntryInt male_idle_throw_pitchfork cChooserEntryInt male_idle_throw_pitchfork380921 cChooserEntryInt male_idle_throw_plates280453 cChooserEntryInt male_idle_throw_spear220500 cChooserEntryInt male_idle_throw_spear470912 cChooserEntryInt male_idle_thrust_injured_to_run_injured cChooserEntryInt male_idle_thrust_to_injured_thrust_idle cChooserEntryInt male_idle_thrust290281 cChooserEntryInt male_idle_tikki_torch cChooserEntryInt male_idle_to_bowling_idle370578 cChooserEntryInt male_idle_to_dolly_idle250312 cChooserEntryInt male_idle_to_flamethrower_idle440453 cChooserEntryInt male_idle_to_hang cChooserEntryInt male_idle_to_idle_boxing_guard40687 cChooserEntryInt male_idle_to_run_2hand_object cChooserEntryInt male_idle_to_run_2hand_object400515 cChooserEntryInt male_idle_to_run_2hand_object410781 cChooserEntryInt male_idle_to_run_smallbox560250 cChooserEntryInt male_idle_to_shield_guard120343 cChooserEntryInt male_idle_to_tennis_idle400390 cChooserEntryInt male_idle_to_walk560359 cChooserEntryInt male_idle_winchester cChooserEntryInt male_ied_4_to_8_b450140 cChooserEntryInt male_into_cover cChooserEntryInt male_jack_attack_pistol_whip_heavy cChooserEntryInt male_jack_death_slow160265 cChooserEntryInt male_jack_idle290875 cChooserEntryInt male_jack_run520312 cChooserEntryInt male_jared_safehouse_death200812 cChooserEntryInt male_jump_to_idle_roll cChooserEntryInt male_jump_to_run cChooserEntryInt male_katie_attack_kick530890 cChooserEntryInt male_keg_idle_to_spray_idle580984 cChooserEntryInt male_keg_loop190140 cChooserEntryInt male_keg_loop220671 cChooserEntryInt male_keg_quick_attack390656 cChooserEntryInt male_keg_shoot160828 cChooserEntryInt male_keg_spray_idle_to_idle140765 cChooserEntryInt male_keg_spray_idle_to_idle80937 cChooserEntryInt male_keg_turn_left410265 cChooserEntryInt male_keg_turn_right410281 cChooserEntryInt male_knifegloves_2_to_6_b230015 cChooserEntryInt male_knifegloves_8_to_4_a260109 cChooserEntryInt male_knifegloves_gut_punch_impact550109 cChooserEntryInt male_knifegloves_gut_punch_miss240703 cChooserEntryInt male_lance_charge_to_thrustidle430296 cChooserEntryInt male_lance_charge20173 cChooserEntryInt male_lance_thrust550032 cChooserEntryInt male_lance_thrustidle_to_charge340142 cChooserEntryInt male_land_to_idle cChooserEntryInt male_largebox_jump_to_idle_lfoot cChooserEntryInt male_largebox_jump_to_idle_rfoot cChooserEntryInt male_lawndart_full_throw530937 cChooserEntryInt male_lawndart_idle_loop590984 cChooserEntryInt male_lawndart_idle_to_throw_idle180281 cChooserEntryInt male_lawndart_throw_idle_to_idle20859 cChooserEntryInt male_lawndart_throw250203 cChooserEntryInt male_lawnmower_handles_idle_loop170468 cChooserEntryInt male_lawnmower_handles_idle_to_idle10703 cChooserEntryInt male_lawnmower_handles_idle_to_pull_backwards470375 cChooserEntryInt male_lawnmower_handles_idle_to_run_low310375 cChooserEntryInt male_lawnmower_handles_idle_to_run470218 cChooserEntryInt male_lawnmower_idle_to_handles_idle320031 cChooserEntryInt male_lawnmower_pull_backwards_loop210187 cChooserEntryInt male_lawnmower_pull_backwards_to_handles_idle260234 cChooserEntryInt male_lawnmower_run_low_to_handles_idle240437 cChooserEntryInt male_lawnmower_run_low_to_run240171 cChooserEntryInt male_lawnmower_run_low470812 cChooserEntryInt male_lawnmower_run_to_handles_idle40078 cChooserEntryInt male_lawnmower_run_to_run_low400578 cChooserEntryInt male_lawnmower_run312 cChooserEntryInt male_lawnmower_turn_left430312 cChooserEntryInt male_lawnmower_turn_right520703 cChooserEntryInt male_leafblower_idle_loop30125 cChooserEntryInt male_leafblower_idle_to_mech_idle130953 cChooserEntryInt male_leafblower_shoot_loop460828 cChooserEntryInt male_leafblower_shoot_loop520968 cChooserEntryInt male_leafblower_turn_left240000 cChooserEntryInt male_leafblower_turn_right240000 cChooserEntryInt male_lgbox_1_to_5_a_v240046 cChooserEntryInt male_lgbox_1_to_5_impact10750 cChooserEntryInt male_lgbox_1_to_5_miss480703 cChooserEntryInt male_lgbox_2_to_6_b530562 cChooserEntryInt male_lgbox_6_to_2_a510515 cChooserEntryInt male_lgbox_idle cChooserEntryInt male_lgbox_idle_to_overhead_throw_idle350703 cChooserEntryInt male_lgbox_idle_to_overshoulder_throw_idle30046 cChooserEntryInt male_lgbox_idle_to_run cChooserEntryInt male_lgbox_jump_to_idle_heavy20937 cChooserEntryInt male_lgbox_overhead_throw_idle_loop590500 cChooserEntryInt male_lgbox_overhead_throw_idle_to_idle70828 cChooserEntryInt male_lgbox_overhead_throw_idle_to_throw100343 cChooserEntryInt male_lgbox_overshoulder_throw_idle350562 cChooserEntryInt male_lgbox_overshoulder_throw530109 cChooserEntryInt male_lgbox_run cChooserEntryInt male_lgbox_run_jump_freefall_lfoot cChooserEntryInt male_lgbox_run_jump_freefall_rfoot cChooserEntryInt male_lgbox_run_jump_land_lfoot cChooserEntryInt male_lgbox_run_jump_land_rfoot cChooserEntryInt male_lgbox_run_push cChooserEntryInt male_lgbox_run_to_jump_lfoot cChooserEntryInt male_lgbox_run_to_jump_rfoot cChooserEntryInt male_lgbox_throw_behind cChooserEntryInt male_lgbox_throw_behind190671 cChooserEntryInt male_lgbox_throw_behind310406 cChooserEntryInt male_lgbox_throw_behind50875 cChooserEntryInt male_lgboxidle_throw_combatidle150203 cChooserEntryInt male_mech_idle_to_fbazooka_idle230000 cChooserEntryInt male_mech_idle_to_fbazooka_idle270343 cChooserEntryInt male_mech_idle_to_fbazooka_idle340421 cChooserEntryInt male_mech_idle_to_leafblower_idle580390 cChooserEntryInt male_mech_jump_to_idle_lfoot cChooserEntryInt male_mech_jump_to_idle_rfoot cChooserEntryInt male_mech_pull_start280515 cChooserEntryInt male_mech_run_jump_freefall_lfoot cChooserEntryInt male_mech_run_jump_freefall_rfoot cChooserEntryInt male_mech_run_jump_land_lfoot cChooserEntryInt male_mech_run_jump_land_rfoot cChooserEntryInt male_mech_run_to_jump_lfoot cChooserEntryInt male_mech_run_to_jump_rfoot cChooserEntryInt male_mech_throw_behind cChooserEntryInt male_mechanical_1_to_5_ground310171 cChooserEntryInt male_mechanical_heavy_3_to_7_b370609 cChooserEntryInt male_mechanical_heavy_7_to_3_a400421 cChooserEntryInt male_mechanical_idle_to_throw_idle430937 cChooserEntryInt male_mechanical_throw_idle_loop330515 cChooserEntryInt male_mechanical_throw_idle_to_idle70031 cChooserEntryInt male_mechanical_throw_idle_to_throw450921 cChooserEntryInt male_mildsupriseface_1210984 cChooserEntryInt male_minigame_moose_attack_a_to_charge260968 cChooserEntryInt male_minigame_moose_attack_a170859 cChooserEntryInt male_minigame_moose_attack_b_to_charge260968 cChooserEntryInt male_minigame_moose_attack_b170859 cChooserEntryInt male_minigame_moose_attack_swing_from_idle_group cChooserEntryInt male_minigame_moose_attack_toss_left410890 cChooserEntryInt male_minigame_moose_attack_toss_right410875 cChooserEntryInt male_minigame_run_attack_moosehead_from_b320734 cChooserEntryInt male_minigame_run_attack_moosehead320734 cChooserEntryInt male_mmaspikedgloves_chest_impact430734 cChooserEntryInt male_mmaspikedgloves_chest_miss270671 cChooserEntryInt male_mmaspikedgloves_jab_left_b330015 cChooserEntryInt male_mmaspikedgloves_jab_right_a330328 cChooserEntryInt male_mmaspikedgloves_kick_c330468 cChooserEntryInt male_mmaspikedgloves_knee_c330593 cChooserEntryInt male_moose_attack_a_to_charge160437 cChooserEntryInt male_moose_attack_a470968 cChooserEntryInt male_moose_attack_b_to_charge260484 cChooserEntryInt male_moose_attack_b906 cChooserEntryInt male_moose_idle_to_2hand_throw_overhead_idle320984 cChooserEntryInt male_moosehead_start_button_1110640 cChooserEntryInt male_npc_idle_alert120078 cChooserEntryInt male_npc_idle_injured140093 cChooserEntryInt male_npc_idle_onback160640 cChooserEntryInt male_overshoulder_throw_idle_to_lgbox_idle430062 cChooserEntryInt male_paddlesaw_idle_loop90671 cChooserEntryInt male_painting_impact270437 cChooserEntryInt male_painting_miss_1_to_5562 cChooserEntryInt male_parasol_charge_to_thrustidle100906 cChooserEntryInt male_parasol_charge_to_thrustidle430296 cChooserEntryInt male_parasol_charge40171 cChooserEntryInt male_parasol_thrust270859 cChooserEntryInt male_parasol_thrustidle_to_charge530046 cChooserEntryInt male_pickup_chair cChooserEntryInt male_pickup_chair520643 cChooserEntryInt male_pickup_hat_low cChooserEntryInt male_pickup_hat_medium cChooserEntryInt male_pickup_hat_medium60627 cChooserEntryInt male_pickup_largebox_counter cChooserEntryInt male_pickup_largebox_counter2 cChooserEntryInt male_pickup_largebox_counter200283 cChooserEntryInt male_pickup_largebox_counter430908 cChooserEntryInt male_pickup_largebox_low cChooserEntryInt male_pickup_largebox_low_med cChooserEntryInt male_pickup_largebox_low510921 cChooserEntryInt male_pickup_largebox_wall cChooserEntryInt male_pickup_largebox_wall2 cChooserEntryInt male_pickup_mech_high cChooserEntryInt male_pickup_mech_low cChooserEntryInt male_pickup_mech_medium cChooserEntryInt male_pickup_mech_medium110737 cChooserEntryInt male_pickup_moosehead cChooserEntryInt male_pickup_moosehead150033 cChooserEntryInt male_pickup_moosehead430643 cChooserEntryInt male_pickup_rifle_low cChooserEntryInt male_pickup_rifle_medium cChooserEntryInt male_pickup_rifle_medium330955 cChooserEntryInt male_pickup_rifle_wall cChooserEntryInt male_pickup_small_item_high cChooserEntryInt male_pickup_small_item_low cChooserEntryInt male_pickup_small_item_medium cChooserEntryInt male_pickup_small_item_medium570862 cChooserEntryInt male_pickup_small_item_medium90643 cChooserEntryInt male_pickup_smallbox_high cChooserEntryInt male_pickup_smallbox_low cChooserEntryInt male_pickup_smallbox_medium cChooserEntryInt male_pickup_smallbox_medium190283 cChooserEntryInt male_pickup_spear cChooserEntryInt male_pickup_spear_high cChooserEntryInt male_pickup_spear_medium cChooserEntryInt male_pickup_spear_medium340846 cChooserEntryInt male_pivot_cart_90 cChooserEntryInt male_pivot_cart_90neg cChooserEntryInt male_place_on_zombie_barrel400968 cChooserEntryInt male_place_prop_on_zombie_head280734 cChooserEntryInt male_place_prop_on_zombie_head400968 cChooserEntryInt male_platelauncher_shoot530062 cChooserEntryInt male_poker_strip_1150065 cChooserEntryInt male_poker_strip_2150081 cChooserEntryInt male_poker_strip_3150081 cChooserEntryInt male_poker_strip_4150096 cChooserEntryInt male_poker_strip_5150096 cChooserEntryInt male_portablelawnmower_1_to_5_impact350890 cChooserEntryInt male_portablelawnmower_1_to_5_miss160015 cChooserEntryInt male_portablelawnmower_1_to_5_miss60125 cChooserEntryInt male_portablelawnmower_pull_start110468 cChooserEntryInt male_portablelawnmower_pull_start70390 cChooserEntryInt male_pose_hero_02380657 cChooserEntryInt male_pose_hero_03130907 cChooserEntryInt male_pose_hero_04220390 cChooserEntryInt male_pose_hero_05200562 cChooserEntryInt male_pose_hero120921 cChooserEntryInt male_postman_combat_idle572 cChooserEntryInt male_postman_death906 cChooserEntryInt male_postman_dodge_left590795 cChooserEntryInt male_postman_dodge_right60559 cChooserEntryInt male_postman_idle_to_run090414 cChooserEntryInt male_postman_idle_to_run180490179 cChooserEntryInt male_postman_idle_to_walk0140679 cChooserEntryInt male_postman_idle_to_walk180450101 cChooserEntryInt male_postman_locomotion_idle_to_turn_90390189 cChooserEntryInt male_postman_locomotion_idle_to_turn_90neg470658 cChooserEntryInt male_postman_locomotion_idle_to_turn180393 cChooserEntryInt male_postman_locomotion_idle_to_turn180neg70768 cChooserEntryInt male_postman_run0_180_to_idle500090 cChooserEntryInt male_postman_run0_180neg_to_idle60860 cChooserEntryInt male_postman_run0_180neg_to_run140404 cChooserEntryInt male_postman_run0_lfoot_throw_mailbomb20421 cChooserEntryInt male_postman_run0_look_behind_left270378 cChooserEntryInt male_postman_run0_look_behind_right560668 cChooserEntryInt male_postman_run0_rfoot_throw_mailbomb580281 cChooserEntryInt male_postman_run0_throw_mailbomb500293 cChooserEntryInt male_postman_run0_to_180_run220119 cChooserEntryInt male_postman_run0_to_idle170945 cChooserEntryInt male_postman_run0490686 cChooserEntryInt male_postman_run0550867 cChooserEntryInt male_postman_run180_to_idle560429 cChooserEntryInt male_postman_run180320039 cChooserEntryInt male_postman_shoot_look_around110242 cChooserEntryInt male_postman_shoot10156 cChooserEntryInt male_postman_shotgun_burst270281 cChooserEntryInt male_postman_shotgun_dive_roll310406 cChooserEntryInt male_postman_turn180430117 cChooserEntryInt male_postman_turn180neg120824 cChooserEntryInt male_postman_turn90260836 cChooserEntryInt male_postman_turn90neg360148 cChooserEntryInt male_postman_walk0_to_idle240539 cChooserEntryInt male_postman_walk030914 cChooserEntryInt male_postman_walk180_to_idle520398 cChooserEntryInt male_postman_walk180350664 cChooserEntryInt male_power_guitar_attack_full350718 cChooserEntryInt male_power_guitar_idle_to_loop_to_idle350671 cChooserEntryInt male_power_guitar_loop_to_idle150906 cChooserEntryInt male_power_guitar_loop590625 cChooserEntryInt male_protoman_idle_to_shoot_idle430046 cChooserEntryInt male_protoman_shoot_idle_to_idle250984 cChooserEntryInt male_protoman_shoot_idle530781 cChooserEntryInt male_protoman_shoot120339 cChooserEntryInt male_push_elevator30781 cChooserEntryInt male_put_on_superslicer_high380281 cChooserEntryInt male_put_on_superslicer_medium170250 cChooserEntryInt male_put_on_superslicer330703 cChooserEntryInt male_put_on_superslicer70296 cChooserEntryInt male_pylon_overhead_breakout20109 cChooserEntryInt male_pylon_overhead_slam_head430078 cChooserEntryInt male_rocket_fireworks_impact420375 cChooserEntryInt male_rocket_fireworks_miss450000 cChooserEntryInt male_run_2hand cChooserEntryInt male_run_attack_moosehead cChooserEntryInt male_run_attack_moosehead460609 cChooserEntryInt male_run_attack_moosehead520078 cChooserEntryInt male_run_cart cChooserEntryInt male_run_chainsaw cChooserEntryInt male_run_chair cChooserEntryInt male_run_hamsterball cChooserEntryInt male_run_jump cChooserEntryInt male_run_jump_climb_scramble cChooserEntryInt male_run_jump_freefall_lfoot370484 cChooserEntryInt male_run_jump_freefall_phone_lfoot480343 cChooserEntryInt male_run_jump_freefall_phone_rfoot70703 cChooserEntryInt male_run_jump_freefall_rfoot370484 cChooserEntryInt male_run_jump_hang cChooserEntryInt male_run_jump_land_lfoot500500 cChooserEntryInt male_run_jump_land_normal_lfoot cChooserEntryInt male_run_jump_land_normal_rfoot cChooserEntryInt male_run_jump_land_phone_lfoot440562 cChooserEntryInt male_run_jump_land_phone_lfoot520390 cChooserEntryInt male_run_jump_land_phone_rfoot30953 cChooserEntryInt male_run_jump_land_phone_rfoot590750 cChooserEntryInt male_run_jump_land_rfoot500500 cChooserEntryInt male_run_jump_land_to_idle_combat_lfoot500890 cChooserEntryInt male_run_jump_land_to_idle_phone_lfoot100468 cChooserEntryInt male_run_jump_land_to_idle_phone_lfoot250109 cChooserEntryInt male_run_jump_land_to_idle_phone_rfoot250312 cChooserEntryInt male_run_jump_land_to_idle_phone_rfoot360015 cChooserEntryInt male_run_jump_landl_to_idle_combat_rfoot500890 cChooserEntryInt male_run_jump_rifle_freefall_lfoot cChooserEntryInt male_run_jump_rifle_freefall_rfoot cChooserEntryInt male_run_jump_rifle_land_lfoot cChooserEntryInt male_run_jump_rifle_land_rfoot cChooserEntryInt male_run_jump_rifle_start_lfoot cChooserEntryInt male_run_jump_rifle_start_rfoot cChooserEntryInt male_run_jump_start_lfoot560796 cChooserEntryInt male_run_jump_start_rfoot560796 cChooserEntryInt male_run_largebox_injured cChooserEntryInt male_run_paddlesaw cChooserEntryInt male_run_phone_jump_start_lfoot170031 cChooserEntryInt male_run_phone_jump_start_rfoot270718 cChooserEntryInt male_run_rifle_injured210125 cChooserEntryInt male_run_rifle_to_idle_rifle_lfoot312 cChooserEntryInt male_run_rifle_to_idle_rifle_lfoot350703 cChooserEntryInt male_run_rifle_to_idle_rifle_lfoot560250 cChooserEntryInt male_run_rifle_to_idle_rifle_rfoot40625 cChooserEntryInt male_run_rifle_to_idle_rifle_rfoot90453 cChooserEntryInt male_run_rifle530296 cChooserEntryInt male_run_rifle70625 cChooserEntryInt male_run_shoot_rifle_rapid40234 cChooserEntryInt male_run_short_climb_up_100cm cChooserEntryInt male_run_short_climb_up_140cm cChooserEntryInt male_run_short_climb_up_195cm cChooserEntryInt male_run_short_climb_up_265cm cChooserEntryInt male_run_smallbox410265 cChooserEntryInt male_run_step_lfoot_30cm cChooserEntryInt male_run_step_lfoot_50cm cChooserEntryInt male_run_step_rfoot_30cm cChooserEntryInt male_run_step_rfoot_50cm cChooserEntryInt male_run_strafe_rifle_aim_040484 cChooserEntryInt male_run_strafe_rifle_aim_135580453 cChooserEntryInt male_run_strafe_rifle_aim_135neg250281 cChooserEntryInt male_run_strafe_rifle_aim_18050640 cChooserEntryInt male_run_strafe_rifle_aim_45450546 cChooserEntryInt male_run_strafe_rifle_aim_45neg390031 cChooserEntryInt male_run_strafe_rifle_aim_90520375 cChooserEntryInt male_run_strafe_rifle_aim_90neg330171 cChooserEntryInt male_run_thrust cChooserEntryInt male_run_to_idle_cart cChooserEntryInt male_run_to_idle_moosehead cChooserEntryInt male_run_to_idle_moosehead550328 cChooserEntryInt male_run_to_idle_rifle_injured_lfoot240531 cChooserEntryInt male_run_to_idle_rifle_injured_lfoot360750 cChooserEntryInt male_run_to_idle_rifle_injured_rfoot320546 cChooserEntryInt male_run_to_idle_rifle_injured_rfoot460796 cChooserEntryInt male_run_turn_180_lfoot cChooserEntryInt male_run_turn_180_rfoot cChooserEntryInt male_run_vault_100cm460296 cChooserEntryInt male_run_winchester530515 cChooserEntryInt male_run20203 cChooserEntryInt male_run380828 cChooserEntryInt male_run430312 cChooserEntryInt male_run440390 cChooserEntryInt male_run480890 cChooserEntryInt male_run550375 cChooserEntryInt male_screenshot_pose_190671 cChooserEntryInt male_setup_rc_helicopter100656 cChooserEntryInt male_setup_teddybear_sentrygun460625 cChooserEntryInt male_shield_guard_loop60468 cChooserEntryInt male_shield_guard_to_idle520203 cChooserEntryInt male_shockface_1430234 cChooserEntryInt male_shoot_barret50cal_step90812 cChooserEntryInt male_shoot_flamethrower310890 cChooserEntryInt male_shoot_flamethrower530781 cChooserEntryInt male_shoulder_assist_hitreaction_0375 cChooserEntryInt male_shoulder_assist_hitreaction_survivor_0375 cChooserEntryInt male_shoulder_assist_idle_survivor580468 cChooserEntryInt male_shoulder_assist_idle_survivor80862 cChooserEntryInt male_shoulder_assist_idle480003 cChooserEntryInt male_shoulder_assist_idle490437 cChooserEntryInt male_shoulder_assist_into_run_survivor210156 cChooserEntryInt male_shoulder_assist_into_run160171 cChooserEntryInt male_shoulder_assist_into_survivor90218 cChooserEntryInt male_shoulder_assist_into540640 cChooserEntryInt male_shoulder_assist_kick_survivor80984 cChooserEntryInt male_shoulder_assist_kick350234 cChooserEntryInt male_shoulder_assist_run_survivor530593 cChooserEntryInt male_shoulder_assist_run_to_idle_lfoot_survivor550343 cChooserEntryInt male_shoulder_assist_run_to_idle_lfoot_survivor80718 cChooserEntryInt male_shoulder_assist_run_to_idle_lfoot190703 cChooserEntryInt male_shoulder_assist_run_to_idle_lfoot530046 cChooserEntryInt male_shoulder_assist_run_to_idle_rfoot_survivor110265 cChooserEntryInt male_shoulder_assist_run_to_idle_rfoot_survivor540109 cChooserEntryInt male_shoulder_assist_run_to_idle_rfoot470406 cChooserEntryInt male_shoulder_assist_run_to_idle_rfoot560671 cChooserEntryInt male_shoulder_assist_run500500 cChooserEntryInt male_shoulder_assist_step_survivor140578 cChooserEntryInt male_shoulder_assist_step10515 cChooserEntryInt male_skateboard_brake_getoff_alt390343 cChooserEntryInt male_skateboard_brake_getoff390343 cChooserEntryInt male_smack_game_button_standing120187 cChooserEntryInt male_smack_moosehead_spawn_button_with_step120187 cChooserEntryInt male_smack_moosehead_spawn_button120187 cChooserEntryInt male_smallbox_jump_to_idle_lfoot cChooserEntryInt male_smallbox_jump_to_idle_rfoot cChooserEntryInt male_smallbox_run_jump_freefall_lfoot cChooserEntryInt male_smallbox_run_jump_freefall_rfoot cChooserEntryInt male_smallbox_run_jump_land_lfoot cChooserEntryInt male_smallbox_run_jump_land_rfoot cChooserEntryInt male_smallbox_run_to_jump_lfoot cChooserEntryInt male_smallbox_run_to_jump_rfoot cChooserEntryInt male_smbox_heavy_1_to_5380046 cChooserEntryInt male_smbox_heavy_3_to_7_b340484 cChooserEntryInt male_smbox_heavy_4_to_8_b220171 cChooserEntryInt male_smbox_heavy_6_to_2_a60382 cChooserEntryInt male_smbox_heavy_7_to_4_a2230171 cChooserEntryInt male_smbox_heavy_8_to_4_a400578 cChooserEntryInt male_smbox_idle_to_overhead_idle450312 cChooserEntryInt male_smbox_idle_to_overshoulder_idle160062 cChooserEntryInt male_smbox_overhead_idle_to_smbox_idle460484 cChooserEntryInt male_smbox_overhead_idle_to_throw160187 cChooserEntryInt male_smbox_overhead_idle_to_throw510296 cChooserEntryInt male_smbox_overhead_idle110750 cChooserEntryInt male_smbox_overhead_idle190500 cChooserEntryInt male_smbox_overshoulder_idle_to_smbox_idle140062 cChooserEntryInt male_smbox_overshoulder_idle_to_throw330312 cChooserEntryInt male_smbox_overshoulder_idle400796 cChooserEntryInt male_smbox_placeontorso_impact150515 cChooserEntryInt male_smbox_placeontorso200843 cChooserEntryInt male_smbox_slow_heavy_6_to_2_a210277 cChooserEntryInt male_smbox_throw_behind cChooserEntryInt male_soccerball_combatidle_to_kickidle360015 cChooserEntryInt male_soccerball_full_kick40156 cChooserEntryInt male_soccerball_kick20593 cChooserEntryInt male_soccerball_kickidle_loop50500 cChooserEntryInt male_soccerball_kickidle_to_combatidle320390 cChooserEntryInt male_spear_full_throw390453 cChooserEntryInt male_spraypaint_full190359 cChooserEntryInt male_spraypaint_idle_to_spray_idle210561 cChooserEntryInt male_spraypaint_loop130265 cChooserEntryInt male_spraypaint_loop270906 cChooserEntryInt male_spraypaint_loop470656 cChooserEntryInt male_spraypaint_loop500233 cChooserEntryInt male_spraypaint_spray_idle_to_idle160826 cChooserEntryInt male_spraypaint_spray_idle_to_idle40796 cChooserEntryInt male_spraypaint_turn_120_neg60218 cChooserEntryInt male_spraypaint_turn_12060203 cChooserEntryInt male_stackable_idle_to_stackable_throw_idle140812 cChooserEntryInt male_stackable_idle_to_stackable_throw_idle560343 cChooserEntryInt male_stackable_loop170375 cChooserEntryInt male_stackable_loop240734 cChooserEntryInt male_stackable_throw_gems190671 cChooserEntryInt male_stackable_throw_idle_to_idle220078 cChooserEntryInt male_stackable_throw_idle_to_idle410796 cChooserEntryInt male_stackable_throw_plates420390 cChooserEntryInt male_step_30cm cChooserEntryInt male_step_50cm cChooserEntryInt male_struggle_back_onground_bite390343 cChooserEntryInt male_struggle_back_onground_idle400703 cChooserEntryInt male_struggle_back_onground_pushoff50921 cChooserEntryInt male_struggle_crotch_front_bite530625 cChooserEntryInt male_struggle_crotch_front_idle340562 cChooserEntryInt male_struggle_crotch_front_idle490906 cChooserEntryInt male_struggle_crotch_front_into440843 cChooserEntryInt male_struggle_crotch_front_pushoff190921 cChooserEntryInt male_struggle_crotch_front_pushoff230203 cChooserEntryInt male_struggle_crotch_front_pushoff390578 cChooserEntryInt male_struggle_crotch_front_to_onground540843 cChooserEntryInt male_struggle_front_onground_bite390343 cChooserEntryInt male_struggle_front_onground_idle400703 cChooserEntryInt male_struggle_front_onground_pushoff50921 cChooserEntryInt male_struggle_standing_back_bite10203 cChooserEntryInt male_struggle_standing_back_idle40379 cChooserEntryInt male_struggle_standing_back_into190609 cChooserEntryInt male_struggle_standing_back_into330531 cChooserEntryInt male_struggle_standing_back_into580234 cChooserEntryInt male_struggle_standing_back_pushoff_bodyslam140859 cChooserEntryInt male_struggle_standing_back_pushoff150875 cChooserEntryInt male_struggle_standing_back_to_onground140000 cChooserEntryInt male_struggle_standing_front_bite510968 cChooserEntryInt male_struggle_standing_front_idle330093 cChooserEntryInt male_struggle_standing_front_idle510328 cChooserEntryInt male_struggle_standing_front_into130312 cChooserEntryInt male_struggle_standing_front_into410671 cChooserEntryInt male_struggle_standing_front_pushoff_ddt cChooserEntryInt male_struggle_standing_front_pushoff210390 cChooserEntryInt male_struggle_standing_front_pushoff210859 cChooserEntryInt male_struggle_standing_front_to_onground560343 cChooserEntryInt male_superslicer_charge_to_idle510515 cChooserEntryInt male_superslicer_charge70000 cChooserEntryInt male_superslicer_idle_to_charge280296 cChooserEntryInt male_superslicer_pull_start40843 cChooserEntryInt male_supriseface_1200640 cChooserEntryInt male_survivor_aggr_rifle150875 cChooserEntryInt male_survivor_angry_high328 cChooserEntryInt male_survivor_angry_low328 cChooserEntryInt male_survivor_angry_med328 cChooserEntryInt male_survivor_arguing_high40062 cChooserEntryInt male_survivor_arguing_low40062 cChooserEntryInt male_survivor_arguing_med40062 cChooserEntryInt male_survivor_backscrabble_idle510249 cChooserEntryInt male_survivor_being_carried_hitreaction_0450484 cChooserEntryInt male_survivor_being_carried_idle10593 cChooserEntryInt male_survivor_being_carried_into_run280500 cChooserEntryInt male_survivor_being_carried_run100046 cChooserEntryInt male_survivor_brave_high220000 cChooserEntryInt male_survivor_brave_low220015 cChooserEntryInt male_survivor_brave_med220000 cChooserEntryInt male_survivor_calm_high290937 cChooserEntryInt male_survivor_calm_low290937 cChooserEntryInt male_survivor_calm_med290937 cChooserEntryInt male_survivor_climb_up_to_idle30500 cChooserEntryInt male_survivor_confused_high570515 cChooserEntryInt male_survivor_confused_low570515 cChooserEntryInt male_survivor_confused_med570515 cChooserEntryInt male_survivor_cowering_crouched510249 cChooserEntryInt male_survivor_cowering_standing510249 cChooserEntryInt male_survivor_crawling_fear_idle510249 cChooserEntryInt male_survivor_decline_high520093 cChooserEntryInt male_survivor_decline_low520093 cChooserEntryInt male_survivor_decline_med520093 cChooserEntryInt male_survivor_drinking250437 cChooserEntryInt male_survivor_eating250437 cChooserEntryInt male_survivor_eating420765 cChooserEntryInt male_survivor_eating430750 cChooserEntryInt male_survivor_get_up_from_front370078 cChooserEntryInt male_survivor_getin_wheelchair400532 cChooserEntryInt male_survivor_getin_wheelchair480337 cChooserEntryInt male_survivor_getingolfkart_back_left330343 cChooserEntryInt male_survivor_getingolfkart_back_right330078 cChooserEntryInt male_survivor_getingolfkart_passengerside120781 cChooserEntryInt male_survivor_getingolfkart_passengerside500296 cChooserEntryInt male_survivor_getinhummer_back_left130437 cChooserEntryInt male_survivor_getinhummer_back_left310656 cChooserEntryInt male_survivor_getinhummer_back_right130406 cChooserEntryInt male_survivor_getinhummer_back_right310656 cChooserEntryInt male_survivor_getinhummer_passengerside130421 cChooserEntryInt male_survivor_getinhummer_passengerside310656 cChooserEntryInt male_survivor_getinsportscar_passengerside550281 cChooserEntryInt male_survivor_getinsportscar_passengerside70166 cChooserEntryInt male_survivor_getout_wheelchair cChooserEntryInt male_survivor_getout_wheelchair490468 cChooserEntryInt male_survivor_getoutgolfkart_back_left170062 cChooserEntryInt male_survivor_getoutgolfkart_back_left60421 cChooserEntryInt male_survivor_getoutgolfkart_back_right170093 cChooserEntryInt male_survivor_getoutgolfkart_back_right60421 cChooserEntryInt male_survivor_getoutgolfkart_passengerside170109 cChooserEntryInt male_survivor_getoutgolfkart_passengerside290671 cChooserEntryInt male_survivor_getouthummer_back_left310765 cChooserEntryInt male_survivor_getouthummer_back_left470156 cChooserEntryInt male_survivor_getouthummer_back_right310765 cChooserEntryInt male_survivor_getouthummer_back_right470156 cChooserEntryInt male_survivor_getouthummer_passengerside310765 cChooserEntryInt male_survivor_getouthummer_passengerside470062 cChooserEntryInt male_survivor_getoutsportscar_passengerside590312 cChooserEntryInt male_survivor_getoutsportscar_passengerside80791 cChooserEntryInt male_survivor_getup_from_back310546 cChooserEntryInt male_survivor_hitreaction_heavy_back500406 cChooserEntryInt male_survivor_hitreaction_heavy_front300718 cChooserEntryInt male_survivor_hold_dead_companion_getup30296 cChooserEntryInt male_survivor_hold_dead_companion_into80812 cChooserEntryInt male_survivor_hold_dead_companion300218 cChooserEntryInt male_survivor_idle_aggresive310187 cChooserEntryInt male_survivor_idle_aim_rifle90000 cChooserEntryInt male_survivor_idle_calm310187 cChooserEntryInt male_survivor_idle_confused310187 cChooserEntryInt male_survivor_idle_golfkart_back_left290203 cChooserEntryInt male_survivor_idle_golfkart_back_left310453 cChooserEntryInt male_survivor_idle_golfkart_back_left330906 cChooserEntryInt male_survivor_idle_golfkart_back_right290203 cChooserEntryInt male_survivor_idle_golfkart_back_right310468 cChooserEntryInt male_survivor_idle_golfkart_back_right330937 cChooserEntryInt male_survivor_idle_golfkart_passenger290203 cChooserEntryInt male_survivor_idle_golfkart_passenger330875 cChooserEntryInt male_survivor_idle_hummer_back_left290000 cChooserEntryInt male_survivor_idle_hummer_back_left540500 cChooserEntryInt male_survivor_idle_hummer_back_right290000 cChooserEntryInt male_survivor_idle_hummer_back_right540484 cChooserEntryInt male_survivor_idle_hummer_passengerside400000 cChooserEntryInt male_survivor_idle_hummer_passengerside90890 cChooserEntryInt male_survivor_idle_pistol_aim_to_idle_pistol360078 cChooserEntryInt male_survivor_idle_pistol_aim90000 cChooserEntryInt male_survivor_idle_pistol_to_idle_pistol_aim200625 cChooserEntryInt male_survivor_idle_prop_aggre60296 cChooserEntryInt male_survivor_idle_prop_aggresive480656 cChooserEntryInt male_survivor_idle_prop_brave60296 cChooserEntryInt male_survivor_idle_prop_calm60296 cChooserEntryInt male_survivor_idle_prop_confused60296 cChooserEntryInt male_survivor_idle_prop_rebecca cChooserEntryInt male_survivor_idle_prop_sad60296 cChooserEntryInt male_survivor_idle_prop_scared60296 cChooserEntryInt male_survivor_idle_rifle_aim_to_idle_rifle406 cChooserEntryInt male_survivor_idle_rifle_to_idle_aim_rifle570687 cChooserEntryInt male_survivor_idle_sad310187 cChooserEntryInt male_survivor_idle_scared310187 cChooserEntryInt male_survivor_idle_scared510249 cChooserEntryInt male_survivor_idle_sportscar_passenger130468 cChooserEntryInt male_survivor_idle_sportscar_passenger200807 cChooserEntryInt male_survivor_idle_step380536 cChooserEntryInt male_survivor_idle_to_climb_up_100cm280515 cChooserEntryInt male_survivor_idle_to_run_injured200296 cChooserEntryInt male_survivor_idle_to_walk200296 cChooserEntryInt male_survivor_idle170859 cChooserEntryInt male_survivor_idle310187 cChooserEntryInt male_survivor_idle410109 cChooserEntryInt male_survivor_idle90046 cChooserEntryInt male_survivor_injured_walk_to_idle_lfoot100406 cChooserEntryInt male_survivor_injured_walk_to_idle_lfoot70890 cChooserEntryInt male_survivor_injured_walk_to_idle_rfoot10984 cChooserEntryInt male_survivor_injured_walk_to_idle_rfoot40125 cChooserEntryInt male_survivor_injured_walk180984 cChooserEntryInt male_survivor_injured_walk400765 cChooserEntryInt male_survivor_into_piggyback140015 cChooserEntryInt male_survivor_into_piggyback480296 cChooserEntryInt male_survivor_into_piggyback490265 cChooserEntryInt male_survivor_laugh_high200375 cChooserEntryInt male_survivor_laugh_low200375 cChooserEntryInt male_survivor_laugh_med200375 cChooserEntryInt male_survivor_lockeroom_sit40152 cChooserEntryInt male_survivor_out_of_piggyback390687 cChooserEntryInt male_survivor_pivot_180480109 cChooserEntryInt male_survivor_pivot_180neg460656 cChooserEntryInt male_survivor_pivot_90480093 cChooserEntryInt male_survivor_pivot_90neg480109 cChooserEntryInt male_survivor_push_crowd130625 cChooserEntryInt male_survivor_rebecca cChooserEntryInt male_survivor_rejoice_high420828 cChooserEntryInt male_survivor_rejoice_low420828 cChooserEntryInt male_survivor_rejoice_med420828 cChooserEntryInt male_survivor_run_jump_land_to_idle_rfoot270203 cChooserEntryInt male_survivor_run_one_handed570718 cChooserEntryInt male_survivor_run_to_idle_lfoot190207 cChooserEntryInt male_survivor_run_to_idle_lfoot280467 cChooserEntryInt male_survivor_run_to_idle_rfoot190192 cChooserEntryInt male_survivor_run_to_idle_rfoot70263 cChooserEntryInt male_survivor_run400765 cChooserEntryInt male_survivor_sad_high180406 cChooserEntryInt male_survivor_sad_high220687 cChooserEntryInt male_survivor_sad_high230437 cChooserEntryInt male_survivor_sad_high470468 cChooserEntryInt male_survivor_sad_low180421 cChooserEntryInt male_survivor_sad_med180421 cChooserEntryInt male_survivor_sad_med250406 cChooserEntryInt male_survivor_sad_med340437 cChooserEntryInt male_survivor_sad_med590656 cChooserEntryInt male_survivor_scared_high520718 cChooserEntryInt male_survivor_scared_low520718 cChooserEntryInt male_survivor_scared_med520703 cChooserEntryInt male_survivor_shoot_m249_rapid420859 cChooserEntryInt male_survivor_shoot_pistol_rapid420859 cChooserEntryInt male_survivor_thankful_high420484 cChooserEntryInt male_survivor_thankful_low420484 cChooserEntryInt male_survivor_thankful_med420484 cChooserEntryInt male_survivor_thanks440656 cChooserEntryInt male_survivor_understand_high470687 cChooserEntryInt male_survivor_understand_low470703 cChooserEntryInt male_survivor_understand_med470703 cChooserEntryInt male_survivor_vomit906 cChooserEntryInt male_survivor_wait_wave400578 cChooserEntryInt male_survivor_wave240875 cChooserEntryInt male_survivor_wheelchair_idle290890 cChooserEntryInt male_survivor_wheelchair_idle40843 cChooserEntryInt male_survivor_wheelchair_idle450437 cChooserEntryInt male_survivor_wheelchair_idle570875 cChooserEntryInt male_sword_1_to_5_ground260953 cChooserEntryInt male_sword_a_2_to_8_36030687 cChooserEntryInt male_sword_jump_1_to_5_lfoot_long270578 cChooserEntryInt male_sword_jump_1_to_5_lfoot_short90296 cChooserEntryInt male_takeoff_hat cChooserEntryInt male_takeoff_moosehead cChooserEntryInt male_takeoff_superslicer220593 cChooserEntryInt male_takeoff_superslicer520296 cChooserEntryInt male_tennis_full_hit10218 cChooserEntryInt male_tennis_idle_loop20687 cChooserEntryInt male_tennis_idle_to_idle265 cChooserEntryInt male_tennis_idle_to_serve150156 cChooserEntryInt male_throw_1hand_object380625 cChooserEntryInt male_throw_chair cChooserEntryInt male_throw_idle_to_thrust_idle210546 cChooserEntryInt male_throw_idle_to_thrust_idle330546 cChooserEntryInt male_throw_lawndart150508 cChooserEntryInt male_throw_lawndart550619 cChooserEntryInt male_throw_pitchfork cChooserEntryInt male_throw_pitchfork180265 cChooserEntryInt male_throw_plates400578 cChooserEntryInt male_throw_small_item cChooserEntryInt male_throw_spear460328 cChooserEntryInt male_throw_trowel cChooserEntryInt male_thrust_idle_to_throw_idle230750 cChooserEntryInt male_thrust_idle_to_throw_idle260203 cChooserEntryInt male_thrust_jump_to_idle_lfoot cChooserEntryInt male_thrust_jump_to_idle_rfoot cChooserEntryInt male_thrust_run_jump_freefall_lfoot cChooserEntryInt male_thrust_run_jump_freefall_rfoot cChooserEntryInt male_thrust_run_jump_land_lfoot cChooserEntryInt male_thrust_run_jump_land_rfoot cChooserEntryInt male_thrust_run_to_jump_lfoot cChooserEntryInt male_thrust_run_to_jump_rfoot cChooserEntryInt male_thrust_throw_behind cChooserEntryInt male_thrust_throw_javelin170375 cChooserEntryInt male_thrust_throw_spear_idle400000 cChooserEntryInt male_thrust_throw_spear_idle90578 cChooserEntryInt male_thrust_throw_spear170375 cChooserEntryInt male_thug_idle_shooting_minigun180838 cChooserEntryInt male_thug_idle_shooting_minigun310484 cChooserEntryInt male_tir_bike_reverse170466 cChooserEntryInt male_tir_pose_1180296 cChooserEntryInt male_tir_pose_2180296 cChooserEntryInt male_tir_pose_3180312 cChooserEntryInt male_tir_pose_4160390 cChooserEntryInt male_Tomahawk_impact350015 cChooserEntryInt male_Tomahawk_miss560873 cChooserEntryInt male_trainthug_idle50791 cChooserEntryInt male_trainthug_idle520468 cChooserEntryInt male_turn_180_to_run20046 cChooserEntryInt male_turn_90400046 cChooserEntryInt male_turn_90neg190875 cChooserEntryInt male_turn_left_flamethrower530781 cChooserEntryInt male_turn_left_protoman360745 cChooserEntryInt male_turn_right_flamethrower530781 cChooserEntryInt male_turn_right_protoman360714 cChooserEntryInt male_ub_drinking cChooserEntryInt male_ub_eating cChooserEntryInt male_ub_eating_snacks cChooserEntryInt male_ub_idle_chainsaw cChooserEntryInt male_ub_push_crowd_l270345 cChooserEntryInt male_ub_push_crowd_r270329 cChooserEntryInt male_utilitycart_pickup_putdown120195 cChooserEntryInt male_utilitycart_pickup_putdown270109 cChooserEntryInt male_utilitycart_pickup_putdown580851 cChooserEntryInt male_utilitycart_putdown520109 cChooserEntryInt male_vault_long_110cm cChooserEntryInt male_walk_cart cChooserEntryInt male_walk_rifle_injured510906 cChooserEntryInt male_walk_rifle420046 cChooserEntryInt male_walk_strafe_rifle_0110453 cChooserEntryInt male_walk_strafe_rifle_135290312 cChooserEntryInt male_walk_strafe_rifle_135neg40312 cChooserEntryInt male_walk_strafe_rifle_18090765 cChooserEntryInt male_walk_strafe_rifle_45170734 cChooserEntryInt male_walk_strafe_rifle_45neg210765 cChooserEntryInt male_walk_strafe_rifle_90230343 cChooserEntryInt male_walk_strafe_rifle_90neg550171 cChooserEntryInt male_walk340078 cChooserEntryInt male_watching_movie_comedy50671 cChooserEntryInt male_watching_movie_horror440457 cChooserEntryInt male_weapon_broken50828 cChooserEntryInt male_weapon_broken590597 cChooserEntryInt male_wheelchair_handles_idle_loop570328 cChooserEntryInt male_wheelchair_handles_idle_to_idle10703 cChooserEntryInt male_wheelchair_handles_idle_to_pull_backwards280734 cChooserEntryInt male_wheelchair_handles_idle_to_run240953 cChooserEntryInt male_wheelchair_idle_to_handles_idle320031 cChooserEntryInt male_wheelchair_pull_backwards_loop30828 cChooserEntryInt male_wheelchair_pull_backwards_to_handles_idle260234 cChooserEntryInt male_wheelchair_putdown400046 cChooserEntryInt male_wheelchair_run_to_handles_idle_rfoot480130 cChooserEntryInt male_wheelchair_run_to_handles_idle250859 cChooserEntryInt male_wheelchair_run570328 cChooserEntryInt male_wheelchair_running_dump_rfoot150880 cChooserEntryInt male_wheelchair_running_dump430755 cChooserEntryInt male_wheelchair_turn_left430312 cChooserEntryInt male_wheelchair_turn_right520703 cChooserEntryInt male_wheelchairtank_into_reverse450098 cChooserEntryInt male_wheelchairtank_out_of_reverse450098 cChooserEntryInt male_wheelchairtank_reverse450098 cChooserEntryInt male_wingman_open550515 cChooserEntryInt male_workbench_combine140078 cChooserEntryInt male_wrenchlarge_1_to_5_impact210718 cChooserEntryInt male_wrenchlarge_1_to_5_miss70968 cChooserEntryInt male_wrenchlarge_8_to_4_a_impact240312 cChooserEntryInt male_wrenchlarge_8_to_4_a_miss270015 cChooserEntryInt male_wrenchlarge_impact20015 cChooserEntryInt male_wrenchlarge_miss50171 cChooserEntryInt male_yellface430234 cChooserEntryInt male_zombiethrower_heavy10375 cChooserEntryInt male_zombiethrower_idle90046 cChooserEntryInt male_zombiethrower_impact510906 cChooserEntryInt male_zombiethrower_miss460328 cChooserEntryInt male_zombiethrower_shoot410484 cChooserEntryInt male_zombiethrower_walk440843 cChooserEntryInt Male100465 cChooserEntryInt Male10437 cChooserEntryInt Male10652 cChooserEntryInt Male120328 cChooserEntryInt Male170891 cChooserEntryInt Male190531 cChooserEntryInt Male200073 cChooserEntryInt Male20093 cChooserEntryInt Male20156 cChooserEntryInt Male220046 cChooserEntryInt Male220652 cChooserEntryInt Male250015 cChooserEntryInt Male250933 cChooserEntryInt Male260085 cChooserEntryInt Male260234 cChooserEntryInt Male300609 cChooserEntryInt Male320906 cChooserEntryInt Male360781 cChooserEntryInt Male380968 cChooserEntryInt Male40558 cChooserEntryInt Male40656 cChooserEntryInt Male410593 cChooserEntryInt Male410703 cChooserEntryInt Male410906 cChooserEntryInt Male420625 cChooserEntryInt Male440593 cChooserEntryInt Male450312 cChooserEntryInt Male460000 cChooserEntryInt Male490265 cChooserEntryInt Male50402 cChooserEntryInt Male550593 cChooserEntryInt Male560765 cChooserEntryInt Male560844 cChooserEntryInt Male580296 cChooserEntryInt Male590140 cChooserEntryInt Male590480 cChooserEntryInt Male60000 cChooserEntryInt Male70090 cChooserEntryInt Male90062 cChooserEntryInt mascot_skate_death380281 cChooserEntryInt mascot_skate_up_stairs cChooserEntryInt mascot_skating_falldown_back cChooserEntryInt mascot_skating_falldown_front cChooserEntryInt mascot_walk0 cChooserEntryInt medium cChooserEntryInt medium_reactions360125 cChooserEntryInt melee_a_vertical cChooserEntryInt melee_c_horizontal cChooserEntryInt melee_slap cChooserEntryInt mermaid_female_survivor_death_pose130571 cChooserEntryInt mermaid_female_survivor_death160587 cChooserEntryInt mermaid_female_survivor_flop_around580437 cChooserEntryInt mermaid_female_survivor_idle580437 cChooserEntryInt mermaid_female_survivor_idle590562 cChooserEntryInt nohands1 cChooserEntryInt Novelty310777 cChooserEntryInt NPC70734 cChooserEntryInt onground_reactions cChooserEntryInt pawnshop_female_survivor_old_lady_walk150375 cChooserEntryInt pawnshop_female_survivor_old_lady_walk320906 cChooserEntryInt pawnshop_female_survivor_old_lady_walk400765 cChooserEntryInt pawnshop_female_survivor_old_lady_walk540812 cChooserEntryInt pawnshop_old_lady_walk_to_idle_lfoot210765 cChooserEntryInt pawnshop_old_lady_walk_to_idle_lfoot440187 cChooserEntryInt pawnshop_old_lady_walk_to_idle_lfoot520765 cChooserEntryInt pawnshop_old_lady_walk_to_idle_lfoot560156 cChooserEntryInt pawnshop_old_lady_walk_to_idle_rfoot150890 cChooserEntryInt pawnshop_old_lady_walk_to_idle_rfoot30296 cChooserEntryInt pawnshop_old_lady_walk_to_idle_rfoot390171 cChooserEntryInt pawnshop_old_lady_walk_to_idle_rfoot460750 cChooserEntryInt Piggyback1 cChooserEntryInt Piggyback2 cChooserEntryInt poker_allin_calmly_pushing_chips390954 cChooserEntryInt poker_call_push_small_chip_stack20001 cChooserEntryInt poker_check_knocking_table20001 cChooserEntryInt poker_clothing_emote_eyewear_01430765 cChooserEntryInt poker_clothing_emote_hair_01310343 cChooserEntryInt poker_clothing_emote_headwear_02520734 cChooserEntryInt poker_clothing_emote_shoes_01420484 cChooserEntryInt poker_clothing_emote_shoes_0290828 cChooserEntryInt poker_clothing_emote_womens_clothing_0190828 cChooserEntryInt poker_cross_arms_to_idle40480 cChooserEntryInt poker_exstripper_idle_hands_on_table90350 cChooserEntryInt poker_fold_push_cards_centre_of_table20001 cChooserEntryInt poker_fold_shaking_head_smash_cards_on_table20001 cChooserEntryInt poker_idle_arms_crossed80590 cChooserEntryInt poker_idle_hands_on_table90350 cChooserEntryInt poker_idle_look_left390112 cChooserEntryInt poker_idle_look_right480596 cChooserEntryInt poker_idle_to_cross_arms10683 cChooserEntryInt poker_lose_collapse_head_in_hands220625 cChooserEntryInt poker_lose_collapse_head_in_hands360759 cChooserEntryInt poker_lose_smashing_table210381 cChooserEntryInt poker_raise_aggressive_putting_in_chips20001 cChooserEntryInt poker_raise_low_intensity540734 cChooserEntryInt poker_tell_leaning_back_in_chair570831 cChooserEntryInt poker_win_chuck_fist_pump34675 cChooserEntryInt poker_win_fist_pump_hand_r320062 cChooserEntryInt quicklandtoidle cChooserEntryInt ReallyHeavy140815 cChooserEntryInt ReallyHeavy565 cChooserEntryInt rifle1 cChooserEntryInt rifle2 cChooserEntryInt rifle3 cChooserEntryInt RightFootDown250418 cChooserEntryInt roll_forward cChooserEntryInt roll_left_90 cChooserEntryInt roll_right_90 cChooserEntryInt Run200187 cChooserEntryInt Run30062 cChooserEntryInt running490312 cChooserEntryInt sam cChooserEntryInt sawblade_overshoulder_idle_to_throw_idle60781 cChooserEntryInt sawblade_overshoulder_throw_idle_to_combat_idle310125 cChooserEntryInt sawblade_overshoulder_throw_idle320250 cChooserEntryInt sawblade_overshoulder_throw280187 cChooserEntryInt sawblade_throw470437 cChooserEntryInt sequence_2_v2 cChooserEntryInt sequence_3_v2 cChooserEntryInt sequence_4 cChooserEntryInt sequence_5 cChooserEntryInt Shoes310777 cChooserEntryInt short_range cChooserEntryInt shotgun1 cChooserEntryInt ShoulderLean cChooserEntryInt sick_vomit60336 cChooserEntryInt SitWeeping220406 cChooserEntryInt SitWeeping320703 cChooserEntryInt skating_reactions cChooserEntryInt slave_female_survivor_cover_idle390616 cChooserEntryInt slave_female_survivor_cover_idle60390 cChooserEntryInt slave_female_survivor_hiding_idle370883 cChooserEntryInt slave_female_survivor_stay_back490937 cChooserEntryInt sniper1 cChooserEntryInt SpecialAttacks180958 cChooserEntryInt squishylandtorun cChooserEntryInt srv_diva_prejoin_idle320028 cChooserEntryInt standing_reactions cChooserEntryInt standup_finish cChooserEntryInt StandWeepingVerySad370750 cChooserEntryInt step_back cChooserEntryInt step_forward cChooserEntryInt step_forward_left cChooserEntryInt step_forward_right cChooserEntryInt step_left cChooserEntryInt step_right cChooserEntryInt step_roll_forward cChooserEntryInt step_turn_180 cChooserEntryInt stranded_female_survivor_drunk_idle170094 cChooserEntryInt stranded_female_survivor_drunk_idle60406 cChooserEntryInt stranded_female_survivor_drunk_wander170985 cChooserEntryInt stranded_female_survivor_drunken_kick450610 cChooserEntryInt stranded_female_survivor_drunken_kick80093 cChooserEntryInt sullivan_standing_idle440593 cChooserEntryInt SuperBike560017 cChooserEntryInt T_male_bucket_overhead_slam_head109 cChooserEntryInt T_male_place_prop_on_zombie_head_2hand_miss530500 cChooserEntryInt T_male_place_prop_on_zombie_head_miss10750 cChooserEntryInt T_male_smbox_back_to_360_a340968 cChooserEntryInt T_male_smbox_back_to_push_aa460671 cChooserEntryInt T_male_smbox_heavy_1_to_5_a400250 cChooserEntryInt T_male_smbox_heavy_1_to_6_b390281 cChooserEntryInt T_male_smbox_heavy_4_to_8_b390265 cChooserEntryInt T_male_smbox_heavy_7_to_4_a340968 cChooserEntryInt t2_twinswhite_idle260921 cChooserEntryInt taunt__bywall cChooserEntryInt taunt_flirty cChooserEntryInt taunt_grind cChooserEntryInt taunt_stomp cChooserEntryInt taunt_stroke cChooserEntryInt taunt_thrust cChooserEntryInt Ted310031 cChooserEntryInt Thanks310500 cChooserEntryInt Thanks320140 cChooserEntryInt ThirtyCM cChooserEntryInt to_charge cChooserEntryInt to_combo cChooserEntryInt to_run cChooserEntryInt to_vertical cChooserEntryInt twins_attack_heelstomp570234 cChooserEntryInt twins_attack_idle_to_slide570361 cChooserEntryInt twins_attack_slide_slash_fail420814 cChooserEntryInt twins_attack_slide_slash_success240002 cChooserEntryInt twins_attack_slide_slash658 cChooserEntryInt twins_attack_slide330111 cChooserEntryInt twins_attack_somersault_slash_fail450971 cChooserEntryInt twins_attack_somersault_slash_success49 cChooserEntryInt twins_attack_somersault_slash130861 cChooserEntryInt twins_attack_somersault570049 cChooserEntryInt twins_locomotion_evade_left590093 cChooserEntryInt twins_locomotion_evade_right590093 cChooserEntryInt twins_locomotion_idle_to_walk240987 cChooserEntryInt twins_locomotion_idle_to_walk350404 cChooserEntryInt twins_locomotion_idle_to_walk380159 cChooserEntryInt twins_locomotion_pivot_180490701 cChooserEntryInt twins_locomotion_pivot_180neg490701 cChooserEntryInt twins_locomotion_pivot_90490701 cChooserEntryInt twins_locomotion_pivot_90neg490701 cChooserEntryInt twins_locomotion_run60815 cChooserEntryInt twins_locomotion_walk_to_idle220752 cChooserEntryInt twins_locomotion_walk_to_idle420561 cChooserEntryInt twins_locomotion_walk240326 cChooserEntryInt twins_locomotion_walk70846 cChooserEntryInt twins_stage2_attack_dualblade_stab570234 cChooserEntryInt twins_stage2_locomotion_idle230424 cChooserEntryInt twins_stage2_locomotion_run280768 cChooserEntryInt twins_stage2_locomotion_walk180143 cChooserEntryInt twins_transition_idle_to_somersault80705 cChooserEntryInt twins_transition_run_to_360_slash490453 cChooserEntryInt twins_transition_run_to_horizontal_double490453 cChooserEntryInt twins_transition_run_to_horizontal_extended490453 cChooserEntryInt twins_transition_run_to_vertical_double490453 cChooserEntryInt twins_transition_run_to_vertical_extended490453 cChooserEntryInt twinsblack_attack_katana_slash_charge130631 cChooserEntryInt twinsblack_attack_katana_slash_horizontal_double0 cChooserEntryInt twinsblack_attack_katana_slash_horizontal_extended0 cChooserEntryInt twinsblack_attack_katana_slash_vertical_double0 cChooserEntryInt twinsblack_attack_katana_slash_vertical_extended0 cChooserEntryInt twinsblack_attack_katana_thrust_extended470862 cChooserEntryInt twinsblack_clearout_360_slash0 cChooserEntryInt twinsblack_clearout_360_slash150202 cChooserEntryInt twinsblack_death110968 cChooserEntryInt twinsblack_locomotion_idle100784 cChooserEntryInt twinsblack_locomotion_idle530654 cChooserEntryInt twinsblack_locomotion_idle590401 cChooserEntryInt twinsblack_locomotion_run30779 cChooserEntryInt twinsblack_transition_idle_to_run_0150873 cChooserEntryInt twinsblack_transition_idle_to_run_180590233 cChooserEntryInt twinsblack_transition_idle_to_run_180neg50826 cChooserEntryInt twinsblack_transition_idle_to_run_90410514 cChooserEntryInt twinsblack_transition_idle_to_run_90neg510686 cChooserEntryInt twinsblack_transition_run_to_idle320858 cChooserEntryInt twinsblack_transition_run_to_walk160092 cChooserEntryInt twinsblack_transition_walk_to_run220576 cChooserEntryInt twinswhite_locomotion_idle150510 cChooserEntryInt Understanding310500 cChooserEntryInt vehicles_psychopath_attacks cChooserEntryInt vulnerable_idle_to_idle cChooserEntryInt vulnerable_idle_to_idle_hattrick cChooserEntryInt vulnerable_reactions cChooserEntryInt Walk200187 cChooserEntryInt Walk30062 cChooserEntryInt warp_turn_mascot_moving_turn_left_light cChooserEntryInt warp_turn_mascot_moving_turn_right_light cChooserEntryInt welcome_male_cowering_standing_flinch100148 cChooserEntryInt welcome_male_cowering_standing40250 cChooserEntryInt wilted_female_dehydrated80062 cChooserEntryInt wilted_female_hitreaction_death170032 cChooserEntryInt wilted_female_recieve_drink30187 cChooserEntryInt winsome_male_drunk_idle240811 cChooserEntryInt with_object cChooserEntryInt WomensClothing310777 cChooserEntryInt workers_female_pointing_at_chuck110593 cChooserEntryInt workers_female_pointing_at_chuck550281 cChooserEntryInt workers_female_survivor_beaten_idle240969 cChooserEntryInt workers_male_survivor_beaten_idle150359 cChooserEntryInt workers_male_survivor_beaten_idle580610 cChooserEntryInt workers_male_survivor_break_into_cage210672 cChooserEntryInt workers_male_survivor_coming_to_senses100282 cChooserEntryInt workers_male_survivor_coming_to_senses450646 cChooserEntryInt Youth310777 |
cChooserEntryFloat[]
# cChooserEntryFloat 1941 cChooserEntryFloat 180120718 cChooserEntryFloat 180560000 cChooserEntryFloat 180neg120718 cChooserEntryFloat 180neg560000 cChooserEntryFloat 90120718 cChooserEntryFloat 90560000 cChooserEntryFloat 90neg120718 cChooserEntryFloat 90neg560000 cChooserEntryFloat AnimGroup1009 cChooserEntryFloat AnimGroup104320843 cChooserEntryFloat AnimGroup1190 cChooserEntryFloat AnimGroup1209110125 cChooserEntryFloat AnimGroup124670546 cChooserEntryFloat AnimGroup1278120078 cChooserEntryFloat AnimGroup132190421 cChooserEntryFloat AnimGroup1328 cChooserEntryFloat AnimGroup135390453 cChooserEntryFloat AnimGroup1431 cChooserEntryFloat AnimGroup1518 cChooserEntryFloat AnimGroup152160921 cChooserEntryFloat AnimGroup158460984 cChooserEntryFloat AnimGroup1734150234 cChooserEntryFloat AnimGroup1775 cChooserEntryFloat AnimGroup1786150286 cChooserEntryFloat AnimGroup183290932 cChooserEntryFloat AnimGroup1862180062 cChooserEntryFloat AnimGroup2050180250 cChooserEntryFloat AnimGroup2060200060 cChooserEntryFloat AnimGroup2096180296 cChooserEntryFloat AnimGroup2106 cChooserEntryFloat AnimGroup2115200115 cChooserEntryFloat AnimGroup2225160625 cChooserEntryFloat AnimGroup2270190370 cChooserEntryFloat AnimGroup2284180500 cChooserEntryFloat AnimGroup2287210203 cChooserEntryFloat AnimGroup2321190421 cChooserEntryFloat AnimGroup2340 cChooserEntryFloat AnimGroup2446 cChooserEntryFloat AnimGroup2459 cChooserEntryFloat AnimGroup2490160890 cChooserEntryFloat AnimGroup2500210400 cChooserEntryFloat AnimGroup2550 cChooserEntryFloat AnimGroup2568160968 cChooserEntryFloat AnimGroup2625 cChooserEntryFloat AnimGroup2678210578 cChooserEntryFloat AnimGroup2690230406 cChooserEntryFloat AnimGroup2706230406 cChooserEntryFloat AnimGroup2740210640 cChooserEntryFloat AnimGroup2765 cChooserEntryFloat AnimGroup2809190909 cChooserEntryFloat AnimGroup2825270125 cChooserEntryFloat AnimGroup2847220647 cChooserEntryFloat AnimGroup2965270265 cChooserEntryFloat AnimGroup2984200984 cChooserEntryFloat AnimGroup3028270328 cChooserEntryFloat AnimGroup3100 cChooserEntryFloat AnimGroup3100310000 cChooserEntryFloat AnimGroup3103290203 cChooserEntryFloat AnimGroup3109 cChooserEntryFloat AnimGroup3168 cChooserEntryFloat AnimGroup3206280421 cChooserEntryFloat AnimGroup3525290625 cChooserEntryFloat AnimGroup3531300531 cChooserEntryFloat AnimGroup3581280781 cChooserEntryFloat AnimGroup3618340218 cChooserEntryFloat AnimGroup3637 cChooserEntryFloat AnimGroup3661330361 cChooserEntryFloat AnimGroup3832370132 cChooserEntryFloat AnimGroup3846 cChooserEntryFloat AnimGroup3928310828 cChooserEntryFloat AnimGroup3959380159 cChooserEntryFloat AnimGroup3975 cChooserEntryFloat AnimGroup3978390078 cChooserEntryFloat AnimGroup4053310953 cChooserEntryFloat AnimGroup4123390223 cChooserEntryFloat AnimGroup4165340765 cChooserEntryFloat AnimGroup4225 cChooserEntryFloat AnimGroup4232380432 cChooserEntryFloat AnimGroup4243390343 cChooserEntryFloat AnimGroup4296 cChooserEntryFloat AnimGroup4323400339 cChooserEntryFloat AnimGroup4337 cChooserEntryFloat AnimGroup4368340968 cChooserEntryFloat AnimGroup4525440140 cChooserEntryFloat AnimGroup4559 cChooserEntryFloat AnimGroup4581430281 cChooserEntryFloat AnimGroup4687450187 cChooserEntryFloat AnimGroup4696440296 cChooserEntryFloat AnimGroup4766410666 cChooserEntryFloat AnimGroup4786400786 cChooserEntryFloat AnimGroup4803410718 cChooserEntryFloat AnimGroup4815430515 cChooserEntryFloat AnimGroup4993490093 cChooserEntryFloat AnimGroup5028 cChooserEntryFloat AnimGroup5076440676 cChooserEntryFloat AnimGroup5168110031 cChooserEntryFloat AnimGroup5187500187 cChooserEntryFloat AnimGroup52110421 cChooserEntryFloat AnimGroup5234500234 cChooserEntryFloat AnimGroup5309490409 cChooserEntryFloat AnimGroup5445460845 cChooserEntryFloat AnimGroup5506460906 cChooserEntryFloat AnimGroup5528470828 cChooserEntryFloat AnimGroup5571 cChooserEntryFloat AnimGroup5643480843 cChooserEntryFloat AnimGroup5712490812 cChooserEntryFloat AnimGroup5743540343 cChooserEntryFloat AnimGroup58010496 cChooserEntryFloat AnimGroup5846580046 cChooserEntryFloat AnimGroup5906500906 cChooserEntryFloat AnimGroup5915590031 cChooserEntryFloat AnimGroup5965570265 cChooserEntryFloat AnimGroup5975560375 cChooserEntryFloat AnimGroup6018530718 cChooserEntryFloat AnimGroup60560005 cChooserEntryFloat AnimGroup6090520890 cChooserEntryFloat AnimGroup6103590203 cChooserEntryFloat AnimGroup6137570437 cChooserEntryFloat AnimGroup6243540843 cChooserEntryFloat AnimGroup6250550750 cChooserEntryFloat AnimGroup6259590359 cChooserEntryFloat AnimGroup6281590381 cChooserEntryFloat AnimGroup62820444 cChooserEntryFloat AnimGroup6353590453 cChooserEntryFloat AnimGroup646 cChooserEntryFloat AnimGroup6603 cChooserEntryFloat AnimGroup6773580973 cChooserEntryFloat AnimGroup6775 cChooserEntryFloat AnimGroup693 cChooserEntryFloat AnimGroup731 cChooserEntryFloat AnimGroup85340453 cChooserEntryFloat AnimGroup87120671 cChooserEntryFloat AnimGroup96850468 cChooserEntryFloat AnimGroup984 cChooserEntryFloat AnimGroup99670296 cChooserEntryFloat AntoineHitReactionEntry2 cChooserEntryFloat AntoineMeleeEntry1 cChooserEntryFloat attack cChooserEntryFloat Back180421 cChooserEntryFloat Back190609 cChooserEntryFloat Back250906 cChooserEntryFloat Back330281 cChooserEntryFloat Back450375 cChooserEntryFloat battle_boykin_chuck_on_back_idle50637 cChooserEntryFloat battle_chef_chuck_on_back_idle460921 cChooserEntryFloat battle_chef_chuck_on_back_pushoff460218 cChooserEntryFloat battle_chef_chuck_on_front_idle320156 cChooserEntryFloat battle_chef_chuck_on_front_pushoff570093 cChooserEntryFloat battle_chef_chuck_struggle_back_onground_bite70256 cChooserEntryFloat battle_chef_chuck_struggle_front_onground_bite450101 cChooserEntryFloat battle_chef_interaction_bite_chuck250805 cChooserEntryFloat battle_chef_interaction_bite_chucks_back430381 cChooserEntryFloat battle_chef_interaction_taste_test30734 cChooserEntryFloat battle_chef_locomotion_block_idle_getting_hit460323 cChooserEntryFloat battle_chef_locomotion_block_idle200980 cChooserEntryFloat battle_chef_locomotion_death190823 cChooserEntryFloat battle_chef_transition_bite_to_idle_chuck_is_on_his_front550625 cChooserEntryFloat battle_chef_transition_bite_to_idle60921 cChooserEntryFloat battle_chef_transition_idle_to_bite80375 cChooserEntryFloat battle_fan_hitreaction_generic530582 cChooserEntryFloat battle_sullivan_hit_reaction_heavy_back50378 cChooserEntryFloat battle_sullivan_hit_reaction_heavy_front560347 cChooserEntryFloat battle_sullivan_hit_reaction_heavy_front580504 cChooserEntryFloat battle_sullivan_hit_reaction_heavy_left120392 cChooserEntryFloat battle_sullivan_hit_reaction_heavy_right210307 cChooserEntryFloat battle_sullivan_hit_reaction_light_back250836 cChooserEntryFloat battle_sullivan_hit_reaction_light_front180822 cChooserEntryFloat battle_sullivan_hit_reaction_light_front40826 cChooserEntryFloat battle_sullivan_hit_reaction_light_left330380 cChooserEntryFloat battle_sullivan_hit_reaction_light_right410064 cChooserEntryFloat battle_sullivan_throw cChooserEntryFloat Blink10718 cChooserEntryFloat bomber_relent160578 cChooserEntryFloat boss_militia_knife_clearout_to_rifle_run540409 cChooserEntryFloat boss_militia_knife_grab_and_stab_fail60890 cChooserEntryFloat boss_militia_knife_grab_and_stab_success420312 cChooserEntryFloat boss_militia_knife_hit_reaction_light_back_ cChooserEntryFloat boss_militia_knife_hit_reaction_light_front_ cChooserEntryFloat boss_militia_knife_hit_reaction_light_front__ cChooserEntryFloat boss_militia_knife_hit_reaction_light_left_ cChooserEntryFloat boss_militia_knife_hit_reaction_light_right_ cChooserEntryFloat boss_militia_knife_hit_reaction_medium_back_ cChooserEntryFloat boss_militia_knife_hit_reaction_medium_front_ cChooserEntryFloat boss_militia_knife_hit_reaction_medium_front__ cChooserEntryFloat boss_militia_knife_hit_reaction_medium_left_ cChooserEntryFloat boss_militia_knife_hit_reaction_medium_right_ cChooserEntryFloat boss_militia_knife_run370222 cChooserEntryFloat boss_militia_knife_sidestep_left300300 cChooserEntryFloat boss_militia_knife_sidestep_left350066 cChooserEntryFloat boss_militia_knife_sidestep_right300300 cChooserEntryFloat boss_militia_knife_sidestep_right440722 cChooserEntryFloat boss_militia_knife_slash1500941 cChooserEntryFloat boss_militia_knife_slash2570472 cChooserEntryFloat boss_militia_knife_stab40644 cChooserEntryFloat boss_militia_rifle_hit_reaction_light_back_ cChooserEntryFloat boss_militia_rifle_hit_reaction_light_front_ cChooserEntryFloat boss_militia_rifle_hit_reaction_light_front__ cChooserEntryFloat boss_militia_rifle_hit_reaction_light_left_ cChooserEntryFloat boss_militia_rifle_hit_reaction_light_right_ cChooserEntryFloat boss_militia_rifle_idle_hit_reaction_medium_back_ cChooserEntryFloat boss_militia_rifle_idle_hit_reaction_medium_back210636 cChooserEntryFloat boss_militia_rifle_idle_hit_reaction_medium_front_ cChooserEntryFloat boss_militia_rifle_idle_hit_reaction_medium_front__ cChooserEntryFloat boss_militia_rifle_idle_hit_reaction_medium_front290793 cChooserEntryFloat boss_militia_rifle_idle_hit_reaction_medium_front360371 cChooserEntryFloat boss_militia_rifle_idle_hit_reaction_medium_left_ cChooserEntryFloat boss_militia_rifle_idle_hit_reaction_medium_right_ cChooserEntryFloat boss_militia_rifle_kneel_hitreaction_back360433 cChooserEntryFloat boss_militia_rifle_kneel_hitreaction_front490621 cChooserEntryFloat boss_militia_rifle_kneel_hitreaction_front580855 cChooserEntryFloat boss_militia_rifle_run_turn_shoot_run250562 cChooserEntryFloat boss_protester_attack_clearout_shard_spin370994 cChooserEntryFloat boss_protester_attack_clearout_shard_spin530516 cChooserEntryFloat boss_protester_attack_shard_grapple_leap_stab_fail320562 cChooserEntryFloat boss_protester_attack_shard_grapple_leap_stab_fail490421 cChooserEntryFloat boss_protester_attack_shard_grapple_leap_stab_start270390 cChooserEntryFloat boss_protester_attack_shard_grapple_leap_stab_start500500 cChooserEntryFloat boss_protester_attack_shard_grapple_leap_stab_success110984 cChooserEntryFloat boss_protester_attack_shard_grapple_leap_stab_success570625 cChooserEntryFloat boss_protester_attack_shard_grapple_leap_stab400500 cChooserEntryFloat boss_protester_attack_shard_leap_and_slash300657 cChooserEntryFloat boss_protester_attack_shard_leap_and_slash370994 cChooserEntryFloat boss_protester_attack_shard_slash_combo100579 cChooserEntryFloat boss_protester_attack_shard_slash_combo370994 cChooserEntryFloat boss_protester_attack_shard_slash_left320329 cChooserEntryFloat boss_protester_attack_shard_slash_left370994 cChooserEntryFloat boss_protester_attack_shard_slash_right370994 cChooserEntryFloat boss_protester_attack_shard_slash_right63 cChooserEntryFloat boss_protester_combat_idle_to_idle_ambush360500 cChooserEntryFloat boss_protester_grapple_leap_fail550687 cChooserEntryFloat boss_protester_grapple_leap_start310296 cChooserEntryFloat boss_protester_grapple_leap_success460640 cChooserEntryFloat boss_protester_grapple_on_back_success530062 cChooserEntryFloat boss_protester_hit_reaction_light_back30421 cChooserEntryFloat boss_protester_hit_reaction_light_back510750 cChooserEntryFloat boss_protester_hit_reaction_light_front30421 cChooserEntryFloat boss_protester_hit_reaction_light_front330218 cChooserEntryFloat boss_protester_hit_reaction_light_front510921 cChooserEntryFloat boss_protester_hit_reaction_light_front60203 cChooserEntryFloat boss_protester_hit_reaction_light_left30421 cChooserEntryFloat boss_protester_hit_reaction_light_left530890 cChooserEntryFloat boss_protester_hit_reaction_light_right30421 cChooserEntryFloat boss_protester_hit_reaction_light_right70218 cChooserEntryFloat boss_protester_hit_reaction_medium_back240562 cChooserEntryFloat boss_protester_hit_reaction_medium_back90875 cChooserEntryFloat boss_protester_hit_reaction_medium_front450093 cChooserEntryFloat boss_protester_hit_reaction_medium_front90875 cChooserEntryFloat boss_protester_hit_reaction_medium_left40953 cChooserEntryFloat boss_protester_hit_reaction_medium_left90875 cChooserEntryFloat boss_protester_hit_reaction_medium_right150140 cChooserEntryFloat boss_protester_hit_reaction_medium_right90875 cChooserEntryFloat boss_protester_idle_ambush_to_combat_idle520125 cChooserEntryFloat boss_protester_locomotion_idle_ambush20797 cChooserEntryFloat boss_protester_locomotion_idle140072 cChooserEntryFloat boss_protester_locomotion_idle320807 cChooserEntryFloat boss_protester_locomotion_jump_back140088 cChooserEntryFloat boss_protester_locomotion_jump_back450025 cChooserEntryFloat boss_protester_locomotion_jump_forward140088 cChooserEntryFloat boss_protester_locomotion_jump_forward450025 cChooserEntryFloat boss_protester_locomotion_run140088 cChooserEntryFloat boss_protester_locomotion_run450025 cChooserEntryFloat boss_protester_locomotion_side_strafe_left140088 cChooserEntryFloat boss_protester_locomotion_side_strafe_left450025 cChooserEntryFloat boss_protester_locomotion_side_strafe_right140088 cChooserEntryFloat boss_protester_locomotion_side_strafe_right450025 cChooserEntryFloat boss_protester_locomotion_walk140088 cChooserEntryFloat boss_protester_locomotion_walk450025 cChooserEntryFloat boss_protester_reaction_death290000 cChooserEntryFloat boss_protester_reaction_stay_away_from_me10010 cChooserEntryFloat boss_protester_reaction_stay_away_from_me350891 cChooserEntryFloat boss_protester_stall_jump120773 cChooserEntryFloat boss_protester_taunt_blood_thirst220135 cChooserEntryFloat boss_protester_taunt_blood_thirst410110 cChooserEntryFloat boss_protester_taunt_reaction_to_mirror220135 cChooserEntryFloat boss_protester_transition_pivot_180260400 cChooserEntryFloat boss_protester_transition_pivot_180neg260400 cChooserEntryFloat boss_protester_transition_pivot_90260400 cChooserEntryFloat boss_protester_transition_pivot_90neg260400 cChooserEntryFloat boss_snowflake_attack_high_pounce_fail530364 cChooserEntryFloat boss_snowflake_attack_high_pounce_success_chuck80384 cChooserEntryFloat boss_snowflake_attack_high_pounce_success170941 cChooserEntryFloat boss_snowflake_attack_low_swipe180288 cChooserEntryFloat boss_snowflake_attack_mangle_chuck250145 cChooserEntryFloat boss_snowflake_attack_mangle550264 cChooserEntryFloat boss_snowflake_attack_run_pounce_fail300140 cChooserEntryFloat boss_snowflake_attack_run_pounce_success_chuck540287 cChooserEntryFloat boss_snowflake_attack_run_pounce_success430816 cChooserEntryFloat boss_snowflake_attack_swipe150812 cChooserEntryFloat boss_snowflake_attack_swipe2290085 cChooserEntryFloat boss_snowflake_attack_tear370529 cChooserEntryFloat boss_snowflake_cringing20810 cChooserEntryFloat boss_snowflake_death510812 cChooserEntryFloat boss_snowflake_hit_reaction_light_left520421 cChooserEntryFloat boss_snowflake_hit_reaction_light_right530234 cChooserEntryFloat boss_snowflake_hit_reaction_medium_left520421 cChooserEntryFloat boss_snowflake_hit_reaction_medium_right530234 cChooserEntryFloat boss_snowflake_interaction_eat_food300443 cChooserEntryFloat boss_snowflake_interaction_sniff_food520343 cChooserEntryFloat boss_snowflake_locomotion_idle460609 cChooserEntryFloat boss_snowflake_taunt_lounge_getup370584 cChooserEntryFloat boss_snowflake_taunt_lounge_idle240990 cChooserEntryFloat boss_snowflake_taunt_lounge160865 cChooserEntryFloat boss_snowflake_taunt_roar380000 cChooserEntryFloat botany_female_survivor_hold_plant90697 cChooserEntryFloat boykin_throw_chuck_from_prone560031 cChooserEntryFloat cat_idle_lounging593 cChooserEntryFloat cat_locomotion_idle_to_run70234 cChooserEntryFloat cat_locomotion_run_to_idle120109 cChooserEntryFloat cat_locomotion_trot500484 cChooserEntryFloat cat_locomotion_turn180430453 cChooserEntryFloat cat_locomotion_turn180neg430453 cChooserEntryFloat cat_locomotion_turn90430453 cChooserEntryFloat cat_locomotion_turn90neg430453 cChooserEntryFloat cat_locomotion_walk_to_idle200703 cChooserEntryFloat Chase cChooserEntryFloat child_consoled_stacey270079 cChooserEntryFloat child_excited_idle90787 cChooserEntryFloat child_face_ambient30421 cChooserEntryFloat child_h_idle370625 cChooserEntryFloat child_idle300828 cChooserEntryFloat child_on_bike_turn_left450328 cChooserEntryFloat child_on_bike_turn_right450328 cChooserEntryFloat child_on_bike450328 cChooserEntryFloat child_sitting_idle_1180531 cChooserEntryFloat child_sitting_idle_1420302 cChooserEntryFloat child_sitting_idle_1490281 cChooserEntryFloat child_sitting_idle_2280328 cChooserEntryFloat child_sitting_idle_3400046 cChooserEntryFloat child_sitting_idle_gameboy140156 cChooserEntryFloat child_sleeping_idle370718 cChooserEntryFloat death_backwards cChooserEntryFloat death_forwards cChooserEntryFloat deviant_bride cChooserEntryFloat deviant_bride_idle cChooserEntryFloat deviant_bride_kiss cChooserEntryFloat deviant_idle_to_vulnerable_idle cChooserEntryFloat deviant_smirk410609 cChooserEntryFloat deviant_vulnerable_idle_to_idle cChooserEntryFloat deviant_vulnerable_reaction cChooserEntryFloat DeviantVulnerableIdle cChooserEntryFloat Entry12 cChooserEntryFloat female_ambient_face300312 cChooserEntryFloat female_ambient_face310078 cChooserEntryFloat female_fightface400468 cChooserEntryFloat female_give_take1hand_object cChooserEntryFloat female_give_take1hand_object380093 cChooserEntryFloat female_give_take2hand_object cChooserEntryFloat female_give_take2hand_object390593 cChooserEntryFloat female_hand_idle_pose cChooserEntryFloat female_hitreaction_fatal cChooserEntryFloat female_hitreaction_fatal_180 cChooserEntryFloat female_hitreaction_fatal_18020984 cChooserEntryFloat female_hitreaction_fatal_90 cChooserEntryFloat female_hitreaction_fatal_9020984 cChooserEntryFloat female_hitreaction_fatal_90neg cChooserEntryFloat female_hitreaction_fatal_90neg20984 cChooserEntryFloat female_hitreaction_fatal20984 cChooserEntryFloat female_idle_injured410638 cChooserEntryFloat female_open_mouth40093 cChooserEntryFloat female_rebecca_breach_idle320546 cChooserEntryFloat female_rebecca_film_heli_into440281 cChooserEntryFloat female_rebecca_film_heli_loop290859 cChooserEntryFloat female_rebecca_film_heli_out480484 cChooserEntryFloat female_rebecca_tied_up160608 cChooserEntryFloat female_safehouse_idle_anxious_01220214 cChooserEntryFloat female_safehouse_idle_anxious_02220214 cChooserEntryFloat female_safehouse_idle_anxious_03220214 cChooserEntryFloat female_safehouse_idle_anxious_04220230 cChooserEntryFloat female_safehouse_idle_begging400058 cChooserEntryFloat female_safehouse_idle_bored_1260355 cChooserEntryFloat female_safehouse_idle_bored_2260370 cChooserEntryFloat female_safehouse_idle_bored_3260370 cChooserEntryFloat female_safehouse_idle_bored_4260370 cChooserEntryFloat female_safehouse_idle_calm260370 cChooserEntryFloat female_safehouse_idle_excited_01180417 cChooserEntryFloat female_safehouse_idle_excited_02180433 cChooserEntryFloat female_safehouse_idle_excited_03180433 cChooserEntryFloat female_safehouse_idle_excited_04180433 cChooserEntryFloat female_safehouse_idle_frightened400355 cChooserEntryFloat female_safehouse_idle_hands_hips260370 cChooserEntryFloat female_safehouse_idle_heroic260355 cChooserEntryFloat female_safehouse_idle_lean_wall110308 cChooserEntryFloat female_safehouse_idle_prone_injured_1190902 cChooserEntryFloat female_safehouse_idle_scared_02240574 cChooserEntryFloat female_safehouse_idle_scared_03240589 cChooserEntryFloat female_safehouse_idle_scared_04240589 cChooserEntryFloat female_safehouse_idle_scared240574 cChooserEntryFloat female_safehouse_idle_sitting_01130495 cChooserEntryFloat female_safehouse_idle_sitting_02140620 cChooserEntryFloat female_safehouse_idle_sitting_03150824 cChooserEntryFloat female_safehouse_idle_sitting_chair530214 cChooserEntryFloat female_safehouse_idle_sitting_floor180667 cChooserEntryFloat female_safehouse_idle260355 cChooserEntryFloat female_safehouse_sleeping_prone_0130808 cChooserEntryFloat female_safehouse_sleeping_prone_0240058 cChooserEntryFloat female_safehouse_sleeping_prone_0340339 cChooserEntryFloat female_safehouse_sleeping_prone_0440480 cChooserEntryFloat female_safehouse_sleeping_prone_0530074 cChooserEntryFloat female_safehouse_sleeping_sit_floor_0130433 cChooserEntryFloat female_safehouse_sleeping_sit_floor_0230402 cChooserEntryFloat female_stacey_console_katie320657 cChooserEntryFloat female_stacey_seated_2130843 cChooserEntryFloat female_stacey_seated_3130843 cChooserEntryFloat female_stacey_seated30015 cChooserEntryFloat female_survivor_amazed_high330609 cChooserEntryFloat female_survivor_apologize_high330609 cChooserEntryFloat female_survivor_apologize_low330609 cChooserEntryFloat female_survivor_apologize_med330609 cChooserEntryFloat female_survivor_back_away_swipe180140 cChooserEntryFloat female_survivor_back_away460406 cChooserEntryFloat female_survivor_berate330609 cChooserEntryFloat female_survivor_give_take1hand_object90984 cChooserEntryFloat female_survivor_hitreaction_back_medium230906 cChooserEntryFloat female_survivor_kick160271 cChooserEntryFloat female_survivor_laugh_low330609 cChooserEntryFloat female_survivor_pivot_180310045 cChooserEntryFloat female_survivor_pivot_180neg310045 cChooserEntryFloat female_survivor_pivot_90310045 cChooserEntryFloat female_survivor_pivot_90neg310045 cChooserEntryFloat female_survivor_punch_combo_2370224 cChooserEntryFloat female_survivor_punch_combo_3480255 cChooserEntryFloat female_survivor_punch_combo_4120615 cChooserEntryFloat female_survivor_stand_angry_stomp330609 cChooserEntryFloat female_survivor_straight_freefall120859 cChooserEntryFloat female_survivor_swing_onehanded_01480843 cChooserEntryFloat female_survivor_swing_onehanded_02360531 cChooserEntryFloat female_survivor_swing_onehanded_03500531 cChooserEntryFloat female_survivor_swing_onehanded_04390187 cChooserEntryFloat female_survivor_talk_stop_argument_high330609 cChooserEntryFloat female_survivor_talk_stop_argument_low330609 cChooserEntryFloat female_survivor_talk_stop_argument_med330609 cChooserEntryFloat female_survivor_talking_high330609 cChooserEntryFloat female_survivor_talking_low330609 cChooserEntryFloat female_survivor_thankful_high330609 cChooserEntryFloat female_survivor_thankful_low330609 cChooserEntryFloat female_survivor_tied_to_chair570060 cChooserEntryFloat female_survivor_understand_low330609 cChooserEntryFloat female_survivor_understand_med330609 cChooserEntryFloat female_wave cChooserEntryFloat Front250906 cChooserEntryFloat Front450375 cChooserEntryFloat Front560640 cChooserEntryFloat gash_attack cChooserEntryFloat grip cChooserEntryFloat Hanging40629 cChooserEntryFloat hangman_noose_pickup_to_choke310304 cChooserEntryFloat harness_long cChooserEntryFloat harness_short cChooserEntryFloat idle_to_vulnerable_idle cChooserEntryFloat jeer cChooserEntryFloat katey_lowered30042 cChooserEntryFloat kc_attack_charge_grab_against_wall_beatdown_fail180771 cChooserEntryFloat kc_attack_charge_grab_against_wall_beatdown_success550250 cChooserEntryFloat kc_attack_charge_grab_against_wall80421 cChooserEntryFloat kc_attack_charge_grab_run420093 cChooserEntryFloat kc_attack_clearout_whirlwind440906 cChooserEntryFloat kc_attack_light_show550078 cChooserEntryFloat kc_attack_spray_gun200109 cChooserEntryFloat kc_backpedal_02380578 cChooserEntryFloat kc_h_idle590656 cChooserEntryFloat kc_hit_reaction_back_to_onback_to_getup480410 cChooserEntryFloat kc_hit_reaction_front_to_onback_to_getup360825 cChooserEntryFloat kc_hit_reaction_left_to_onback_to_getup380660 cChooserEntryFloat kc_hit_reaction_light_back540468 cChooserEntryFloat Kc_hit_reaction_light_front410296 cChooserEntryFloat kc_hit_reaction_light_left20062 cChooserEntryFloat kc_hit_reaction_light_right110156 cChooserEntryFloat kc_hit_reaction_right_to_onback_to_getup290207 cChooserEntryFloat kc_hit_reaction_stumble_back320406 cChooserEntryFloat kc_interaction_death300796 cChooserEntryFloat kc_interaction_holster_gun460591 cChooserEntryFloat kc_interaction_unholster_gun290263 cChooserEntryFloat kc_kick_reaction180796 cChooserEntryFloat kc_locomotion_charge390468 cChooserEntryFloat kc_locomotion_idle_gun190528 cChooserEntryFloat kc_locomotion_idle250875 cChooserEntryFloat kc_locomotion_onboard120828 cChooserEntryFloat kc_locomotion_overboard360328 cChooserEntryFloat kc_minigame_grapple_idle430656 cChooserEntryFloat kc_minigame_grapple_player_pushoff70865 cChooserEntryFloat kc_minigame_grapple_winch_hit520418 cChooserEntryFloat kc_minigame_kick_winch80896 cChooserEntryFloat kc_minigame_winch_grab_to_grapple_back390 cChooserEntryFloat kc_minigame_winch_grab_to_grapple_front70343 cChooserEntryFloat kc_minigame_winch_grapple_fail410262 cChooserEntryFloat kc_minigame_winch_grapple_idle120231 cChooserEntryFloat kc_minigame_winch_grapple_success80043 cChooserEntryFloat kc_punch_reaction570078 cChooserEntryFloat kc_reaction_stunned_back400187 cChooserEntryFloat kc_reaction_stunned_front410781 cChooserEntryFloat kc_reaction_stunned_left150453 cChooserEntryFloat kc_reaction_stunned_right470953 cChooserEntryFloat kc_srv_longcloak_f_idle70091 cChooserEntryFloat kc_srv_longcloak_idle120373 cChooserEntryFloat kc_taunt_threaten40168 cChooserEntryFloat kc_transition_charge_to_grab40640 cChooserEntryFloat kc_transition_idle_to_charge60787 cChooserEntryFloat kc_transition_shoot_to_idle420671 cChooserEntryFloat kiss cChooserEntryFloat Left250906 cChooserEntryFloat Left450375 cChooserEntryFloat legsweep cChooserEntryFloat looter_attack_one_hand_a_0110921 cChooserEntryFloat looter_attack_one_hand_a_02190375 cChooserEntryFloat looter_attack_one_hand_a_03490171 cChooserEntryFloat looter_attack_one_hand_b_01320781 cChooserEntryFloat looter_attack_spray_shake150843 cChooserEntryFloat looter_attack_spray150843 cChooserEntryFloat looter_attack_takeout_spraycan150875 cChooserEntryFloat looter_attack_takeout150859 cChooserEntryFloat looter_chase_to_combat_idle140046 cChooserEntryFloat looter_chase590167 cChooserEntryFloat looter_clear_stickable280781 cChooserEntryFloat looter_combat_idle_to_chase280437 cChooserEntryFloat looter_combat_idle_turn_180280453 cChooserEntryFloat looter_combat_idle_turn_180neg280484 cChooserEntryFloat looter_combat_idle_turn_90280515 cChooserEntryFloat looter_combat_idle_turn_90neg240015 cChooserEntryFloat looter_dead_onback875 cChooserEntryFloat looter_dead_onbelly875 cChooserEntryFloat looter_get_spraycan150890 cChooserEntryFloat looter_getup_onback90156 cChooserEntryFloat looter_getup_onbelly90156 cChooserEntryFloat looter_getup_onbutt540609 cChooserEntryFloat looter_getup_onside20375 cChooserEntryFloat looter_hitreaction_onfire_240328 cChooserEntryFloat looter_hitreaction_onfire_3120890 cChooserEntryFloat looter_hitreaction_onfire480328 cChooserEntryFloat looter_idle_base240390 cChooserEntryFloat looter_idle_base520859 cChooserEntryFloat looter_idle_combat220515 cChooserEntryFloat looter_idle_look480015 cChooserEntryFloat looter_idle_to_combat_idle_0530886 cChooserEntryFloat looter_idle_to_combat_idle_180530901 cChooserEntryFloat looter_idle_to_combat_idle_180neg530870 cChooserEntryFloat looter_idle_to_combat_idle_90530886 cChooserEntryFloat looter_idle_to_combat_idle_90neg530886 cChooserEntryFloat looter_idle_to_walk390765 cChooserEntryFloat looter_idle_turn_180480015 cChooserEntryFloat looter_idle_turn_180neg480015 cChooserEntryFloat looter_idle_turn_90480015 cChooserEntryFloat looter_idle_turn_90neg480015 cChooserEntryFloat looter_idle_wander1480015 cChooserEntryFloat looter_idle_wander2480015 cChooserEntryFloat looter_npc_pawnshop_idle_look430437 cChooserEntryFloat looter_npc_pawnshop_idle250984 cChooserEntryFloat looter_npc_pawnshop_wander430421 cChooserEntryFloat looter_point450171 cChooserEntryFloat looter_point560840 cChooserEntryFloat looter_run180421 cChooserEntryFloat looter_taunt_1500871 cChooserEntryFloat looter_taunt_2160308 cChooserEntryFloat looter_upset_1310715 cChooserEntryFloat looter_walk140093 cChooserEntryFloat magicians_bomber_attack_arc570767 cChooserEntryFloat magicians_bomber_attack_charge_finish510267 cChooserEntryFloat magicians_bomber_attack_fussilade_01290095 cChooserEntryFloat magicians_bomber_attack_fussilade_02290095 cChooserEntryFloat magicians_bomber_attack_fussilade_03290064 cChooserEntryFloat magicians_bomber_attack_push_lunge240187 cChooserEntryFloat magicians_bomber_attack_slamdown140203 cChooserEntryFloat magicians_bomber_clearout70642 cChooserEntryFloat magicians_bomber_hit_reaction_knockdown_getup360328 cChooserEntryFloat magicians_bomber_hit_reaction_knockdown_idle220406 cChooserEntryFloat magicians_bomber_hit_reaction_light_front520265 cChooserEntryFloat magicians_bomber_hit_reaction_light_left520265 cChooserEntryFloat magicians_bomber_hit_reaction_light_right520265 cChooserEntryFloat magicians_bomber_hit_reaction_medium_back520250 cChooserEntryFloat magicians_bomber_locomotion_charge310814 cChooserEntryFloat magicians_bomber_locomotion_idle_Lookaround560632 cChooserEntryFloat magicians_bomber_shoot_transition_from_loco_idle480273 cChooserEntryFloat magicians_bomber_shoot_transition_to_loco_idle520101 cChooserEntryFloat magicians_bomber_taunt_negative170171 cChooserEntryFloat magicians_bomber_taunt_tada_02540421 cChooserEntryFloat magicians_bomber_taunt_tada_03540421 cChooserEntryFloat magicians_bomber_taunt_tada_04540406 cChooserEntryFloat magicians_bomber_transition_idle_charge300283 cChooserEntryFloat magicians_stalker_reaction_blinded40812 cChooserEntryFloat magicians_stalker_swords_backpeddle300177 cChooserEntryFloat magicians_stalker_swords_dash_and_gash300193 cChooserEntryFloat magicians_stalker_swords_dash300193 cChooserEntryFloat magicians_stalker_swords_double_slash_jumpback270187 cChooserEntryFloat magicians_stalker_swords_double_slash_jumpleft470281 cChooserEntryFloat magicians_stalker_swords_double_slash300193 cChooserEntryFloat magicians_stalker_swords_fire_reaction300193 cChooserEntryFloat magicians_stalker_swords_fire_reaction40470 cChooserEntryFloat magicians_stalker_swords_idle300193 cChooserEntryFloat magicians_stalker_swords_jeer300193 cChooserEntryFloat magicians_stalker_swords_melee_a300193 cChooserEntryFloat magicians_stalker_swords_melee_b300193 cChooserEntryFloat magicians_stalker_swords_melee_c300193 cChooserEntryFloat magicians_stalker_swords_run0_to_180_run cChooserEntryFloat magicians_stalker_swords_run0_to_180neg_run cChooserEntryFloat magicians_stalker_taunt_03200000 cChooserEntryFloat magicians_stalker_taunt_04510390 cChooserEntryFloat magicians_stalker_taunt_05510375 cChooserEntryFloat magicians_stalker_taunt_negative30403 cChooserEntryFloat male_1hand_heavy_2_to_6_b330712 cChooserEntryFloat male_1hand_heavy_3_to_7_b40712 cChooserEntryFloat male_1hand_heavy_4_to_8_b510727 cChooserEntryFloat male_1hand_heavy_6_to_2_a160009 cChooserEntryFloat male_1hand_heavy_8_to_2_a540915 cChooserEntryFloat male_1hand_heavy_8_to_4_a450227 cChooserEntryFloat male_2h_thrust_bale_left480482 cChooserEntryFloat male_2h_thrust_bale_right480466 cChooserEntryFloat male_add_object_garden_cart cChooserEntryFloat male_ambient_face30875 cChooserEntryFloat male_ambient_face530750 cChooserEntryFloat male_answer_headset40375 cChooserEntryFloat male_answer_headset580390 cChooserEntryFloat male_answer_phone cChooserEntryFloat male_army_idle_shooting_minigun150843 cChooserEntryFloat male_army_idle80421 cChooserEntryFloat male_attack_1hand_slice_b490484 cChooserEntryFloat male_attack_curb_stomp cChooserEntryFloat male_attack_dragon_punch370500 cChooserEntryFloat male_attack_dragon_punch510706 cChooserEntryFloat male_attack_hadouken_charge360262 cChooserEntryFloat male_attack_hadouken250565 cChooserEntryFloat male_attack_haymaker_rhand cChooserEntryFloat male_attack_haymaker590781 cChooserEntryFloat male_attack_hurricane_kick510346 cChooserEntryFloat male_attack_kick_superbike_left cChooserEntryFloat male_attack_kick_superbike_right cChooserEntryFloat male_attack_meat_cleaver_b200468 cChooserEntryFloat male_attack_punch_hook_left20914 cChooserEntryFloat male_attack_punch_hook_left540578 cChooserEntryFloat male_attack_punch_hook_right40070 cChooserEntryFloat male_attack_punch_hook_right90250 cChooserEntryFloat male_attack_soccer_kick cChooserEntryFloat male_attack_spear_a_2170218 cChooserEntryFloat male_attack_spear_a_370765 cChooserEntryFloat male_ballbuster_unjam_loop230478 cChooserEntryFloat male_bike_brake280376 cChooserEntryFloat male_bike_brake390548 cChooserEntryFloat male_bike_brake480736 cChooserEntryFloat male_bike_brake560548 cChooserEntryFloat male_bike_donut_idle170468 cChooserEntryFloat male_bike_eject_impact_wall_back480703 cChooserEntryFloat male_bike_eject_inair_cycle220796 cChooserEntryFloat male_bike_eject_into_air450390 cChooserEntryFloat male_bike_get_off_left370140 cChooserEntryFloat male_bike_idle_riding_standup_turn_left280376 cChooserEntryFloat male_bike_idle_riding_standup_turn_right280376 cChooserEntryFloat male_bike_idle_riding_standup280376 cChooserEntryFloat male_bike_idle_riding280376 cChooserEntryFloat male_bike_lean_back280376 cChooserEntryFloat male_bike_lean_forward280376 cChooserEntryFloat male_bike_lean_left_fast280376 cChooserEntryFloat male_bike_lean_left_slow280376 cChooserEntryFloat male_bike_lean_left280376 cChooserEntryFloat male_bike_lean_right_fast280376 cChooserEntryFloat male_bike_lean_right_slow280376 cChooserEntryFloat male_bike_lean_right280376 cChooserEntryFloat male_bike_with_child_turn_left410578 cChooserEntryFloat male_bike_with_child_turn_right410578 cChooserEntryFloat male_bike_with_child410578 cChooserEntryFloat male_blink_280609 cChooserEntryFloat male_blink_380609 cChooserEntryFloat male_blink540125 cChooserEntryFloat male_bowie_knife_2_to_6_b330712 cChooserEntryFloat male_bowie_knife_3_to_7_b40712 cChooserEntryFloat male_bowie_knife_4_to_8_b510727 cChooserEntryFloat male_bowie_knife_8_to_2_a540915 cChooserEntryFloat male_bowie_knife_8_to_4_a450227 cChooserEntryFloat male_boxing_guard_jab_L70937 cChooserEntryFloat male_boxing_guard_jab_R70968 cChooserEntryFloat male_boykin_attack_kick290564 cChooserEntryFloat male_boykin_attack_rifle_butt_strike210812 cChooserEntryFloat male_boykin_attack_rifle_butt_strike2150673 cChooserEntryFloat male_boykin_attack_standing_shoot_machine_gun400953 cChooserEntryFloat male_boykin_attack_stomp_machine_gun30921 cChooserEntryFloat male_boykin_crouch_to_run550640 cChooserEntryFloat male_boykin_crouch_to_stand270468 cChooserEntryFloat male_boykin_explosion_hit_reaction_0240206 cChooserEntryFloat male_boykin_explosion_hit_reaction_0270846 cChooserEntryFloat male_boykin_explosion_hit_reaction_0540909 cChooserEntryFloat male_boykin_explosion_hit_reaction_180420909 cChooserEntryFloat male_boykin_firing_at_chuck_prone_machine_gun310906 cChooserEntryFloat male_boykin_firing_at_zombies_machine_gun530875 cChooserEntryFloat male_boykin_hit_reaction_back560054 cChooserEntryFloat male_boykin_hit_reaction_front140116 cChooserEntryFloat male_boykin_idle_combat170015 cChooserEntryFloat male_boykin_idle_kneeling_combat400421 cChooserEntryFloat male_boykin_idle_to_crouch370156 cChooserEntryFloat male_boykin_idle_to_shoot_standing350421 cChooserEntryFloat male_boykin_kneeling_reload_machine_gun100906 cChooserEntryFloat male_boykin_rambo_firing_in_air550015 cChooserEntryFloat male_boykin_rambo_firing_loop_machine_gun440250 cChooserEntryFloat male_boykin_reload_machine_gun230412 cChooserEntryFloat male_boykin_shoot_standing_to_idle510218 cChooserEntryFloat male_boykin_shout_orders_kneeling_face_down470171 cChooserEntryFloat male_boykin_shout_orders_standing560640 cChooserEntryFloat male_boykin_throw_grenade140 cChooserEntryFloat male_break_out_of_noose50338 cChooserEntryFloat male_bullriding_baked520250 cChooserEntryFloat male_bullriding_exit_happy30148 cChooserEntryFloat male_bullriding_get_onto_neutral350976 cChooserEntryFloat male_bullriding_tossed_01460093 cChooserEntryFloat male_burnmoney210671 cChooserEntryFloat male_burnmoney590296 cChooserEntryFloat male_carry_survivor_turn_180380390 cChooserEntryFloat male_carry_survivor_turn_180neg380390 cChooserEntryFloat male_carry_survivor_turn_90380390 cChooserEntryFloat male_carry_survivor_turn_90neg380390 cChooserEntryFloat male_case_6_4_assemble370171 cChooserEntryFloat male_case_6_4_console_engaged250781 cChooserEntryFloat male_case_6_4_idle_to_console_engaged100843 cChooserEntryFloat male_case_6_4_shock480578 cChooserEntryFloat male_catch_idle_rotation_adjust200468 cChooserEntryFloat male_catch_zombie_idle_to_idle500531 cChooserEntryFloat male_catch_zombie_idle80306 cChooserEntryFloat male_cementsaw_thrust_head420890 cChooserEntryFloat male_cementsaw_thrust_torso430031 cChooserEntryFloat male_chef_attack_fryingpan_backhand590237 cChooserEntryFloat male_chef_hit_reaction_medium_0350562 cChooserEntryFloat male_chef_hit_reaction_medium_18040812 cChooserEntryFloat male_chef_hit_reaction_medium_left580343 cChooserEntryFloat male_chef_hit_reaction_medium_right50281 cChooserEntryFloat male_chefknife_2_to_6_b330712 cChooserEntryFloat male_chefknife_3_to_7_b40712 cChooserEntryFloat male_chefknife_4_to_8_b510727 cChooserEntryFloat male_chefknife_8_to_2_a540915 cChooserEntryFloat male_chefknife_8_to_4_a450227 cChooserEntryFloat male_chopper_get_off_left430814 cChooserEntryFloat male_chopper_idle_riding_standup_turn_left570781 cChooserEntryFloat male_chopper_idle_riding_standup_turn_right570796 cChooserEntryFloat male_chopper_idle_riding_standup570750 cChooserEntryFloat male_chopper_lean_back570812 cChooserEntryFloat male_chopper_lean_forward570828 cChooserEntryFloat male_chopper_lean_left_fast570859 cChooserEntryFloat male_chopper_lean_right_fast570890 cChooserEntryFloat male_chopper_lean_right510532 cChooserEntryFloat male_clear_spray_paint_eyes120468 cChooserEntryFloat male_clothing_emote_eyewear_02170730 cChooserEntryFloat male_clothing_emote_formal_01280011 cChooserEntryFloat male_clothing_emote_headwear_02420886 cChooserEntryFloat male_clothing_emote_macho_01440745 cChooserEntryFloat male_clothing_emote_novelty_01460823 cChooserEntryFloat male_clothing_emote_shoes_01480620 cChooserEntryFloat male_clothing_emote_womens_clothing_02500339 cChooserEntryFloat male_clothing_emote_youth_02520839 cChooserEntryFloat male_combine_negative_reaction cChooserEntryFloat male_coop_dead_to_revived470734 cChooserEntryFloat male_coop_onback_to_struggle170718 cChooserEntryFloat male_coop_revive_companion560687 cChooserEntryFloat male_coughing420492 cChooserEntryFloat male_cowboy_dance_winchester cChooserEntryFloat male_death_fall_onback cChooserEntryFloat male_death_fall_onbelly cChooserEntryFloat male_deviant_death cChooserEntryFloat male_deviant_hit_reaction_light_0260328 cChooserEntryFloat male_deviant_hit_reaction_light_180230093 cChooserEntryFloat male_deviant_hit_reaction_light_180260390 cChooserEntryFloat male_deviant_hit_reaction_light_90260343 cChooserEntryFloat male_deviant_hit_reaction_light_90neg260359 cChooserEntryFloat male_deviant_hit_reaction_medium_0260328 cChooserEntryFloat male_deviant_hit_reaction_medium_180230093 cChooserEntryFloat male_deviant_hit_reaction_medium_180260390 cChooserEntryFloat male_deviant_hit_reaction_medium_90260343 cChooserEntryFloat male_deviant_hit_reaction_medium_90neg260359 cChooserEntryFloat male_dodge_roll480703 cChooserEntryFloat male_door_open_push_front_lhand430187 cChooserEntryFloat male_door_open_push_front_rhand380843 cChooserEntryFloat male_drill_a_1500031 cChooserEntryFloat male_drill_a_2400562 cChooserEntryFloat male_drill_a_2500031 cChooserEntryFloat male_drill_a_3500031 cChooserEntryFloat male_drill_a_4260640 cChooserEntryFloat male_drill_a_4500031 cChooserEntryFloat male_driller_impact_gut440875 cChooserEntryFloat male_driller_impact_head590234 cChooserEntryFloat male_drink_cheers cChooserEntryFloat male_drop_largebox280781 cChooserEntryFloat male_exsanguinator_thrust_impact_loop40750 cChooserEntryFloat male_fightface_10410917 cChooserEntryFloat male_fightface_2400198 cChooserEntryFloat male_fightface_3430542 cChooserEntryFloat male_fightface_4440948 cChooserEntryFloat male_fightface_5460636 cChooserEntryFloat male_fightface_6490120 cChooserEntryFloat male_fightface_7510292 cChooserEntryFloat male_fightface_8540167 cChooserEntryFloat male_fightface_9570058 cChooserEntryFloat male_fightface380683 cChooserEntryFloat male_fitnessbike_loop190769 cChooserEntryFloat male_get_in_garden_cart_90neg cChooserEntryFloat male_get_out_garden_cart_90neg cChooserEntryFloat male_get_up_from_front360109 cChooserEntryFloat male_get_up_from_on_back240625 cChooserEntryFloat male_get_up_from_on_back370078 cChooserEntryFloat male_get_up_from_on_back430453 cChooserEntryFloat male_get_up_from_on_back470758 cChooserEntryFloat male_getting_eaten_onfloor cChooserEntryFloat male_girls_bike_lean_back550826 cChooserEntryFloat male_girls_bike_lean_left550826 cChooserEntryFloat male_girls_bike_lean_right550826 cChooserEntryFloat male_girls_bike_pedal60778 cChooserEntryFloat male_give_1hand_object cChooserEntryFloat male_give_1hand_object330265 cChooserEntryFloat male_give_2hand_object cChooserEntryFloat male_give_2hand_object580203 cChooserEntryFloat male_grab_arm_ripoff100281 cChooserEntryFloat male_grab_upandover_pickup410996 cChooserEntryFloat male_grapple_enter120484 cChooserEntryFloat male_grapple_idle360843 cChooserEntryFloat male_grapple_toss_exit_negative550953 cChooserEntryFloat male_gyroscope_exit140520 cChooserEntryFloat male_gyroscope_fail_1300035 cChooserEntryFloat male_gyroscope_getup10326 cChooserEntryFloat male_gyroscope_idle30192 cChooserEntryFloat male_gyroscope_into140738 cChooserEntryFloat male_gyroscope_jog470613 cChooserEntryFloat male_gyroscope_run300598 cChooserEntryFloat male_gyroscope_walk_to_idle580988 cChooserEntryFloat male_gyroscope_walk320895 cChooserEntryFloat male_gyroscope_win80723 cChooserEntryFloat male_hand_attack_hedgeclipper_hands10875 cChooserEntryFloat male_hand_fist_pose390406 cChooserEntryFloat male_hand_front_struggle_bite_pose190754 cChooserEntryFloat male_hand_front_struggle_pose390484 cChooserEntryFloat male_hand_front_struggle_pose460597 cChooserEntryFloat male_hand_front_struggle_pushoff_pose80879 cChooserEntryFloat male_hand_hold_guitar_pose210254 cChooserEntryFloat male_hand_idle_pose cChooserEntryFloat male_hand_idle_pose250531 cChooserEntryFloat male_hand_idle_shotgun_aim cChooserEntryFloat male_hand_right_hold_pole_pose290515 cChooserEntryFloat male_hang_idle_to_idle cChooserEntryFloat male_hangman_attack_clearout210953 cChooserEntryFloat male_hangman_attack_club_while_noose460197 cChooserEntryFloat male_hangman_attack_melee_b330531 cChooserEntryFloat male_hangman_attack_melee_c500328 cChooserEntryFloat male_hangman_attack_melee_combo160265 cChooserEntryFloat male_hangman_attack_melee_d580890 cChooserEntryFloat male_hangman_attack_noose_throw_to_drag380317 cChooserEntryFloat male_hangman_attack_noose210062 cChooserEntryFloat male_hangman_attack_quickdraw310218 cChooserEntryFloat male_hangman_backpeddle460593 cChooserEntryFloat male_hangman_billyclub_to_noose440069 cChooserEntryFloat male_hangman_choke_sequence440828 cChooserEntryFloat male_hangman_drag_player340412 cChooserEntryFloat male_hangman_hit_reaction_light_0260328 cChooserEntryFloat male_hangman_hit_reaction_light_180230093 cChooserEntryFloat male_hangman_hit_reaction_light_180260390 cChooserEntryFloat male_hangman_hit_reaction_light_90260343 cChooserEntryFloat male_hangman_hit_reaction_light_90neg260359 cChooserEntryFloat male_hangman_hit_reaction_noose_breakout210181 cChooserEntryFloat male_hangman_idle_billyclub220036 cChooserEntryFloat male_hangman_idle_noose_twirl340500 cChooserEntryFloat male_hangman_melee_a430562 cChooserEntryFloat male_hangman_taunt_come_on80265 cChooserEntryFloat male_hangman_taunt_forget_you590156 cChooserEntryFloat male_highroller_attack_melee_a_stalker570531 cChooserEntryFloat male_highroller_attack_melee_b_stalker150625 cChooserEntryFloat male_highroller_attack_melee_c_stalker490687 cChooserEntryFloat male_highroller_chaser_taunt480453 cChooserEntryFloat male_highroller_chaser_taunt480609 cChooserEntryFloat male_hit_reaction_airborne_loop460640 cChooserEntryFloat male_hit_reaction_clubbed_while_noose_death510115 cChooserEntryFloat male_hit_reaction_clubbed_while_noose590963 cChooserEntryFloat male_hit_reaction_dragged560475 cChooserEntryFloat male_hit_reaction_pistol_shot_out_of_hand290770 cChooserEntryFloat male_hitreaction_arthur140984 cChooserEntryFloat male_hitreaction_bump cChooserEntryFloat male_hitreaction_choke_sequence50390 cChooserEntryFloat male_hitreaction_face_down_prone_to_throw_from_boykin90671 cChooserEntryFloat male_hitreaction_heavy_180440453 cChooserEntryFloat male_hitreaction_heavy_90550987 cChooserEntryFloat male_hitreaction_heavy_90neg470659 cChooserEntryFloat male_hitreaction_in_air_fall cChooserEntryFloat male_hitreaction_in_air_land cChooserEntryFloat male_hitreaction_light_0480265 cChooserEntryFloat male_hitreaction_light_180130046 cChooserEntryFloat male_hitreaction_light_90 cChooserEntryFloat male_hitreaction_light_90580421 cChooserEntryFloat male_hitreaction_light_90neg cChooserEntryFloat male_hitreaction_light_90neg10171 cChooserEntryFloat male_hitreaction_prone_to_throw_from_boykin110171 cChooserEntryFloat male_hitreaction_shot_from_prone_belly360703 cChooserEntryFloat male_hitreaction_shot_from_prone560750 cChooserEntryFloat male_hitreaction_smashdown_0120593 cChooserEntryFloat male_hitreaction_smashdown_180290734 cChooserEntryFloat male_idle_aim_rifle580828 cChooserEntryFloat male_idle_combat_ambient_1420989 cChooserEntryFloat male_idle_combat_ambient_2450489 cChooserEntryFloat male_idle_combat_ambient_prop_1440748 cChooserEntryFloat male_idle_combat_ambient_prop_2590420 cChooserEntryFloat male_idle_combat_look_left10639 cChooserEntryFloat male_idle_combat_look_left490317 cChooserEntryFloat male_idle_combat_look_right30530 cChooserEntryFloat male_idle_combat_look_right510941 cChooserEntryFloat male_idle_combat_to_idle_crouch180468 cChooserEntryFloat male_idle_combat210924 cChooserEntryFloat male_idle_combat420123 cChooserEntryFloat male_idle_crouch_to_idle_combat350703 cChooserEntryFloat male_idle_crouch190656 cChooserEntryFloat male_idle_drive_sportscar_left560359 cChooserEntryFloat male_idle_drive_sportscar_right570937 cChooserEntryFloat male_idle_drive_sportscar510296 cChooserEntryFloat male_idle_hamsterball cChooserEntryFloat male_idle_hang cChooserEntryFloat male_idle_moosehead cChooserEntryFloat male_idle_rifle_aim_180440218 cChooserEntryFloat male_idle_rifle_aim_180neg440218 cChooserEntryFloat male_idle_throw_plates490796 cChooserEntryFloat male_idle_to_catch_zombie_idle230078 cChooserEntryFloat male_idle_to_catch_zombie_idle40859 cChooserEntryFloat male_idle_to_hang cChooserEntryFloat male_interact_machines cChooserEntryFloat male_interact_standee260234 cChooserEntryFloat male_jack_death_slow cChooserEntryFloat male_jack_death_slow_final_pose cChooserEntryFloat male_jack_death_slow_final_pose100531 cChooserEntryFloat male_jack_death_slow_final_pose150687 cChooserEntryFloat male_jack_death_slow109 cChooserEntryFloat male_jack_death_slow350540 cChooserEntryFloat male_jack_death_slow570328 cChooserEntryFloat male_jack_hitreaction_light_90413 cChooserEntryFloat male_jack_idle_taunt_laugh540406 cChooserEntryFloat male_jog_hamsterball cChooserEntryFloat male_lasooed_facing_away_from_hangman30453 cChooserEntryFloat male_lasooed_facing_hangman540703 cChooserEntryFloat male_lasooed_fall_impact300281 cChooserEntryFloat male_lasooed_freefall_idle280484 cChooserEntryFloat male_lasooed_from_vehicle_back120578 cChooserEntryFloat male_lasooed_from_vehicle_front540453 cChooserEntryFloat male_look_at_object cChooserEntryFloat male_look_at_object470437 cChooserEntryFloat male_mix_drink cChooserEntryFloat male_moneygrab_enter_neutral470984 cChooserEntryFloat male_moneygrab_exit_happy540375 cChooserEntryFloat male_moneygrab_exit_neutral590008 cChooserEntryFloat male_moneygrab_grab_money_in460695 cChooserEntryFloat male_moneygrab_grab_money_loop220187 cChooserEntryFloat male_moneygrab_grab_money_out470953 cChooserEntryFloat male_moneygrab_look_around180914 cChooserEntryFloat male_npc_piggyback_piggybackee_idle cChooserEntryFloat male_npc_shoulderlean_shoulderleanee_idle cChooserEntryFloat male_onback_struggle420859 cChooserEntryFloat male_onback_to_death400015 cChooserEntryFloat male_open_mouth240042 cChooserEntryFloat male_out_of_range_for_level_switch360389 cChooserEntryFloat male_peepshow_enter_neutral240434 cChooserEntryFloat male_peepshow_exit_happy450605 cChooserEntryFloat male_peepshow_look_around130340 cChooserEntryFloat male_pickup_prop_from_zombie_head40140 cChooserEntryFloat male_piggyback_piggybacker_idle cChooserEntryFloat male_ponder_poster cChooserEntryFloat male_postman_clearout330030 cChooserEntryFloat male_postman_death440750 cChooserEntryFloat male_postman_get_up_from_back230261 cChooserEntryFloat male_postman_hit_reaction_heavy_back50378 cChooserEntryFloat male_postman_hit_reaction_heavy_front560347 cChooserEntryFloat male_postman_hit_reaction_heavy_front580504 cChooserEntryFloat male_postman_hit_reaction_heavy_left120392 cChooserEntryFloat male_postman_hit_reaction_heavy_right210307 cChooserEntryFloat male_postman_hit_reaction_light_back250836 cChooserEntryFloat male_postman_hit_reaction_light_front180822 cChooserEntryFloat male_postman_hit_reaction_light_front40826 cChooserEntryFloat male_postman_hit_reaction_light_left330380 cChooserEntryFloat male_postman_hit_reaction_light_right410064 cChooserEntryFloat male_postman_hit_reaction_medium_back250636 cChooserEntryFloat male_postman_hit_reaction_medium_front30996 cChooserEntryFloat male_postman_hit_reaction_medium_front470293 cChooserEntryFloat male_postman_hit_reaction_medium_left110715 cChooserEntryFloat male_postman_hit_reaction_medium_right180683 cChooserEntryFloat male_postman_melee_a130834 cChooserEntryFloat male_postman_melee_b190897 cChooserEntryFloat male_postman_melee_rifle_press230920 cChooserEntryFloat male_postman_shoot_ready190154 cChooserEntryFloat male_postman_shotgun_reload480593 cChooserEntryFloat male_postman_shotgun_success_taunt220515 cChooserEntryFloat male_prizewheel_lose550453 cChooserEntryFloat male_prizewheel_spin_watch_idle270285 cChooserEntryFloat male_prizewheel_spin150848 cChooserEntryFloat male_prizewheel_win420140 cChooserEntryFloat male_put_away_phone cChooserEntryFloat male_run_answer_headset240062 cChooserEntryFloat male_run_answer_headset550343 cChooserEntryFloat male_run_combat_injured350842 cChooserEntryFloat male_run_hamsterball cChooserEntryFloat male_safehouse_idle_anxious_01570761 cChooserEntryFloat male_safehouse_idle_anxious_02570761 cChooserEntryFloat male_safehouse_idle_anxious_03570777 cChooserEntryFloat male_safehouse_idle_anxious_04570777 cChooserEntryFloat male_safehouse_idle_bored_01240605 cChooserEntryFloat male_safehouse_idle_bored_02240605 cChooserEntryFloat male_safehouse_idle_bored_03240605 cChooserEntryFloat male_safehouse_idle_bored_04240605 cChooserEntryFloat male_safehouse_idle_calm240605 cChooserEntryFloat male_safehouse_idle_excited_01590074 cChooserEntryFloat male_safehouse_idle_excited_02590074 cChooserEntryFloat male_safehouse_idle_excited_03590089 cChooserEntryFloat male_safehouse_idle_excited_04590089 cChooserEntryFloat male_safehouse_idle_frightened580902 cChooserEntryFloat male_safehouse_idle_hands_hips240605 cChooserEntryFloat male_safehouse_idle_heroic240574 cChooserEntryFloat male_safehouse_idle_leaning_on_wall130933 cChooserEntryFloat male_safehouse_idle_panicked530230 cChooserEntryFloat male_safehouse_idle_prone_injured_001210792 cChooserEntryFloat male_safehouse_idle_scared_02580902 cChooserEntryFloat male_safehouse_idle_scared_03580902 cChooserEntryFloat male_safehouse_idle_scared_04580902 cChooserEntryFloat male_safehouse_idle_scared580902 cChooserEntryFloat male_safehouse_idle_sitting_chair280995 cChooserEntryFloat male_safehouse_idle_sitting_floor190808 cChooserEntryFloat male_safehouse_idle240605 cChooserEntryFloat male_safehouse_sleeping_prone_01290527 cChooserEntryFloat male_safehouse_sleeping_prone_02290605 cChooserEntryFloat male_safehouse_sleeping_prone_03290730 cChooserEntryFloat male_safehouse_sleeping_prone_04290902 cChooserEntryFloat male_safehouse_sleeping_prone_05300011 cChooserEntryFloat male_safehouse_sleeping_sit_floor_01200777 cChooserEntryFloat male_safehouse_sleeping_sit_floor_02200714 cChooserEntryFloat male_shield_guard_jab440078 cChooserEntryFloat male_shield_guard_overhand440046 cChooserEntryFloat male_shoot_m249_rapid120937 cChooserEntryFloat male_shoot_rifle_garden_cart cChooserEntryFloat male_shoulderlean_shoulderleaner_idle cChooserEntryFloat male_skateboard_brake310506 cChooserEntryFloat male_skateboard_geton130680 cChooserEntryFloat male_skateboard_idle_jump_load530102 cChooserEntryFloat male_skateboard_idle_ride_down120562 cChooserEntryFloat male_skateboard_idle_ride_down310445 cChooserEntryFloat male_skateboard_idle_ride_up430281 cChooserEntryFloat male_skateboard_idle_ride_up500472 cChooserEntryFloat male_skateboard_idle_ride160255 cChooserEntryFloat male_skateboard_idle_to_crouch510601 cChooserEntryFloat male_skateboard_jump_freefall40285 cChooserEntryFloat male_skateboard_jump_land280305 cChooserEntryFloat male_skateboard_jump_start250760 cChooserEntryFloat male_skateboard_jump_turn_l530102 cChooserEntryFloat male_skateboard_jump_turn_r530102 cChooserEntryFloat male_skateboard_pump400357 cChooserEntryFloat male_skateboard_turn_l160255 cChooserEntryFloat male_skateboard_turn_r160255 cChooserEntryFloat male_slots_lean460602 cChooserEntryFloat male_slots_lose330296 cChooserEntryFloat male_slots_push_button490218 cChooserEntryFloat male_slots_win160812 cChooserEntryFloat male_spit cChooserEntryFloat male_standee_120906 cChooserEntryFloat male_standee_290343 cChooserEntryFloat male_standee_3968 cChooserEntryFloat male_standee_470734 cChooserEntryFloat male_sullivan_checkwatch60968 cChooserEntryFloat male_sullivan_sitting_01590358 cChooserEntryFloat male_sullivan_sitting_02180202 cChooserEntryFloat male_survivor_arguing_low220265 cChooserEntryFloat male_survivor_back_away_swipe590953 cChooserEntryFloat male_survivor_back_away580515 cChooserEntryFloat male_survivor_being_carried_turn_180270062 cChooserEntryFloat male_survivor_being_carried_turn_180neg270062 cChooserEntryFloat male_survivor_being_carried_turn_90270062 cChooserEntryFloat male_survivor_being_carried_turn_90neg270062 cChooserEntryFloat male_survivor_decline_low220296 cChooserEntryFloat male_survivor_gate_rattle_1250421 cChooserEntryFloat male_survivor_gate_rattle_1420328 cChooserEntryFloat male_survivor_gate_rattle_2260656 cChooserEntryFloat male_survivor_gate_rattle_2420406 cChooserEntryFloat male_survivor_gate_rattle_3270609 cChooserEntryFloat male_survivor_gate_rattle_3420296 cChooserEntryFloat male_survivor_getin_wheelchair200218 cChooserEntryFloat male_survivor_getout_wheelchair140187 cChooserEntryFloat male_survivor_give_take1hand_object100359 cChooserEntryFloat male_survivor_hitreaction__medium370796 cChooserEntryFloat male_survivor_hitreaction_back_medium370796 cChooserEntryFloat male_survivor_hitreaction_fatal_180140093 cChooserEntryFloat male_survivor_hitreaction_fatal_90140093 cChooserEntryFloat male_survivor_hitreaction_fatal_90neg140093 cChooserEntryFloat male_survivor_hitreaction_fatal140093 cChooserEntryFloat male_survivor_idle_injured400388 cChooserEntryFloat male_survivor_idle_lying_on_gurney_bit490703 cChooserEntryFloat male_survivor_idle_lying_on_gurney570859 cChooserEntryFloat male_survivor_idle_sitting_on_gurney_gesture340906 cChooserEntryFloat male_survivor_idle_sitting_on_gurney671 cChooserEntryFloat male_survivor_laugh_low220140 cChooserEntryFloat male_survivor_pivot_180230670 cChooserEntryFloat male_survivor_pivot_180neg350357 cChooserEntryFloat male_survivor_pivot_90480295 cChooserEntryFloat male_survivor_pivot_90neg210638 cChooserEntryFloat male_survivor_straight_freefall240031 cChooserEntryFloat male_survivor_swing_onehanded_01210140 cChooserEntryFloat male_survivor_swing_onehanded_02300281 cChooserEntryFloat male_survivor_swing_onehanded_03230187 cChooserEntryFloat male_survivor_swing_onehanded_04310859 cChooserEntryFloat male_survivor_t3_gesture_safehouse_01140687 cChooserEntryFloat male_survivor_talking_high340359 cChooserEntryFloat male_survivor_talking_low340359 cChooserEntryFloat male_survivor_talking_med340359 cChooserEntryFloat male_survivor_thankful_low220234 cChooserEntryFloat male_survivor_understand_low220250 cChooserEntryFloat male_survivor_wheelchair_idle430437 cChooserEntryFloat male_ted_attack_backhand190625 cChooserEntryFloat male_ted_attack_kick230140 cChooserEntryFloat male_ted_attack_melee510140 cChooserEntryFloat male_ted_head_butt150421 cChooserEntryFloat male_ted_heavykick170125 cChooserEntryFloat male_thug_idle_shooting_minigun380861 cChooserEntryFloat male_thug_idle550218 cChooserEntryFloat male_tir_bike_brake120234 cChooserEntryFloat male_tir_bike_brake430926 cChooserEntryFloat male_tir_bike_donut_idle430926 cChooserEntryFloat male_tir_bike_donut_left430926 cChooserEntryFloat male_tir_bike_donut_right430926 cChooserEntryFloat male_tir_bike_idle_riding_standup_turn_left120281 cChooserEntryFloat male_tir_bike_idle_riding_standup_turn_left430926 cChooserEntryFloat male_tir_bike_idle_riding_standup_turn_right120296 cChooserEntryFloat male_tir_bike_idle_riding_standup_turn_right430926 cChooserEntryFloat male_tir_bike_idle_riding_standup120265 cChooserEntryFloat male_tir_bike_idle_riding_standup430926 cChooserEntryFloat male_tir_bike_idle_riding120250 cChooserEntryFloat male_tir_bike_idle_riding430926 cChooserEntryFloat male_tir_bike_lean_back120359 cChooserEntryFloat male_tir_bike_lean_back430926 cChooserEntryFloat male_tir_bike_lean_forward120375 cChooserEntryFloat male_tir_bike_lean_forward430926 cChooserEntryFloat male_tir_bike_lean_left_fast120421 cChooserEntryFloat male_tir_bike_lean_left_fast430942 cChooserEntryFloat male_tir_bike_lean_left_slow120437 cChooserEntryFloat male_tir_bike_lean_left_slow430942 cChooserEntryFloat male_tir_bike_lean_left120406 cChooserEntryFloat male_tir_bike_lean_left430926 cChooserEntryFloat male_tir_bike_lean_right_fast120468 cChooserEntryFloat male_tir_bike_lean_right_fast430942 cChooserEntryFloat male_tir_bike_lean_right_slow120484 cChooserEntryFloat male_tir_bike_lean_right_slow430942 cChooserEntryFloat male_tir_bike_lean_right120453 cChooserEntryFloat male_tir_bike_lean_right430942 cChooserEntryFloat male_tir_bike_powerslide_left430942 cChooserEntryFloat male_tir_bike_powerslide_right430942 cChooserEntryFloat male_tir_bike_reverse430926 cChooserEntryFloat male_trainthug_aim_idle420328 cChooserEntryFloat male_trainthug_aim_to_idle530640 cChooserEntryFloat male_trainthug_idle_to_aim430484 cChooserEntryFloat male_trainthug_idle90328 cChooserEntryFloat male_trainthug_reload450953 cChooserEntryFloat male_trainthug_shoot190074 cChooserEntryFloat male_trainthug_throw_barrel310154 cChooserEntryFloat male_trainthug_throw_item400640 cChooserEntryFloat male_ub_prime_grenade80000 cChooserEntryFloat male_ub_primed_grenade130265 cChooserEntryFloat male_ub_throw_grenade_180470410 cChooserEntryFloat male_ub_throw_grenade_180neg470410 cChooserEntryFloat male_ub_throw_grenade_90470410 cChooserEntryFloat male_ub_throw_grenade_90neg470410 cChooserEntryFloat male_ub_throw_grenade210691 cChooserEntryFloat male_untie_standing_survivor480026 cChooserEntryFloat male_vending_engage260062 cChooserEntryFloat male_vending_idle550515 cChooserEntryFloat male_virtual_golf_into_idle40619 cChooserEntryFloat male_virtual_golf_lose130546 cChooserEntryFloat male_virtual_golf_outof_swing320921 cChooserEntryFloat male_virtual_golf_post_swing_idle80625 cChooserEntryFloat male_virtual_golf_swing420259 cChooserEntryFloat male_virtual_golf_waggle_idle140322 cChooserEntryFloat male_virtual_golf_win480875 cChooserEntryFloat male_vomit_1590664 cChooserEntryFloat male_vomit_2580555 cChooserEntryFloat male_walk_answer_headset140078 cChooserEntryFloat male_walk_answer_headset370578 cChooserEntryFloat male_walk_hamsterball cChooserEntryFloat male_walk_to_idle_hamsterball cChooserEntryFloat male_weapon_broken270906 cChooserEntryFloat male_wheelbarrow_charge30609 cChooserEntryFloat male_wheelchair_dump390656 cChooserEntryFloat male_wheelchairtank_idle510503 cChooserEntryFloat male_wheelchairtank_idle535 cChooserEntryFloat male_wheelchairtank_shoot510503 cChooserEntryFloat male_wheelchairtank_shoot535 cChooserEntryFloat male_wheelchairtank_turn_left510503 cChooserEntryFloat male_wheelchairtank_turn_left535 cChooserEntryFloat male_wheelchairtank_turn_right510503 cChooserEntryFloat male_wheelchairtank_turn_right535 cChooserEntryFloat male_yellface10495 cChooserEntryFloat male_zoltar_idle410375 cChooserEntryFloat mascot_hit_reaction_light_back250836 cChooserEntryFloat mascot_hit_reaction_light_front180822 cChooserEntryFloat mascot_hit_reaction_light_front40826 cChooserEntryFloat mascot_hit_reaction_light_left330380 cChooserEntryFloat mascot_hit_reaction_light_right410064 cChooserEntryFloat mascot_onground_reaction_hit_back cChooserEntryFloat mascot_onground_reaction_hit_front cChooserEntryFloat mascot_onground_reaction_hit_left cChooserEntryFloat mascot_onground_reaction_hit_right cChooserEntryFloat mascot_skate_up_stairs cChooserEntryFloat mascot_skating_reaction_hit_back cChooserEntryFloat mascot_skating_reaction_hit_front cChooserEntryFloat mascot_skating_reaction_hit_left cChooserEntryFloat mascot_skating_reaction_hit_right cChooserEntryFloat merc_aim_rifle_to_idle500515 cChooserEntryFloat merc_aim_turn_180470484 cChooserEntryFloat merc_aim_turn_180neg470484 cChooserEntryFloat merc_aim_turn_90470484 cChooserEntryFloat merc_aim_turn_9060000 cChooserEntryFloat merc_aim_turn_90neg470484 cChooserEntryFloat merc_attack_rifle_butt130562 cChooserEntryFloat merc_chase440781 cChooserEntryFloat merc_clear_stickable60093 cChooserEntryFloat merc_dead_onback40633 cChooserEntryFloat merc_dead_onbelly150165 cChooserEntryFloat merc_dodgeroll_90 cChooserEntryFloat merc_dodgeroll_90neg cChooserEntryFloat merc_getup_onback90656 cChooserEntryFloat merc_getup_onbelly90656 cChooserEntryFloat merc_getup_onbutt550500 cChooserEntryFloat merc_getup_onside60812 cChooserEntryFloat merc_hitreaction_light_0150000 cChooserEntryFloat merc_hitreaction_light_180170140 cChooserEntryFloat merc_hitreaction_light_90190437 cChooserEntryFloat merc_hitreaction_light_90neg210531 cChooserEntryFloat merc_hitreaction_onfire_260468 cChooserEntryFloat merc_hitreaction_onfire_360328 cChooserEntryFloat merc_hitreaction_onfire60453 cChooserEntryFloat merc_hitreaction_step_left cChooserEntryFloat merc_hitreaction_step_right cChooserEntryFloat merc_idle_2609 cChooserEntryFloat merc_idle_3625 cChooserEntryFloat merc_idle_4609 cChooserEntryFloat merc_idle_aim_rifle_casual170265 cChooserEntryFloat merc_idle_aim_rifle150828 cChooserEntryFloat merc_idle_alert_0110687 cChooserEntryFloat merc_idle_alert_180110687 cChooserEntryFloat merc_idle_alert_180neg110687 cChooserEntryFloat merc_idle_alert_90110687 cChooserEntryFloat merc_idle_alert_90neg110687 cChooserEntryFloat merc_idle_to_aim_rifle60765 cChooserEntryFloat merc_idle_to_walk90234 cChooserEntryFloat merc_idle_turn_180390234 cChooserEntryFloat merc_idle_turn_180neg500671 cChooserEntryFloat merc_idle_turn_90470500 cChooserEntryFloat merc_idle_turn_90neg210875 cChooserEntryFloat merc_idle140578 cChooserEntryFloat merc_idle490468 cChooserEntryFloat merc_jam_rifle170265 cChooserEntryFloat merc_point_left cChooserEntryFloat merc_point_right cChooserEntryFloat merc_radio_onknee_rifle cChooserEntryFloat merc_radio_rifle cChooserEntryFloat merc_reload_rifle170265 cChooserEntryFloat merc_run440796 cChooserEntryFloat merc_shoot_rifle_casual_down170265 cChooserEntryFloat merc_shoot_rifle_up170281 cChooserEntryFloat merc_shoot_rifle580031 cChooserEntryFloat merc_step_left cChooserEntryFloat merc_step_right cChooserEntryFloat merc_throw_grenade cChooserEntryFloat merc_walk_to_idle490968 cChooserEntryFloat merc_walk440796 cChooserEntryFloat merc_wave_point_left cChooserEntryFloat merc_wave_point_right cChooserEntryFloat mermaid_female_survivor_hit_reaction80946 cChooserEntryFloat mermaid_female_survivor_idle_safehouse50109 cChooserEntryFloat mermaid_female_survivor_kiss140421 cChooserEntryFloat Normal260828 cChooserEntryFloat Normal330328 cChooserEntryFloat one_anim cChooserEntryFloat player_attack_charge_grabbed_against_wall_beatdown_fail160334 cChooserEntryFloat player_attack_charge_grabbed_against_wall_beatdown_success570234 cChooserEntryFloat player_attack_charge_grabbed_against_wall310390 cChooserEntryFloat player_attack_charge_grabbed_run110890 cChooserEntryFloat player_attacked_shard_grapple_leap_on_back460453 cChooserEntryFloat player_attacked_shard_grapple_leap_on_front60453 cChooserEntryFloat player_crank cChooserEntryFloat player_crank_to_idle cChooserEntryFloat player_knifed_grabbed_and_stabbed_success310796 cChooserEntryFloat player_minigame_grapple_idle30640 cChooserEntryFloat player_minigame_grapple_player_pushoff330693 cChooserEntryFloat player_minigame_grapple_winch_hit570949 cChooserEntryFloat player_minigame_winch_grab_to_grapple_back490046 cChooserEntryFloat player_minigame_winch_grab_to_grapple_front170531 cChooserEntryFloat player_minigame_winch_grapple_fail510965 cChooserEntryFloat player_minigame_winch_grapple_idle40981 cChooserEntryFloat player_minigame_winch_grapple_success180262 cChooserEntryFloat player_noose_pickup_to_choke470132 cChooserEntryFloat player_reaction_blinded430658 cChooserEntryFloat player_throw_reaction cChooserEntryFloat player_transition_charge_to_grabbed90890 cChooserEntryFloat player_transition_idle_to_crank cChooserEntryFloat poker_idle_hands_on_table90281 cChooserEntryFloat poker_idle_to_on_phone_idle130544 cChooserEntryFloat poker_on_phone_idle_to_idle430387 cChooserEntryFloat poker_on_phone_idle10153 cChooserEntryFloat poker_tell_leaning_back_in_chair60906 cChooserEntryFloat poker_tell_looking_around_the_table_l_002390937 cChooserEntryFloat poker_tell_looking_around_the_table_l20218 cChooserEntryFloat poker_tell_looking_around_the_table_r_002590625 cChooserEntryFloat poker_tell_looking_around_the_table_r170781 cChooserEntryFloat radio cChooserEntryFloat Right250906 cChooserEntryFloat Right450375 cChooserEntryFloat roundhouse cChooserEntryFloat sick_idle_cycle270328 cChooserEntryFloat slashfest_attack cChooserEntryFloat spread cChooserEntryFloat stacey_lowered160402 cChooserEntryFloat standing_idle_to_sick390812 cChooserEntryFloat survivor_male_dragged_static540828 cChooserEntryFloat survivor_male_dragged150812 cChooserEntryFloat temp_protester_player_onback_idle180843 cChooserEntryFloat Turn180neg cChooserEntryFloat tutorial_2_irwin_door_burst560671 cChooserEntryFloat twins_attack_heelstomp_idle150564 cChooserEntryFloat twins_attack_player_heelstomped_idle510955 cChooserEntryFloat twins_attack_player_heelstomped80080 cChooserEntryFloat twins_attack_player_onback_idle310390 cChooserEntryFloat twins_hit_reaction_knockdown_back130893 cChooserEntryFloat twins_hit_reaction_knockdown_front260987 cChooserEntryFloat twins_hit_reaction_knockdown_front70987 cChooserEntryFloat twins_hit_reaction_knockdown_left110784 cChooserEntryFloat twins_hit_reaction_knockdown_onback_idle150768 cChooserEntryFloat twins_hit_reaction_knockdown_onback210362 cChooserEntryFloat twins_hit_reaction_knockdown_right270565 cChooserEntryFloat twins_hit_reaction_light_back190904 cChooserEntryFloat twins_hit_reaction_light_front190904 cChooserEntryFloat twins_hit_reaction_light_left190904 cChooserEntryFloat twins_hit_reaction_light_right190904 cChooserEntryFloat twins_hit_reaction_medium_back220123 cChooserEntryFloat twins_hit_reaction_medium_front220123 cChooserEntryFloat twins_hit_reaction_medium_left220123 cChooserEntryFloat twins_hit_reaction_medium_right220123 cChooserEntryFloat twins_painting_breakout120659 cChooserEntryFloat twins_painting_hitreaction410237 cChooserEntryFloat twins_painting_idle550221 cChooserEntryFloat twins_taunt_caress390961 cChooserEntryFloat twins_taunt_knockdown_tease_01140197 cChooserEntryFloat twins_taunt_knockdown_tease_02270963 cChooserEntryFloat twins_taunt_knockdown_tease_03560822 cChooserEntryFloat twins_transition_onback_to_locomotion_idle280034 cChooserEntryFloat twinsblack_attack_katana_slash_charge_slash_extended320725 cChooserEntryFloat twinsblack_death290561 cChooserEntryFloat twinsblack_taunt_seduction200437 cChooserEntryFloat twinswhite_taunt_seduction_03200437 cChooserEntryFloat v1 cChooserEntryFloat v2 cChooserEntryFloat v3 cChooserEntryFloat v4 cChooserEntryFloat v5 cChooserEntryFloat vulnerable_idle cChooserEntryFloat WithPhone cChooserEntryFloat zombie_attack_1hand_object_2320640 cChooserEntryFloat zombie_attack_1hand_object320640 cChooserEntryFloat zombie_attack_gun190703 cChooserEntryFloat zombie_attack_lunge_2120687 cChooserEntryFloat zombie_attack_lunge_trip390953 cChooserEntryFloat zombie_attack_lunge240125 cChooserEntryFloat zombie_attack_swipe_backhand_lhand300078 cChooserEntryFloat zombie_attack_swipe_backhand_rhand300078 cChooserEntryFloat zombie_attack_swipe_fast_lhand300078 cChooserEntryFloat zombie_attack_swipe_fast_rhand300078 cChooserEntryFloat zombie_attack_swipe_horizontal_lhand300078 cChooserEntryFloat zombie_attack_swipe_horizontal_rhand300078 cChooserEntryFloat zombie_attack_swipe_lhand300078 cChooserEntryFloat zombie_attack_swipe_rhand300078 cChooserEntryFloat zombie_attack_swipe_uppercut_2hand300078 cChooserEntryFloat zombie_attack_swipe_uppercut_lhand300078 cChooserEntryFloat zombie_attack_swipe_uppercut_rhand300078 cChooserEntryFloat zombie_attack_swipe_vertical_lhand300078 cChooserEntryFloat zombie_attack_swipe_vertical_rhand300062 cChooserEntryFloat zombie_chase_fast_1510361 cChooserEntryFloat zombie_chase_fast_2590455 cChooserEntryFloat zombie_chase_fast_5130846 cChooserEntryFloat zombie_chase_fast_730468 cChooserEntryFloat zombie_chase_slow_1 cChooserEntryFloat zombie_chase_slow_11410924 cChooserEntryFloat zombie_chase_slow_12470939 cChooserEntryFloat zombie_chase_slow_13250564 cChooserEntryFloat zombie_chase_slow_2 cChooserEntryFloat zombie_chase_slow_3 cChooserEntryFloat zombie_chase_slow_4 cChooserEntryFloat zombie_chase_slow_5 cChooserEntryFloat zombie_chase_slow_7 cChooserEntryFloat zombie_chase_slow_8 cChooserEntryFloat zombie_chase_slow_9 cChooserEntryFloat zombie_climb_up_100cm460703 cChooserEntryFloat zombie_climb_up_40cm170968 cChooserEntryFloat zombie_climb_up_70cm170968 cChooserEntryFloat zombie_crawl cChooserEntryFloat zombie_crawl_2 cChooserEntryFloat zombie_crawl_360234 cChooserEntryFloat zombie_dead_headshot_fall_onface220296 cChooserEntryFloat zombie_dead_headshot_fall_onside_r300031 cChooserEntryFloat zombie_dead_onback410671 cChooserEntryFloat zombie_dead_onbelly40609 cChooserEntryFloat zombie_dead_onground100796 cChooserEntryFloat zombie_deadpose_10340515 cChooserEntryFloat zombie_deadpose_1340531 cChooserEntryFloat zombie_deadpose_2340531 cChooserEntryFloat zombie_deadpose_3340546 cChooserEntryFloat zombie_deadpose_4340546 cChooserEntryFloat zombie_deadpose_5340546 cChooserEntryFloat zombie_deadpose_6340546 cChooserEntryFloat zombie_deadpose_7340546 cChooserEntryFloat zombie_deadpose_8340546 cChooserEntryFloat zombie_deadpose_9340546 cChooserEntryFloat zombie_fall_cart580984 cChooserEntryFloat zombie_fat_attack_lunge_2875 cChooserEntryFloat zombie_fat_attack_lunge875 cChooserEntryFloat zombie_fat_attack_swipe_horizontal_lhand380187 cChooserEntryFloat zombie_fat_attack_swipe_horizontal_rhand380187 cChooserEntryFloat zombie_fat_attack_swipe_uppercut_lhand380187 cChooserEntryFloat zombie_fat_attack_swipe_uppercut_rhand380187 cChooserEntryFloat zombie_fat_attack_swipe_vertical_lhand380187 cChooserEntryFloat zombie_fat_attack_swipe_vertical_rhand380187 cChooserEntryFloat zombie_fat_attack_swipe380171 cChooserEntryFloat zombie_fat_idle_onbelly50578 cChooserEntryFloat zombie_fat_idle_reach cChooserEntryFloat zombie_fat_idle_reach_2 cChooserEntryFloat zombie_fat_idle_reach_3 cChooserEntryFloat zombie_female_chase_slow_1470218 cChooserEntryFloat zombie_female_chase_slow_2420265 cChooserEntryFloat zombie_female_chase_slow_3420265 cChooserEntryFloat zombie_female_getup_onknee10765 cChooserEntryFloat zombie_female_idle_2580937 cChooserEntryFloat zombie_female_idle_3420812 cChooserEntryFloat zombie_female_idle570218 cChooserEntryFloat zombie_female_onback_to_onknee10765 cChooserEntryFloat zombie_female_onbelly_to_onknee10765 cChooserEntryFloat zombie_female_run_1310250 cChooserEntryFloat zombie_female_walk_fast_180562 cChooserEntryFloat zombie_female_walk_slow_1390921 cChooserEntryFloat zombie_female_walk_slow_2220093 cChooserEntryFloat zombie_female_walk_slow_3250734 cChooserEntryFloat zombie_gas_attack_lunge_2430703 cChooserEntryFloat zombie_gas_attack_lunge_3370757 cChooserEntryFloat zombie_gas_attack_lunge_miss430687 cChooserEntryFloat zombie_gas_attack_lunge510880 cChooserEntryFloat zombie_gas_attack_swipe_2hand370757 cChooserEntryFloat zombie_gas_attack_swipe_combo_2370772 cChooserEntryFloat zombie_gas_attack_swipe_combo540020 cChooserEntryFloat zombie_gas_attack_swipe_horizontal560192 cChooserEntryFloat zombie_gas_attack_throwup_2290421 cChooserEntryFloat zombie_gas_attack_throwup50208 cChooserEntryFloat zombie_gas_chase_fast_2590192 cChooserEntryFloat zombie_gas_chase_fast_3400944 cChooserEntryFloat zombie_gas_chase_fast560286 cChooserEntryFloat zombie_gas_chase_slow_2400929 cChooserEntryFloat zombie_gas_chase_slow510786 cChooserEntryFloat zombie_gas_climb_up_100cm500156 cChooserEntryFloat zombie_gas_climb_up_40cm500171 cChooserEntryFloat zombie_gas_climb_up_70cm500171 cChooserEntryFloat zombie_gas_getup_onback_fast350187 cChooserEntryFloat zombie_gas_getup_onbelly_fast_2210359 cChooserEntryFloat zombie_gas_getup_onbelly_fast350187 cChooserEntryFloat zombie_gas_hitreaction_final_death_onback_2160468 cChooserEntryFloat zombie_gas_hitreaction_final_death_onback_3160468 cChooserEntryFloat zombie_gas_hitreaction_final_death_onback590140 cChooserEntryFloat zombie_gas_hitreaction_final_death_onbelly_2270453 cChooserEntryFloat zombie_gas_hitreaction_final_death_onbelly550406 cChooserEntryFloat zombie_gas_hitreaction_head_explode_2843 cChooserEntryFloat zombie_gas_hitreaction_head_explode590484 cChooserEntryFloat zombie_gas_hitreaction_queen_2170203 cChooserEntryFloat zombie_gas_hitreaction_queen_3170296 cChooserEntryFloat zombie_gas_hitreaction_queen_4170093 cChooserEntryFloat zombie_gas_hitreaction_queen410921 cChooserEntryFloat zombie_gas_idle_2300426 cChooserEntryFloat zombie_gas_idle_3380078 cChooserEntryFloat zombie_gas_idle_4380078 cChooserEntryFloat zombie_gas_idle_5330897 cChooserEntryFloat zombie_gas_idle_aware_to_chase_180708 cChooserEntryFloat zombie_gas_idle_aware_to_chase_180neg708 cChooserEntryFloat zombie_gas_idle_aware_to_chase_90708 cChooserEntryFloat zombie_gas_idle_aware_to_chase_90neg708 cChooserEntryFloat zombie_gas_idle_aware_to_chase708 cChooserEntryFloat zombie_gas_idle_eating_body_onfloor_210507 cChooserEntryFloat zombie_gas_idle_eating_body_onfloor10507 cChooserEntryFloat zombie_gas_idle_eating410929 cChooserEntryFloat zombie_gas_idle_reach_up_2180817 cChooserEntryFloat zombie_gas_idle_reach_up100348 cChooserEntryFloat zombie_gas_idle270817 cChooserEntryFloat zombie_gas_struggle_back_onground_bite90921 cChooserEntryFloat zombie_gas_struggle_back_onground_idle250453 cChooserEntryFloat zombie_gas_struggle_back_onground_pushoff250453 cChooserEntryFloat zombie_gas_struggle_front_onground_bite90921 cChooserEntryFloat zombie_gas_struggle_front_onground_idle250453 cChooserEntryFloat zombie_gas_struggle_front_onground_pushoff250437 cChooserEntryFloat zombie_gas_struggle_standing_back_bite290671 cChooserEntryFloat zombie_gas_struggle_standing_back_idle290671 cChooserEntryFloat zombie_gas_struggle_standing_back_into290671 cChooserEntryFloat zombie_gas_struggle_standing_back_pushoff290671 cChooserEntryFloat zombie_gas_struggle_standing_back_to_onground560312 cChooserEntryFloat zombie_gas_struggle_standing_front_bite290671 cChooserEntryFloat zombie_gas_struggle_standing_front_idle290671 cChooserEntryFloat zombie_gas_struggle_standing_front_into290671 cChooserEntryFloat zombie_gas_struggle_standing_front_pushoff290671 cChooserEntryFloat zombie_gas_struggle_standing_front_to_onground590921 cChooserEntryFloat zombie_gas_walk_fast_2560710 cChooserEntryFloat zombie_gas_walk_fast240692 cChooserEntryFloat zombie_gas_walk_reach_up_2260051 cChooserEntryFloat zombie_gas_walk_reach_up370754 cChooserEntryFloat zombie_gas_walk_slow_2560725 cChooserEntryFloat zombie_gas_walk_slow120098 cChooserEntryFloat zombie_getup_fall_onside10656 cChooserEntryFloat zombie_getup_onass250484 cChooserEntryFloat zombie_getup_onknee360406 cChooserEntryFloat zombie_grab_arm_ripoff_front cChooserEntryFloat zombie_grab_arm_ripoff250015 cChooserEntryFloat zombie_grab_bellyflop cChooserEntryFloat zombie_grab_face_breaker cChooserEntryFloat zombie_grab_face_breaker_front cChooserEntryFloat zombie_hanging_idle_01170550 cChooserEntryFloat zombie_hanging_idle_02510675 cChooserEntryFloat zombie_hanging_idle_03510675 cChooserEntryFloat zombie_hanging_idle_04510675 cChooserEntryFloat zombie_hit_reaction_getup_onback540203 cChooserEntryFloat zombie_hit_reaction_getup_onbelly560765 cChooserEntryFloat zombie_hit_reaction_knee_to_onbelly500890 cChooserEntryFloat zombie_hit_reaction_lawn_dart_fall_onbelly40406 cChooserEntryFloat zombie_hit_reaction_medium_level_2_left100256 cChooserEntryFloat zombie_hit_reaction_medium_level_2_right100256 cChooserEntryFloat zombie_hit_reaction_prop_on_head260937 cChooserEntryFloat zombie_hitreaction_auger_idle520296 cChooserEntryFloat zombie_hitreaction_auger_impact312 cChooserEntryFloat zombie_hitreaction_auger_shoot520312 cChooserEntryFloat zombie_hitreaction_auger_walk520312 cChooserEntryFloat zombie_hitreaction_bowieknife400171 cChooserEntryFloat zombie_hitreaction_catch_slam_2140978 cChooserEntryFloat zombie_hitreaction_catch_slam_3140947 cChooserEntryFloat zombie_hitreaction_catch_slam320759 cChooserEntryFloat zombie_hitreaction_cementsaw_back_left320828 cChooserEntryFloat zombie_hitreaction_cementsaw_back_right320796 cChooserEntryFloat zombie_hitreaction_cementsaw_left270750 cChooserEntryFloat zombie_hitreaction_cementsaw_right260578 cChooserEntryFloat zombie_hitreaction_chainsaw_heavy cChooserEntryFloat zombie_hitreaction_chefknife_impact230171 cChooserEntryFloat zombie_hitreaction_combo_paddlesaw_heavy cChooserEntryFloat zombie_hitreaction_croupierstick530671 cChooserEntryFloat zombie_hitreaction_drillbucket_quick350269 cChooserEntryFloat zombie_hitreaction_driller_gut290515 cChooserEntryFloat zombie_hitreaction_driller_head410359 cChooserEntryFloat zombie_hitreaction_electric_thunder490953 cChooserEntryFloat zombie_hitreaction_electric_wheelchair410359 cChooserEntryFloat zombie_hitreaction_exsanguinator_back290875 cChooserEntryFloat zombie_hitreaction_exsanguinator_front240671 cChooserEntryFloat zombie_hitreaction_fall_onass410921 cChooserEntryFloat zombie_hitreaction_fall_onback_lvl_2_90360656 cChooserEntryFloat zombie_hitreaction_fall_onback_lvl_2_90neg260500 cChooserEntryFloat zombie_hitreaction_fall_onback_lvl_2370237 cChooserEntryFloat zombie_hitreaction_fall_onback_spin_90480164 cChooserEntryFloat zombie_hitreaction_fall_onback_spin_90neg480149 cChooserEntryFloat zombie_hitreaction_fall_onback500171 cChooserEntryFloat zombie_hitreaction_fall_onbelly_l_leg50045 cChooserEntryFloat zombie_hitreaction_fall_onbelly_lvl_2_2400393 cChooserEntryFloat zombie_hitreaction_fall_onbelly_lvl_2390018 cChooserEntryFloat zombie_hitreaction_fall_onbelly_r_leg50045 cChooserEntryFloat zombie_hitreaction_fall_onbelly320828 cChooserEntryFloat zombie_hitreaction_fall_onbelly50781 cChooserEntryFloat zombie_hitreaction_fall_onface_getup360968 cChooserEntryFloat zombie_hitreaction_fall_onknee220625 cChooserEntryFloat zombie_hitreaction_fall_onside100203 cChooserEntryFloat zombie_hitreaction_fire_axe_impact_back120187 cChooserEntryFloat zombie_hitreaction_fire_axe_impact190906 cChooserEntryFloat zombie_hitreaction_flamethrower_stand_2_belly190718 cChooserEntryFloat zombie_hitreaction_flamethrower_walk_2_belly_a190812 cChooserEntryFloat zombie_hitreaction_flamethrower_walk_2_belly_b160671 cChooserEntryFloat zombie_hitreaction_flaminggloves150234 cChooserEntryFloat zombie_hitreaction_fryingpan320718 cChooserEntryFloat zombie_hitreaction_getup_onback_180360768 cChooserEntryFloat zombie_hitreaction_getup_onknee280828 cChooserEntryFloat zombie_hitreaction_handichipper_idle200531 cChooserEntryFloat zombie_hitreaction_handichipper570718 cChooserEntryFloat zombie_hitreaction_headshot_fall_onface360828 cChooserEntryFloat zombie_hitreaction_headshot_fall_onside_r550421 cChooserEntryFloat zombie_hitreaction_headshot340984 cChooserEntryFloat zombie_hitreaction_heavy_fall_onback_spin_l430562 cChooserEntryFloat zombie_hitreaction_heavy_fall_onback_spin_r430546 cChooserEntryFloat zombie_hitreaction_heavy_fall_onback520781 cChooserEntryFloat zombie_hitreaction_knifegloves_gut210406 cChooserEntryFloat zombie_hitreaction_lawnmower480406 cChooserEntryFloat zombie_hitreaction_light_0_1590049 cChooserEntryFloat zombie_hitreaction_light_0_2400046 cChooserEntryFloat zombie_hitreaction_light_0320859 cChooserEntryFloat zombie_hitreaction_light_180_3360734 cChooserEntryFloat zombie_hitreaction_light_180_4350843 cChooserEntryFloat zombie_hitreaction_light_180340687 cChooserEntryFloat zombie_hitreaction_light_180350859 cChooserEntryFloat zombie_hitreaction_light_90_1590049 cChooserEntryFloat zombie_hitreaction_light_90_2380515 cChooserEntryFloat zombie_hitreaction_light_90neg_1590049 cChooserEntryFloat zombie_hitreaction_light_90neg_2400359 cChooserEntryFloat zombie_hitreaction_light380562 cChooserEntryFloat zombie_hitreaction_light390078 cChooserEntryFloat zombie_hitreaction_low70234 cChooserEntryFloat zombie_hitreaction_meat_cleaver290921 cChooserEntryFloat zombie_hitreaction_medium_90570756 cChooserEntryFloat zombie_hitreaction_medium_90neg560381 cChooserEntryFloat zombie_hitreaction_medium_lvl_2_180140975 cChooserEntryFloat zombie_hitreaction_medium_lvl_2140975 cChooserEntryFloat zombie_hitreaction_miningpick_back280906 cChooserEntryFloat zombie_hitreaction_miningpick200375 cChooserEntryFloat zombie_hitreaction_mmaspikedgloves250953 cChooserEntryFloat zombie_hitreaction_onass_180410484 cChooserEntryFloat zombie_hitreaction_onass_90410500 cChooserEntryFloat zombie_hitreaction_onass_90neg410500 cChooserEntryFloat zombie_hitreaction_onass410484 cChooserEntryFloat zombie_hitreaction_onback_90140062 cChooserEntryFloat zombie_hitreaction_onback_90neg140046 cChooserEntryFloat zombie_hitreaction_onback_uppercut_spin_l280542 cChooserEntryFloat zombie_hitreaction_onback_uppercut_spin_r280605 cChooserEntryFloat zombie_hitreaction_onback_uppercut280495 cChooserEntryFloat zombie_hitreaction_onback130718 cChooserEntryFloat zombie_hitreaction_onbelly_90320484 cChooserEntryFloat zombie_hitreaction_onbelly_90neg320468 cChooserEntryFloat zombie_hitreaction_onbelly_uppercut280402 cChooserEntryFloat zombie_hitreaction_onbelly400031 cChooserEntryFloat zombie_hitreaction_onknee_90360687 cChooserEntryFloat zombie_hitreaction_onknee_90neg360687 cChooserEntryFloat zombie_hitreaction_onknee360687 cChooserEntryFloat zombie_hitreaction_painting310777 cChooserEntryFloat zombie_hitreaction_parablower270609 cChooserEntryFloat zombie_hitreaction_powerbomb cChooserEntryFloat zombie_hitreaction_queen_2480109 cChooserEntryFloat zombie_hitreaction_queen_3480109 cChooserEntryFloat zombie_hitreaction_queen230421 cChooserEntryFloat zombie_hitreaction_queen480109 cChooserEntryFloat zombie_hitreaction_shotgun_pitchfork_heavy540093 cChooserEntryFloat zombie_hitreaction_shotgun_pitchfork_light_back590406 cChooserEntryFloat zombie_hitreaction_shotgun_pitchfork_light60687 cChooserEntryFloat zombie_hitreaction_shoulder_90250909 cChooserEntryFloat zombie_hitreaction_shoulder_90neg250909 cChooserEntryFloat zombie_hitreaction_slip_fall_onback440098 cChooserEntryFloat zombie_hitreaction_slip_fall_onbelly440098 cChooserEntryFloat zombie_hitreaction_smashdown_180330443 cChooserEntryFloat zombie_hitreaction_smashdown330474 cChooserEntryFloat zombie_hitreaction_sound2570828 cChooserEntryFloat zombie_hitreaction_sound570828 cChooserEntryFloat zombie_hitreaction_spinning_piledriver290852 cChooserEntryFloat zombie_hitreaction_stun_fall_onback_to45360343 cChooserEntryFloat zombie_hitreaction_stun_fall_onback_to45neg360359 cChooserEntryFloat zombie_hitreaction_stun_fall_onbelly_to45410334 cChooserEntryFloat zombie_hitreaction_stun_fall_onbelly_to45neg410334 cChooserEntryFloat zombie_hitreaction_stun_fall_onbelly300984 cChooserEntryFloat zombie_hitreaction_stun_idle320343 cChooserEntryFloat zombie_hitreaction_stun_roman_candle_in_throat170881 cChooserEntryFloat zombie_hitreaction_superbike_impact_0110187 cChooserEntryFloat zombie_hitreaction_superbike_impact_45150687 cChooserEntryFloat zombie_hitreaction_superbike_impact_45neg150687 cChooserEntryFloat zombie_hitreaction_superbike_impact_med_45120265 cChooserEntryFloat zombie_hitreaction_superbike_impact_med_45neg130875 cChooserEntryFloat zombie_hitreaction_superbike_knockback_left290218 cChooserEntryFloat zombie_hitreaction_superbike_knockback_right290218 cChooserEntryFloat zombie_hitreaction_superbike_left_to_right290218 cChooserEntryFloat zombie_hitreaction_superbike_right_to_left290218 cChooserEntryFloat zombie_hitreaction_superslicer_left210646 cChooserEntryFloat zombie_hitreaction_superslicer_right210646 cChooserEntryFloat zombie_hitreaction_superslicer_straight_fwd210646 cChooserEntryFloat zombie_hitreaction_superslicer_straight_up210630 cChooserEntryFloat zombie_hitreaction_swordfish290406 cChooserEntryFloat zombie_hitreaction_thrust_bale_left_back520453 cChooserEntryFloat zombie_hitreaction_thrust_bale_left_front520484 cChooserEntryFloat zombie_hitreaction_thrust_bale_right_back520484 cChooserEntryFloat zombie_hitreaction_thrust_bale_right_front520484 cChooserEntryFloat zombie_hitreaction_Tomahawk_back100281 cChooserEntryFloat zombie_hitreaction_Tomahawk_front210764 cChooserEntryFloat zombie_hitreaction_wheelchair_dumped_to_ground170343 cChooserEntryFloat zombie_hitreaction_wheelchair_front220248 cChooserEntryFloat zombie_hitreaction_wheelchair_left220263 cChooserEntryFloat zombie_hitreaction_wheelchair_right220248 cChooserEntryFloat zombie_hitreaction_wheelchair_stand_to_fall_in_chair_left580078 cChooserEntryFloat zombie_hitreaction_wheelchair_stand_to_fall_in_chair_right570921 cChooserEntryFloat zombie_hitreaction_wheelchair_stand_to_fall_in_chair460328 cChooserEntryFloat zombie_hitreaction_wrenchlarge_back490140 cChooserEntryFloat zombie_hitreaction_wrenchlarge490140 cChooserEntryFloat zombie_hitreaction_zombietank_080466 cChooserEntryFloat zombie_hitreaction_zombietank_18080435 cChooserEntryFloat zombie_hitreaction_zombietank_9080466 cChooserEntryFloat zombie_hitreaction_zombietank_90neg80466 cChooserEntryFloat zombie_hitreaction_zombiethrower_back190296 cChooserEntryFloat zombie_hitreaction_zombiethrower_front190296 cChooserEntryFloat zombie_idle_11160015 cChooserEntryFloat zombie_idle_12420640 cChooserEntryFloat zombie_idle_13410109 cChooserEntryFloat zombie_idle_14200625 cChooserEntryFloat zombie_idle_15200625 cChooserEntryFloat zombie_idle_16190125 cChooserEntryFloat zombie_idle_17480781 cChooserEntryFloat zombie_idle_1810968 cChooserEntryFloat zombie_idle_2180140 cChooserEntryFloat zombie_idle_2510875 cChooserEntryFloat zombie_idle_3180140 cChooserEntryFloat zombie_idle_4180140 cChooserEntryFloat zombie_idle_7 cChooserEntryFloat zombie_idle_8 cChooserEntryFloat zombie_idle_9 cChooserEntryFloat zombie_idle_cart560656 cChooserEntryFloat zombie_idle_crawl_reach_2250421 cChooserEntryFloat zombie_idle_crawl_reach380937 cChooserEntryFloat zombie_idle_eating_body_onfloor_1100218 cChooserEntryFloat zombie_idle_eating_body_onfloor_2100234 cChooserEntryFloat zombie_idle_eating_body_onfloor_3100234 cChooserEntryFloat zombie_idle_eating_body_onfloor100218 cChooserEntryFloat zombie_idle_eating_onknees100218 cChooserEntryFloat zombie_idle_eating430078 cChooserEntryFloat zombie_idle_fall_onside170359 cChooserEntryFloat zombie_idle_fire290562 cChooserEntryFloat zombie_idle_gun_to_idle340875 cChooserEntryFloat zombie_idle_gun530875 cChooserEntryFloat zombie_idle_handichipper_140609 cChooserEntryFloat zombie_idle_onbelly110671 cChooserEntryFloat zombie_idle_pose280911 cChooserEntryFloat zombie_idle_queen_2440421 cChooserEntryFloat zombie_idle_queen440421 cChooserEntryFloat zombie_idle_reach_2110456 cChooserEntryFloat zombie_idle_reach_3300643 cChooserEntryFloat zombie_idle_reach_4390050 cChooserEntryFloat zombie_idle_reach_5530643 cChooserEntryFloat zombie_idle_reach_6530643 cChooserEntryFloat zombie_idle_reach_7530612 cChooserEntryFloat zombie_idle_reach_8480125 cChooserEntryFloat zombie_idle_reach_up_2240187 cChooserEntryFloat zombie_idle_reach_up_3240187 cChooserEntryFloat zombie_idle_reach_up_4240187 cChooserEntryFloat zombie_idle_reach_up240187 cChooserEntryFloat zombie_idle_reach60800 cChooserEntryFloat zombie_idle_slip_struggle_onback301 cChooserEntryFloat zombie_idle_slip_struggle_onbelly301 cChooserEntryFloat zombie_idle_slots_2370312 cChooserEntryFloat zombie_idle_slots_3370312 cChooserEntryFloat zombie_idle_slots370312 cChooserEntryFloat zombie_idle_struggle_onback340015 cChooserEntryFloat zombie_idle_struggle_onbelly320250 cChooserEntryFloat zombie_idle_struggle340781 cChooserEntryFloat zombie_idle_to_eat_body_onfloor190218 cChooserEntryFloat zombie_idle_to_idle_gun340859 cChooserEntryFloat zombie_idle_turn_180_long360328 cChooserEntryFloat zombie_idle_turn_180_short290953 cChooserEntryFloat zombie_idle_turn_180neg_long330078 cChooserEntryFloat zombie_idle_turn_180neg_short260328 cChooserEntryFloat zombie_idle_wheelchair_escape_loop310828 cChooserEntryFloat zombie_idle_wheelchair_flail_loop400265 cChooserEntryFloat zombie_idle_with_prop_on_head590203 cChooserEntryFloat zombie_idle180125 cChooserEntryFloat zombie_into_wheelbarrow_832434 cChooserEntryFloat zombie_momentum_sway_01210656 cChooserEntryFloat zombie_moosehead_drop593 cChooserEntryFloat zombie_moosehead_hitground343 cChooserEntryFloat zombie_onback_to_onknee360406 cChooserEntryFloat zombie_onbelly_to_onknee360406 cChooserEntryFloat zombie_pickup_onground260718 cChooserEntryFloat zombie_ragdoll_underlayer390046 cChooserEntryFloat zombie_run_2430921 cChooserEntryFloat zombie_run530703 cChooserEntryFloat zombie_screenshot_pose_1570531 cChooserEntryFloat zombie_soldier_dead_overturned_truck440437 cChooserEntryFloat zombie_soldier_dead_turret_overturned_truck430734 cChooserEntryFloat zombie_soldier_dead_turret_truck420906 cChooserEntryFloat zombie_soldier_dead_window_truck460062 cChooserEntryFloat zombie_stagger_to_idle220328 cChooserEntryFloat zombie_struggle_back_onground_bite280828 cChooserEntryFloat zombie_struggle_back_onground_idle280828 cChooserEntryFloat zombie_struggle_back_onground_pushoff280828 cChooserEntryFloat zombie_struggle_crotch_front_bite490796 cChooserEntryFloat zombie_struggle_crotch_front_idle490796 cChooserEntryFloat zombie_struggle_crotch_front_into40906 cChooserEntryFloat zombie_struggle_crotch_front_pushoff490796 cChooserEntryFloat zombie_struggle_crotch_front_to_onground490781 cChooserEntryFloat zombie_struggle_front_onground_bite580718 cChooserEntryFloat zombie_struggle_front_onground_idle580734 cChooserEntryFloat zombie_struggle_front_onground_pushoff580734 cChooserEntryFloat zombie_struggle_standing_back_bite310296 cChooserEntryFloat zombie_struggle_standing_back_idle140437 cChooserEntryFloat zombie_struggle_standing_back_into390000 cChooserEntryFloat zombie_struggle_standing_back_pushoff_bodyslam170921 cChooserEntryFloat zombie_struggle_standing_back_pushoff450875 cChooserEntryFloat zombie_struggle_standing_back_to_onground280828 cChooserEntryFloat zombie_struggle_standing_front_bite100906 cChooserEntryFloat zombie_struggle_standing_front_idle100906 cChooserEntryFloat zombie_struggle_standing_front_into200921 cChooserEntryFloat zombie_struggle_standing_front_pushoff_ddt cChooserEntryFloat zombie_struggle_standing_front_pushoff100906 cChooserEntryFloat zombie_struggle_standing_front_to_onground580718 cChooserEntryFloat zombie_throwup_290718 cChooserEntryFloat zombie_throwup70796 cChooserEntryFloat zombie_trip_back10984 cChooserEntryFloat zombie_trip_front20000 cChooserEntryFloat zombie_trip_left20000 cChooserEntryFloat zombie_trip_right20000 cChooserEntryFloat zombie_turn_180450421 cChooserEntryFloat zombie_walk_cart440187 cChooserEntryFloat zombie_walk_disorient570031 cChooserEntryFloat zombie_walk_fast_160127 cChooserEntryFloat zombie_walk_fast_280361 cChooserEntryFloat zombie_walk_fire_3230912 cChooserEntryFloat zombie_walk_fire230912 cChooserEntryFloat zombie_walk_painting183 cChooserEntryFloat zombie_walk_reach_up530796 cChooserEntryFloat zombie_walk_slow_11200455 cChooserEntryFloat zombie_walk_slow_1310125 cChooserEntryFloat zombie_walk_slow_13590859 cChooserEntryFloat zombie_walk_slow_14590859 cChooserEntryFloat zombie_walk_slow_15590859 cChooserEntryFloat zombie_walk_slow_16380015 cChooserEntryFloat zombie_walk_slow_17170921 cChooserEntryFloat zombie_walk_slow_8200455 cChooserEntryFloat zombie_walk_slow_9200455 cChooserEntryFloat zombie_wander_slow_10 cChooserEntryFloat zombie_wander_slow_11 cChooserEntryFloat zombie_wander_slow_7 cChooserEntryFloat zombie_wander_slow_8 cChooserEntryFloat zombie_wander_slow_9 cChooserEntryFloat zombie_wheelbarrow_1550671 cChooserEntryFloat zombie_wheelbarrow_2440921 cChooserEntryFloat zombie_wheelbarrow_3550828 cChooserEntryFloat zombie_wheelbarrow_480515 cChooserEntryFloat zombie_wheelbarrow_5200000 cChooserEntryFloat zombie_wheelbarrow_6310921 cChooserEntryFloat zombie_wheelbarrow_7430421 cChooserEntryFloat zombie_wheelbarrow_8560484 cChooserEntryFloat zombie_wheelchair_escape560390 cChooserEntryFloat zombie_zombiethrower_idle370421 cChooserEntryFloat zombie_zombiethrower_shoot500546 cChooserEntryFloat zombie_zombiethrower_walk370421 |
male_attack[]
cChooserEntryFloat male_attack_1hand_slice_b490484 cChooserEntryFloat male_attack_curb_stomp cChooserEntryFloat male_attack_dragon_punch370500 cChooserEntryFloat male_attack_dragon_punch510706 cChooserEntryFloat male_attack_hadouken_charge360262 cChooserEntryFloat male_attack_hadouken250565 cChooserEntryFloat male_attack_haymaker_rhand cChooserEntryFloat male_attack_haymaker590781 cChooserEntryFloat male_attack_hurricane_kick510346 cChooserEntryFloat male_attack_kick_superbike_left cChooserEntryFloat male_attack_kick_superbike_right cChooserEntryFloat male_attack_meat_cleaver_b200468 cChooserEntryFloat male_attack_punch_hook_left20914 cChooserEntryFloat male_attack_punch_hook_left540578 cChooserEntryFloat male_attack_punch_hook_right40070 cChooserEntryFloat male_attack_punch_hook_right90250 cChooserEntryFloat male_attack_soccer_kick cChooserEntryFloat male_attack_spear_a_2170218 cChooserEntryFloat male_attack_spear_a_370765 cChooserEntryInt male_attack_1hand_1_to_5_impact320078 cChooserEntryInt male_attack_1hand_1_to_5_miss530609 cChooserEntryInt male_attack_1hand_8_to_3160171 cChooserEntryInt male_attack_1hand_a_impact_8_to_3240477 cChooserEntryInt male_attack_1hand_a_impact_8_to_4_impact100968 cChooserEntryInt male_attack_1hand_a_impact_8_to_4_light540945 cChooserEntryInt male_attack_1hand_a_impact_8_to_4_miss360187 cChooserEntryInt male_attack_1hand_a_impact_miss_8_to_3550977 cChooserEntryInt male_attack_1hand_a_impact_miss_8_to_4_light190711 cChooserEntryInt male_attack_1hand_club_a280390 cChooserEntryInt male_attack_1hand_club_b440468 cChooserEntryInt male_attack_1hand_club_c570937 cChooserEntryInt male_attack_1hand_club_heavy560281 cChooserEntryInt male_attack_1hand_med_item cChooserEntryInt male_attack_1hand_slice_a_1310687 cChooserEntryInt male_attack_1hand_slice_a570937 cChooserEntryInt male_attack_1hand_slice_b_1410248 cChooserEntryInt male_attack_1hand_slice_b_2410310 cChooserEntryInt male_attack_1hand_slice_b_3370560 cChooserEntryInt male_attack_1hand_slice_b110046 cChooserEntryInt male_attack_1hand_slice_c100156 cChooserEntryInt male_attack_1hand_slice_heavy130015 cChooserEntryInt male_attack_1hand_slice_thrust_190546 cChooserEntryInt male_attack_1hand_thrust_1320796 cChooserEntryInt male_attack_1hand_weapon_kick80859 cChooserEntryInt male_attack_2h_thrust_pelvic_impale120341 cChooserEntryInt male_attack_2h_thrust_pelvic_miss550404 cChooserEntryInt male_attack_2hand_club_a80265 cChooserEntryInt male_attack_2hand_club_b280921 cChooserEntryInt male_attack_2hand_club_c20390 cChooserEntryInt male_attack_2hand_club_ground_180859 cChooserEntryInt male_attack_2hand_club_h470890 cChooserEntryInt male_attack_2hand_club_heavy160203 cChooserEntryInt male_attack_2hand_golf_swing160125 cChooserEntryInt male_attack_2hand_golf_swing380703 cChooserEntryInt male_attack_2hand_large_item_light cChooserEntryInt male_attack_2hand_slice_a580421 cChooserEntryInt male_attack_2hand_slice_b320093 cChooserEntryInt male_attack_2hand_slice_c30328 cChooserEntryInt male_attack_2hand_slice_heavy50669 cChooserEntryInt male_attack_2hand_stab_heavy_spear440843 cChooserEntryInt male_attack_2hand_thrust_8_to_4150828 cChooserEntryInt male_attack_2hand_thrust_heavy450855 cChooserEntryInt male_attack_baseball_bat_a530187 cChooserEntryInt male_attack_baseball_bat_b_220468 cChooserEntryInt male_attack_baseball_bat_b390 cChooserEntryInt male_attack_baseball_bat_ball_hit cChooserEntryInt male_attack_baseball_bat_c210015 cChooserEntryInt male_attack_baseball_bat_charge230453 cChooserEntryInt male_attack_baseball_bat_heavy30058 cChooserEntryInt male_attack_baseball_bat_pre_charge250083 cChooserEntryInt male_attack_bass_guitar_1_to_5_c230375 cChooserEntryInt male_attack_bass_guitar_a290015 cChooserEntryInt male_attack_bass_guitar_b460515 cChooserEntryInt male_attack_bass_guitar_c40921 cChooserEntryInt male_attack_bass_guitar_heavy470531 cChooserEntryInt male_attack_battleaxe_heavy470531 cChooserEntryInt male_attack_bowling_charge230593 cChooserEntryInt male_attack_bullskull_a60029 cChooserEntryInt male_attack_bullskull_b50982 cChooserEntryInt male_attack_bullskull_ground450044 cChooserEntryInt male_attack_cardboardbox_a350300 cChooserEntryInt male_attack_cardboardbox_b350331 cChooserEntryInt male_attack_cardboardbox_c330534 cChooserEntryInt male_attack_cash_register_a200271 cChooserEntryInt male_attack_cash_register_b190255 cChooserEntryInt male_attack_chainsaw_ground510500 cChooserEntryInt male_attack_chainsaw_heavy cChooserEntryInt male_attack_chainsaw_heavy_miss cChooserEntryInt male_attack_chainsaw_light_a cChooserEntryInt male_attack_chainsaw_light_b cChooserEntryInt male_attack_chair_ground290841 cChooserEntryInt male_attack_chair_heavy cChooserEntryInt male_attack_chair_impact100906 cChooserEntryInt male_attack_chair_light cChooserEntryInt male_attack_chair_low cChooserEntryInt male_attack_chair_lunge180531 cChooserEntryInt male_attack_chair_miss340093 cChooserEntryInt male_attack_condiment550937 cChooserEntryInt male_attack_croupier_8_to_4_impact510031 cChooserEntryInt male_attack_croupier_8_to_4_miss90328 cChooserEntryInt male_attack_croupier_impact420578 cChooserEntryInt male_attack_croupier_miss460968 cChooserEntryInt male_attack_curb_stomp cChooserEntryInt male_attack_curb_stomp_mechanical cChooserEntryInt male_attack_curb_stomp_smallbox cChooserEntryInt male_attack_curb_stomp_thrust cChooserEntryInt male_attack_defiler_charge_to_idle140906 cChooserEntryInt male_attack_defiler_charge10156 cChooserEntryInt male_attack_defiler_miss540734 cChooserEntryInt male_attack_defiler_transition530250 cChooserEntryInt male_attack_dolly_8_to_4_a150546 cChooserEntryInt male_attack_double_poleweapon_heavy200453 cChooserEntryInt male_attack_dragon_punch cChooserEntryInt male_attack_drop_kick cChooserEntryInt male_attack_drop_kick_impact_low520328 cChooserEntryInt male_attack_drop_kick_impact520328 cChooserEntryInt male_attack_drop_kick190390 cChooserEntryInt male_attack_elbow_drop cChooserEntryInt male_attack_electricrake_idle_to_loop520859 cChooserEntryInt male_attack_electricrake_loop_to_idle420953 cChooserEntryInt male_attack_electricrake_loop_to_idle460015 cChooserEntryInt male_attack_electricrake_loop300125 cChooserEntryInt male_attack_electricrake_loop440656 cChooserEntryInt male_attack_electricrake_miss120109 cChooserEntryInt male_attack_electricrake_turn_left140671 cChooserEntryInt male_attack_electricrake_turn_right140687 cChooserEntryInt male_attack_exsanguinator_a_down120671 cChooserEntryInt male_attack_exsanguinator_a_up120828 cChooserEntryInt male_attack_exsanguinator_miss40484 cChooserEntryInt male_attack_extinguisher_ground460718 cChooserEntryInt male_attack_extinguisher_heavy170421 cChooserEntryInt male_attack_extinguisher_light180250 cChooserEntryInt male_attack_extinguisher_light430421 cChooserEntryInt male_attack_extinguisher_loop50140 cChooserEntryInt male_attack_fieldgoal_kick cChooserEntryInt male_attack_fieldgoal_kick2 cChooserEntryInt male_attack_fieldgoal_kick3 cChooserEntryInt male_attack_fieldgoal_kick4 cChooserEntryInt male_attack_fire_axe_a80109 cChooserEntryInt male_attack_fire_axe_b440046 cChooserEntryInt male_attack_fire_axe_impact_miss370750 cChooserEntryInt male_attack_fire_axe_impact320968 cChooserEntryInt male_attack_flamethrower_light430093 cChooserEntryInt male_attack_fryingpan_impact100718 cChooserEntryInt male_attack_fryingpan_miss530640 cChooserEntryInt male_attack_garbagecan_a450750 cChooserEntryInt male_attack_garbagecan_b260680 cChooserEntryInt male_attack_garbagecan_c250462 cChooserEntryInt male_attack_grab_piledriver270984 cChooserEntryInt male_attack_handbag_a510362 cChooserEntryInt male_attack_heavykick560484 cChooserEntryInt male_attack_hurricane_kick70765 cChooserEntryInt male_attack_jump_kick190390 cChooserEntryInt male_attack_katana_a230250 cChooserEntryInt male_attack_katana_b230562 cChooserEntryInt male_attack_katana_c230640 cChooserEntryInt male_attack_katana_d190437 cChooserEntryInt male_attack_katana_lfoot_long360437 cChooserEntryInt male_attack_katana_lfoot_short200062 cChooserEntryInt male_attack_kick cChooserEntryInt male_attack_kick_mechanical cChooserEntryInt male_attack_kick_smallbox cChooserEntryInt male_attack_kick_thrust cChooserEntryInt male_attack_lance_a_1320968 cChooserEntryInt male_attack_lance_a_2310375 cChooserEntryInt male_attack_large_item_heavy60187 cChooserEntryInt male_attack_large_item_light_a70500 cChooserEntryInt male_attack_large_item_light_b390296 cChooserEntryInt male_attack_laser_sword_2_to_6_b530703 cChooserEntryInt male_attack_laser_sword_3_to_7_b120746 cChooserEntryInt male_attack_laser_sword_7_to_3_a120699 cChooserEntryInt male_attack_laser_sword_8_to_2_c410418 cChooserEntryInt male_attack_laser_sword_thrust530671 cChooserEntryInt male_attack_lawndart_a400125 cChooserEntryInt male_attack_lawnmower_7_to_3_a234 cChooserEntryInt male_attack_leadpipe_a560971 cChooserEntryInt male_attack_Leftcross_b cChooserEntryInt male_attack_Lefthook_b cChooserEntryInt male_attack_Leftuppercut_b cChooserEntryInt male_attack_lgbox_3_to_7_b530562 cChooserEntryInt male_attack_lgbox_4_to_8_b110625 cChooserEntryInt male_attack_lgbox_6_to_4_a440679 cChooserEntryInt male_attack_lgbox_7_to_3_a530562 cChooserEntryInt male_attack_lgbox_7_to_3_aa440710 cChooserEntryInt male_attack_lgbox_8_to_4_a20375 cChooserEntryInt male_attack_lgbox_8_to_6_heavy_a530609 cChooserEntryInt male_attack_meat_cleaver_a320765 cChooserEntryInt male_attack_meat_cleaver_b310359 cChooserEntryInt male_attack_meat_cleaver_heavy520500 cChooserEntryInt male_attack_meat_cleaver_miss110984 cChooserEntryInt male_attack_metalbarrier_3_to_7_b500656 cChooserEntryInt male_attack_metalbarrier_7_to_3_a500859 cChooserEntryInt male_attack_metalbarrier_8_to_6_heavy500984 cChooserEntryInt male_attack_miningpick_2_to_7_b140718 cChooserEntryInt male_attack_miningpick_7_to_3_a140734 cChooserEntryInt male_attack_miningpick_impact240015 cChooserEntryInt male_attack_miningpick_miss410765 cChooserEntryInt male_attack_musket_light cChooserEntryInt male_attack_paddle_push180828 cChooserEntryInt male_attack_paddlesaw_a cChooserEntryInt male_attack_paddlesaw_b cChooserEntryInt male_attack_paddlesaw_charge_to_idle cChooserEntryInt male_attack_paddlesaw_heavy cChooserEntryInt male_attack_paddlesaw_heavy_miss cChooserEntryInt male_attack_parablower_impact30812 cChooserEntryInt male_attack_parablower_miss100187 cChooserEntryInt male_attack_parablower160828 cChooserEntryInt male_attack_phone_kick240265 cChooserEntryInt male_attack_pitchdouble_a cChooserEntryInt male_attack_pitchdouble_b cChooserEntryInt male_attack_pitchdouble_c cChooserEntryInt male_attack_pitchfork_8_to_4170228 cChooserEntryInt male_attack_pitchfork_a_1220380 cChooserEntryInt male_attack_pitchfork_a_2160712 cChooserEntryInt male_attack_pitchfork_a_350978 cChooserEntryInt male_attack_pitchfork_b_170937 cChooserEntryInt male_attack_pitchfork_c cChooserEntryInt male_attack_pitchfork_heavy cChooserEntryInt male_attack_pitchfork_low cChooserEntryInt male_attack_poleweapon_8_to_460343 cChooserEntryInt male_attack_portablelawn_thrust_impact570609 cChooserEntryInt male_attack_portablelawn_thrust_miss570250 cChooserEntryInt male_attack_rifle_light cChooserEntryInt male_attack_rifle_low cChooserEntryInt male_attack_Rightcross_a cChooserEntryInt male_attack_Righthook_a cChooserEntryInt male_attack_Rightuppercut_a cChooserEntryInt male_attack_rocket_fireworks_impact60734 cChooserEntryInt male_attack_rolling_uppercut cChooserEntryInt male_attack_roulette_wheel_a320703 cChooserEntryInt male_attack_samurai_sword_a cChooserEntryInt male_attack_samurai_sword_b cChooserEntryInt male_attack_samurai_sword_c cChooserEntryInt male_attack_samurai_sword_cool_a380336 cChooserEntryInt male_attack_samurai_sword_cool_b380368 cChooserEntryInt male_attack_samurai_sword_cool_c360477 cChooserEntryInt male_attack_samurai_sword_low cChooserEntryInt male_attack_shoot_rifle_low cChooserEntryInt male_attack_shotgunpitchfork_heavy190671 cChooserEntryInt male_attack_shotgunpitchfork_miss_quick400187 cChooserEntryInt male_attack_shotgunpitchfork_miss290578 cChooserEntryInt male_attack_sledgehammer_1_to_5_a_ground_nv270617 cChooserEntryInt male_attack_sledgehammer_1_to_5_ground_choked_up580203 cChooserEntryInt male_attack_sledgehammer_1_to_5_ground_v2400468 cChooserEntryInt male_attack_sledgehammer_2_to_6_b_nv290274 cChooserEntryInt male_attack_sledgehammer_5_to_1_uppercut510109 cChooserEntryInt male_attack_sledgehammer_6_to_2_a_nv290305 cChooserEntryInt male_attack_sledgehammer_7_to_2140020 cChooserEntryInt male_attack_sledgehammer_heavy cChooserEntryInt male_attack_sledgehammer_light cChooserEntryInt male_attack_smallbox_7_to_3190953 cChooserEntryInt male_attack_smallbox_ground130669 cChooserEntryInt male_attack_smallbox_ground540921 cChooserEntryInt male_attack_smallbox_heavy370406 cChooserEntryInt male_attack_smallbox_light_a_1430265 cChooserEntryInt male_attack_smallbox_light_a290156 cChooserEntryInt male_attack_smallbox_light_b_1430203 cChooserEntryInt male_attack_smallbox_light_b540671 cChooserEntryInt male_attack_smallbox_light_c210578 cChooserEntryInt male_attack_smallbox_light_c220593 cChooserEntryInt male_attack_spear_a_1250328 cChooserEntryInt male_attack_spear_a_2531 cChooserEntryInt male_attack_spear_a_3515 cChooserEntryInt male_attack_spear_a_4100015 cChooserEntryInt male_attack_spear_a_520453 cChooserEntryInt male_attack_suitcase_a300468 cChooserEntryInt male_attack_suitcase_b300500 cChooserEntryInt male_attack_suitcase_ground360734 cChooserEntryInt male_attack_superman_punch cChooserEntryInt male_attack_superslicer_headbutt60500 cChooserEntryInt male_attack_sweep cChooserEntryInt male_attack_swing cChooserEntryInt male_attack_swing_1hand cChooserEntryInt male_attack_swing_through cChooserEntryInt male_attack_swing_through_1hand cChooserEntryInt male_attack_sword_1_to_5_c190078 cChooserEntryInt male_attack_sword_6_to_1_a360234 cChooserEntryInt male_attack_sword_6_to_1_b170968 cChooserEntryInt male_attack_sword_heavy cChooserEntryInt male_attack_swordshield_a130125 cChooserEntryInt male_attack_swordshield_a2180531 cChooserEntryInt male_attack_swordshield_b130093 cChooserEntryInt male_attack_swordshield_b2180234 cChooserEntryInt male_attack_swordshield_charge100828 cChooserEntryInt male_attack_swordshield_heavy150546 cChooserEntryInt male_attack_tikitorch_a160304 cChooserEntryInt male_attack_tikitorch_heavy160351 cChooserEntryInt male_attack_wheelchair_7_to_3_a234 |
Chuck's animations[]
To remove animations when Chuck tries on new clothing, in items.txt change all ClothingEmote fields to "-1" meaning no clothing emotes/animations.
Animation when Chuck tries on new clothing[]
35 page clothing animation, starting on line 212269.
| Change clothing animations |
|---|
|
35 page clothing animation
cGenericAnimState 451
{
AbsoluteTranslationMode = "false"
cCategoryChooser cRandomChooser
{
ChooserType = "CLOTHING"
cChooserEntryInt male_cowboy_dance310777
{
Anim = 2098
Value = 8
}
cChooserEntryInt EyeWear310777
{
Anim = 2099
Value = 0
}
cChooserEntryInt Formal310777
{
Anim = 2100
Value = 1
}
cChooserEntryInt Headwear310777
{
Anim = 2101
Value = 2
}
cChooserEntryInt Macho310777
{
Anim = 2102
Value = 3
}
cChooserEntryInt Novelty310777
{
Anim = 2103
Value = 4
}
cChooserEntryInt Shoes310777
{
Anim = 2104
Value = 5
}
cChooserEntryInt WomensClothing310777
{
Anim = 2105
Value = 6
}
cChooserEntryInt Youth310777
{
Anim = 2106
Value = 7
}
cChooserEntryInt male_clothing_emote_arthur110109
{
Anim = 2107
Value = 9
}
cChooserEntryInt male_clothing_emote_ken270020
{
Anim = 2108
Value = 10
}
cChooserEntryInt male_clothing_emote_protoman110211
{
Anim = 2109
Value = 11
}
cChooserEntryInt Headwear01
{
Anim = 2110
Value = 12
}
}
cAnimRef 2098
{
File = -11789077
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent 2433728
{
Time = 3.500000
Duration = 6.000000
}
cAnimEvent -1144126915
{
Time = 0.000000
Duration = 0.100000
}
cAnimEvent -1650990594
{
Time = 5.300000
Duration = 0.200000
}
cAudioAnimEvent -1400614996
{
Time = 0.870000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520974
{
Time = 1.300000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -1400614993
{
Time = 3.030000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520975
{
Time = 3.410000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -1400614994
{
Time = 4.330000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520976
{
Time = 4.880000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -1400614999
{
Time = 5.360000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent -1409548326
{
Time = 1.977826
Duration = 0.000000
Type = "vgasp"
AssetName = "ChuckClothesBillyBoy"
PlaybackPercentage = 0
}
cAnimEvent 428752543
{
Time = 5.200000
Duration = 9.000000
}
cAudioAnimEvent 1674644821
{
Time = 0.270000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmSlow"
PlaybackPercentage = 0
}
cAudioAnimEvent -2023033026
{
Time = 2.170000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyTorsoMed"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674644822
{
Time = 3.790000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmSlow"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674616869
{
Time = 4.010000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyLegMed"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674616870
{
Time = 4.550000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyLegFast"
PlaybackPercentage = 0
}
}
cAnimGroup 2099
{
cRandomChooser random
{
cChooserEntryFloat male_clothing_emote_eyewear_02170730
{
Anim = 2111
Value = 0.500000
}
}
cAnimRef 2111
{
File = -1927468071
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1144126915
{
Time = 0.000000
Duration = 0.100000
}
cAnimEvent -1650990594
{
Time = 5.700000
Duration = 0.100000
}
cAudioAnimEvent -1400614996
{
Time = 0.733333
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520974
{
Time = 1.157918
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520975
{
Time = 4.460000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674644821
{
Time = 1.713336
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmSlow"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674644822
{
Time = 2.126587
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmSlow"
PlaybackPercentage = 0
}
cAudioAnimEvent 776006620
{
Time = 3.092501
Duration = 0.000000
Type = "vgasp"
AssetName = "ChuckClothes"
PlaybackPercentage = 0
}
cAnimEvent 428752543
{
Time = 4.750000
Duration = 9.000000
}
cAudioAnimEvent 237759134
{
Time = 1.154591
Duration = 0.000000
Type = "vgasp"
AssetName = "ChuckHmm"
PlaybackPercentage = 0
}
}
}
cAnimGroup 2100
{
cRandomChooser random
{
cChooserEntryFloat male_clothing_emote_formal_01280011
{
Anim = 2112
Value = 0.000000
}
}
cAnimRef 2112
{
File = 1054653977
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1650990594
{
Time = 8.100000
Duration = 0.200000
}
cAnimEvent -1144126915
{
Time = 0.000000
Duration = 0.100000
}
cAudioAnimEvent -1400614996
{
Time = 0.486834
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520974
{
Time = 1.313921
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -1400614993
{
Time = 1.839004
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674644822
{
Time = 2.826173
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmMed"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674644823
{
Time = 4.476088
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmSlow"
PlaybackPercentage = 0
}
cAudioAnimEvent -1400614994
{
Time = 4.889592
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674644821
{
Time = 0.574917
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmSlow"
PlaybackPercentage = 0
}
cAudioAnimEvent 776006620
{
Time = 1.224253
Duration = 0.000000
Type = "vgasp"
AssetName = "ChuckClothes"
PlaybackPercentage = 0
}
cAnimEvent 428752543
{
Time = 4.800000
Duration = 9.000000
}
}
}
cAnimGroup 2101
{
cRandomChooser random
{
cChooserEntryFloat male_clothing_emote_headwear_02420886
{
Anim = 2113
Value = 0.500000
}
}
cAnimRef 2113
{
File = 1227742344
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1144126915
{
Time = 0.000000
Duration = 0.100000
}
cAudioAnimEvent 464679058
{
Time = 0.370334
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmMed"
PlaybackPercentage = 0
}
cAudioAnimEvent 688742327
{
Time = 3.247007
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmFast"
PlaybackPercentage = 0
}
cAudioAnimEvent 2096201166
{
Time = 3.417824
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmSlow"
PlaybackPercentage = 0
}
cAnimEvent -1650990594
{
Time = 4.500000
Duration = 0.200000
}
cAnimEvent 428752543
{
Time = 4.500000
Duration = 9.000000
}
cAudioAnimEvent 237759134
{
Time = 1.708168
Duration = 0.000000
Type = "vgasp"
AssetName = "ChuckHmm"
PlaybackPercentage = 0
}
}
}
cAnimGroup 2110
{
cRandomChooser random
{
cChooserEntryFloat male_clothing_emote_headwear_02420886
{
Anim = 2114
Value = 0.500000
}
}
cAnimRef 2114
{
File = 1228852235
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1144126915
{
Time = 0.000000
Duration = 0.100000
}
cAudioAnimEvent 464679058
{
Time = 0.370334
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmMed"
PlaybackPercentage = 0
}
cAudioAnimEvent 688742327
{
Time = 2.989420
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmFast"
PlaybackPercentage = 0
}
cAudioAnimEvent 2096201166
{
Time = 3.183654
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmSlow"
PlaybackPercentage = 0
}
cAnimEvent -1650990594
{
Time = 4.500000
Duration = 0.200000
}
cAnimEvent 428752543
{
Time = 4.500000
Duration = 9.000000
}
cAudioAnimEvent 237759134
{
Time = 1.260000
Duration = 0.000000
Type = "vgasp"
AssetName = "ChuckHmm"
PlaybackPercentage = 0
}
cAudioAnimEvent 506104052
{
Time = 0.650000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 419474836
{
Time = 1.146081
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 691117278
{
Time = 2.985831
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 649542810
{
Time = 4.250000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 455189085
{
Time = 4.573166
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkLeft"
PlaybackPercentage = 0
}
}
}
cAnimGroup 2102
{
cRandomChooser random
{
cChooserEntryFloat male_clothing_emote_macho_01440745
{
Anim = 2115
Value = 0.000000
}
}
cAnimRef 2115
{
File = 562539722
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1144126915
{
Time = 0.000000
Duration = 0.200000
}
cAnimEvent -1650990594
{
Time = 7.100000
Duration = 0.200000
}
cAudioAnimEvent 459933334
{
Time = 0.610834
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 427847254
{
Time = 1.183001
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 663759321
{
Time = 3.628168
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 501361527
{
Time = 4.000000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 653162557
{
Time = 0.610834
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmSlow"
PlaybackPercentage = 0
}
cAudioAnimEvent 463418231
{
Time = 3.284500
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmSlow"
PlaybackPercentage = 0
}
cAudioAnimEvent 776006620
{
Time = 2.783329
Duration = 0.000000
Type = "vgasp"
AssetName = "ChuckClothes"
PlaybackPercentage = 0
}
cAnimEvent 428752543
{
Time = 4.200000
Duration = 9.000000
}
}
}
cAnimGroup 2103
{
cRandomChooser random
{
cChooserEntryFloat male_clothing_emote_novelty_01460823
{
Anim = 2116
Value = 0.000000
}
}
cAnimRef 2116
{
File = 1894777297
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1144126915
{
Time = 0.000000
Duration = 0.100000
}
cAnimEvent -1650990594
{
Time = 6.400000
Duration = 0.200000
}
cAudioAnimEvent -1400614996
{
Time = 0.821667
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent -1400614996
{
Time = 2.935424
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520974
{
Time = 1.292502
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520975
{
Time = 2.468340
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -1400614993
{
Time = 4.260000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520976
{
Time = 4.762083
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 1217318369
{
Time = 1.180000
Duration = 0.000000
Type = "vgasp"
AssetName = "ChuckLaugh"
PlaybackPercentage = 0
}
cAnimEvent 428752543
{
Time = 4.750000
Duration = 9.000000
}
cAudioAnimEvent 1674644821
{
Time = 2.797498
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmSlow"
PlaybackPercentage = 0
}
cAudioAnimEvent -2023033026
{
Time = 3.090000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyTorsoSlow"
PlaybackPercentage = 0
}
}
}
cAnimGroup 2104
{
cRandomChooser random
{
cChooserEntryFloat male_clothing_emote_shoes_01480620
{
Anim = 2117
Value = 0.000000
}
}
cAnimRef 2117
{
File = -508263104
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1144126915
{
Time = 0.000000
Duration = 0.100000
}
cAnimEvent -1650990594
{
Time = 4.500000
Duration = 0.200000
}
cAudioAnimEvent 507228728
{
Time = 0.930500
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 420728343
{
Time = 1.396833
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 691111997
{
Time = 1.757831
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 651908881
{
Time = 2.345662
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 2102196005
{
Time = 3.002994
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 653161296
{
Time = 4.566333
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 237759134
{
Time = 3.065835
Duration = 0.000000
Type = "vgasp"
AssetName = "ChuckHmm"
PlaybackPercentage = 0
}
cAnimEvent 428752543
{
Time = 4.500000
Duration = 9.000000
}
}
}
cAnimGroup 2105
{
cRandomChooser random
{
cChooserEntryFloat male_clothing_emote_womens_clothing_02500339
{
Anim = 2118
Value = 0.500000
}
}
cAnimRef 2118
{
File = 579726831
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1144126915
{
Time = 0.000000
Duration = 0.200000
}
cAnimEvent -1650990594
{
Time = 10.000000
Duration = 0.200000
}
cAudioAnimEvent -1400614996
{
Time = 0.396000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent -1400614993
{
Time = 0.970000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520974
{
Time = 1.518000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520975
{
Time = 2.958000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -1400614994
{
Time = 3.352000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent -1227504155
{
Time = 0.520000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspPivot"
PlaybackPercentage = 0
}
cAudioAnimEvent -113138799
{
Time = 1.534000
Duration = 0.000000
Type = "vgasp"
AssetName = "ChuckClothesWomens"
PlaybackPercentage = 0
}
cAnimEvent 428752543
{
Time = 3.450000
Duration = 9.000000
}
cAudioAnimEvent -2023033026
{
Time = 0.610000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyTorsoMed"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674644821
{
Time = 1.250000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmSlow"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674644822
{
Time = 2.830000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmSlow"
PlaybackPercentage = 0
}
}
}
cAnimGroup 2106
{
cRandomChooser random
{
cChooserEntryFloat male_clothing_emote_youth_02520839
{
Anim = 2119
Value = 0.500000
}
}
cAnimRef 2119
{
File = -780588034
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1144126915
{
Time = 0.000000
Duration = 0.100000
}
cAnimEvent -1650990594
{
Time = 4.900000
Duration = 0.200000
}
cAudioAnimEvent 2095095660
{
Time = 0.670000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 500120918
{
Time = 1.000000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 418362206
{
Time = 1.420000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 685267293
{
Time = 1.750000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 646051443
{
Time = 2.000000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 427847192
{
Time = 2.330000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 654289361
{
Time = 2.636500
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 2108063338
{
Time = 3.000000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 458673883
{
Time = 3.330000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 1035703843
{
Time = 0.387000
Duration = 0.000000
Type = "vgasp"
AssetName = "ChuckClothesYouth"
PlaybackPercentage = 0
}
cAnimEvent 428752543
{
Time = 3.200000
Duration = 9.000000
}
}
}
cAnimRef 2107
{
File = 2129311636
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAudioAnimEvent 730299220
{
Time = 1.798825
Duration = 0.000000
Type = "vgasp"
AssetName = "ChuckClothesArthur"
PlaybackPercentage = 0
}
cAnimEvent 428752543
{
Time = 2.300000
Duration = 9.000000
}
cAudioAnimEvent -1010520974
{
Time = 0.310000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -1400614996
{
Time = 0.940000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunHardLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520975
{
Time = 1.670000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunHardRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520976
{
Time = 2.050000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -1400614993
{
Time = 2.270000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674616869
{
Time = 0.510000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyLegMed"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674616870
{
Time = 1.210000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyLegFast"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674644822
{
Time = 1.194331
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmFast"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674644821
{
Time = 0.800000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmSlow"
PlaybackPercentage = 0
}
}
cAnimRef 2108
{
File = 1251291164
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAudioAnimEvent 127172540
{
Time = 2.038330
Duration = 0.000000
Type = "vgasp"
AssetName = "ChuckClothesKen"
PlaybackPercentage = 0
}
cAnimEvent 428752543
{
Time = 5.200000
Duration = 9.000000
}
cAudioAnimEvent -1010520974
{
Time = 0.640000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520975
{
Time = 5.080000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674616869
{
Time = 0.429000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyLegSlow"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674644821
{
Time = 0.483667
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmFast"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674644823
{
Time = 4.600000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmSlow"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674644822
{
Time = 3.026494
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmMed"
PlaybackPercentage = 0
}
}
cAnimRef 2109
{
File = -245199704
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAudioAnimEvent 1044435722
{
Time = 0.888750
Duration = 0.000000
Type = "vgasp"
AssetName = "ChuckClothesProto"
PlaybackPercentage = 0
}
cAnimEvent 428752543
{
Time = 3.100000
Duration = 9.000000
}
cAudioAnimEvent -1010520974
{
Time = 0.490000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520975
{
Time = 0.940000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunHardRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520976
{
Time = 2.850000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -1400614996
{
Time = 3.210000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674616869
{
Time = 0.750000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyLegFast"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674644821
{
Time = 0.780000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmMed"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674644822
{
Time = 2.330000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmSlow"
PlaybackPercentage = 0
}
}
cGenericTransitioner ToCasualIdle
{
Dest = 62
DestEvent = -1
UseDestEvent = "false"
}
cGenericBlender ToCasualIdle
{
Dest = 62
XZToUse = 2
YToUse = 2
Duration = 0.000000
StopSrcAnim = "false"
}
cGenericBlender ToIdleToWalk
{
Dest = 302
XZToUse = 2
YToUse = 2
Duration = 0.070000
StopSrcAnim = "false"
}
cEventBasedTransitioner ToIdleToWalk
{
Dest = 302
Event = 428752543
DestinationEvent = -1
SyncWithDest = "false"
InvertTime = "false"
}
cGenericBlender ToPivot
{
Dest = 467
XZToUse = 2
YToUse = 2
Duration = 0.050000
StopSrcAnim = "false"
}
cEventBasedTransitioner ToPivot
{
Dest = 467
Event = 428752543
DestinationEvent = -1
SyncWithDest = "false"
InvertTime = "false"
}
cEventBasedTransitioner ToIdleToRun
{
Dest = 298
Event = 428752543
DestinationEvent = -1
SyncWithDest = "false"
InvertTime = "false"
}
cGenericBlender ToIdleToRun
{
Dest = 298
XZToUse = 2
YToUse = 2
Duration = 0.070000
StopSrcAnim = "false"
}
}
|

If the coding between the { } is removed, chuck has his hands out and floats when the character animation is triggered. The player cannot regain control of Chuck.
Example:
cAnimRef 2098
{
File = -11789077
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent 2433728
{
}
}
Saving game animations[]
sgraph.txt also controls Chuck's animation when saving game, including Chuck urinating into urinal. This is the 25 page section:
| Saving game animations |
|---|
cGenericAnimState 658
{
AbsoluteTranslationMode = "false"
cCategoryChooser cRandomChooser
{
ChooserType = "TRIGGERVOLUMETYPE"
cChooserEntryInt male_chuck_safehouse_save420875
{
Anim = 3053
Value = 2
}
cChooserEntryInt male_chuck_urinal_save420875
{
Anim = 3054
Value = 1
}
cChooserEntryInt AnimGroup4637420437
{
Anim = 3055
Value = 0
}
}
cEventBasedTransitioner ToInjuredIdle
{
Dest = 309
Event = -429910867
DestinationEvent = -1
SyncWithDest = "false"
InvertTime = "false"
}
cEventBasedTransitioner ToCasualIdle
{
Dest = 62
Event = -429910867
DestinationEvent = -1
SyncWithDest = "false"
InvertTime = "false"
}
cAnimRef 3053
{
File = 20819828
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cSaveLoadEvent 3052961
{
Time = 8.790000
Duration = 0.000000
}
cAnimEvent -429910867
{
Time = 14.000000
Duration = 8.000000
}
cAudioAnimEvent -1010520974
{
Time = 1.490000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -1400614996
{
Time = 2.230000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520975
{
Time = 2.830000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -2023033026
{
Time = 4.025827
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyTorsoMed"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674616871
{
Time = 5.360000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyLegFast"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674616864
{
Time = 6.110000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyLegFast"
PlaybackPercentage = 0
}
cAudioAnimEvent -1400614993
{
Time = 5.810000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520976
{
Time = 10.280000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -1400614994
{
Time = 11.030000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520969
{
Time = 13.110000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -1400614999
{
Time = 14.010000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520970
{
Time = 14.600000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 1292353862
{
Time = 3.870000
Duration = 0.000000
Type = "motion"
AssetName = "BodyFall"
PlaybackPercentage = 0
}
cAudioAnimEvent -852197499
{
Time = 7.149174
Duration = 0.000000
Type = "vgasp"
AssetName = "IdleInjured"
PlaybackPercentage = 0
}
cAudioAnimEvent -852197498
{
Time = 3.650413
Duration = 0.000000
Type = "vgasp"
AssetName = "HoistEnd"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674616869
{
Time = 1.040000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyLegFast"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674616870
{
Time = 1.640000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyLegSlow"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674616865
{
Time = 9.680000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyLegFast"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674616866
{
Time = 10.280000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyLegSlow"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674644821
{
Time = 11.030000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmSlow"
PlaybackPercentage = 0
}
cAudioAnimEvent -2023033027
{
Time = 11.545420
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyTorsoMed"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674616867
{
Time = 13.560000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyLegMed"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674616876
{
Time = 14.150000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyLegMed"
PlaybackPercentage = 0
}
}
cAnimRef 3054
{
File = -310702004
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cSaveLoadEvent 3052961
{
Time = 3.150000
Duration = 0.000000
}
cAnimEvent -429910867
{
Time = 5.000000
Duration = 8.000000
}
cAudioAnimEvent -1400614996
{
Time = 0.430000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520975
{
Time = 4.740000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -1400614993
{
Time = 5.330000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674644821
{
Time = 0.160000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmSlow"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674644822
{
Time = 3.469000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmSlow"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674616869
{
Time = 0.650000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyLegSlow"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674616870
{
Time = 4.520000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyLegSlow"
PlaybackPercentage = 0
}
cAudioAnimEvent -852197498
{
Time = 1.450000
Duration = 0.000000
Type = "vgasp"
AssetName = "IdleInjured"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520974
{
Time = 1.130000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkRight"
PlaybackPercentage = 0
}
cTogglePropEvent 1383501705
{
Time = 0.000000
Duration = 5.400000
IgnoreExit = "false"
IgnoreInventory = "true"
}
cHashAudioAnimEvent -1741119595
{
Time = 0.650000
Duration = 0.000000
Type = "motion"
AssetName = "fx_bathroom.big/SaveZipper.sfx"
PlaybackPercentage = 0
}
cHashAudioAnimEvent -1741119594
{
Time = 3.980000
Duration = 0.000000
Type = "motion"
AssetName = "fx_bathroom.big/SaveZipper.sfx"
PlaybackPercentage = 0
}
cHashAudioAnimEvent -1471745899
{
Time = 4.900000
Duration = 0.000000
Type = "motion"
AssetName = "fx_bathroom.big/UrinalFlush.sfx"
PlaybackPercentage = 0
}
}
cAnimGroup 3055
{
cCategoryChooser random
{
ChooserType = "IDLEHOLDTYPE"
cChooserEntryInt male_lgbox_idle
{
Anim = 3056
Value = 4
}
cChooserEntryInt male_idle_cart
{
Anim = 3057
Value = 5
}
cChooserEntryInt male_idle_hamsterball
{
Anim = 3058
Value = 7
}
cChooserEntryInt male_idle_chair
{
Anim = 3059
Value = 8
}
cChooserEntryInt male_idle_combo_paddlesaw
{
Anim = 3060
Value = 10
}
cChooserEntryInt AnimGroup5003
{
Anim = 3061
Value = 1
}
cChooserEntryInt AnimGroup3037210937
{
Anim = 3062
Value = -1
}
cChooserEntryInt male_idle_samurai_sword70500
{
Anim = 3063
Value = 15
}
cChooserEntryInt male_idle_pistol80703
{
Anim = 3064
Value = 16
}
cChooserEntryInt AnimGroup160670906
{
Anim = 3065
Value = 13
}
cChooserEntryInt AnimGroup6268530968
{
Anim = 3066
Value = 9
}
cChooserEntryInt AnimGroup3237280437
{
Anim = 3067
Value = 0
}
cChooserEntryInt AnimGroup5803560203
{
Anim = 3068
Value = 14
}
}
cAnimRef 3056
{
File = -1650958573
DataRate = 1.000000
Looping = "false"
Mirror = "false"
PhysicalStartSpeed = "PhysicalStartSpeed"
PhysicalEndSpeed = "PhysicalEndSpeed"
cAnimEvent -1536808069
{
Time = 0.000000
Duration = 8.000000
}
cAnimEvent -429910867
{
Time = 0.100000
Duration = 8.000000
}
cSaveLoadEvent -88677369
{
Time = 0.050000
Duration = 0.000000
}
}
cAnimRef 3057
{
File = 1943544457
DataRate = 1.000000
Looping = "false"
Mirror = "false"
PhysicalStartSpeed = "PhysicalStartSpeed"
PhysicalEndSpeed = "PhysicalEndSpeed"
cAnimEvent -429910867
{
Time = 0.100000
Duration = 8.000000
}
cSaveLoadEvent -88677369
{
Time = 0.050000
Duration = 0.000000
}
}
cAnimRef 3058
{
File = 145180058
DataRate = 1.000000
Looping = "false"
Mirror = "false"
PhysicalStartSpeed = "PhysicalStartSpeed"
PhysicalEndSpeed = "PhysicalEndSpeed"
cAnimEvent -429910867
{
Time = 0.100000
Duration = 8.000000
}
cSaveLoadEvent -88677369
{
Time = 0.050000
Duration = 0.000000
}
}
cAnimRef 3059
{
File = 1542142876
DataRate = 1.000000
Looping = "false"
Mirror = "false"
PhysicalStartSpeed = "PhysicalStartSpeed"
PhysicalEndSpeed = "PhysicalEndSpeed"
cAnimEvent -429910867
{
Time = 0.100000
Duration = 8.000000
}
cSaveLoadEvent -88677369
{
Time = 0.050000
Duration = 0.000000
}
}
cAnimRef 3060
{
File = -327895517
DataRate = 1.000000
Looping = "false"
Mirror = "false"
PhysicalStartSpeed = "PhysicalStartSpeed"
PhysicalEndSpeed = "PhysicalEndSpeed"
cAnimEvent -429910867
{
Time = 0.100000
Duration = 8.000000
}
cSaveLoadEvent -88677369
{
Time = 0.050000
Duration = 0.000000
}
}
cAnimGroup 3061
{
cCategoryChooser random
{
ChooserType = "FIREARMTYPE"
cChooserEntryInt male_idle_rifle
{
Anim = 3069
Value = 0
}
cChooserEntryInt male_idle_rifle1
{
Anim = 3069
Value = 1
}
cChooserEntryInt male_idle_rifle2
{
Anim = 3069
Value = 2
}
cChooserEntryInt male_idle_shotgun
{
Anim = 3070
Value = 3
}
cChooserEntryInt male_idle_sniper
{
Anim = 3069
Value = 4
}
}
cAnimRef 3069
{
File = -1233658855
DataRate = 1.000000
Looping = "false"
Mirror = "false"
PhysicalStartSpeed = "PhysicalStartSpeed"
PhysicalEndSpeed = "PhysicalEndSpeed"
cAnimEvent -429910867
{
Time = 0.100000
Duration = 8.000000
}
cAnimEvent -1536808069
{
Time = 0.000000
Duration = 8.000000
}
cSaveLoadEvent -88677369
{
Time = 0.050000
Duration = 0.000000
}
}
cAnimRef 3070
{
File = 771448273
DataRate = 1.000000
Looping = "false"
Mirror = "false"
PhysicalStartSpeed = "PhysicalStartSpeed"
PhysicalEndSpeed = "PhysicalEndSpeed"
cSaveLoadEvent -88677369
{
Time = 0.050000
Duration = 0.000000
}
cAnimEvent -1536808069
{
Time = 0.000000
Duration = 8.000000
}
cAnimEvent -429910867
{
Time = 0.100000
Duration = 8.000000
}
}
}
cAnimGroup 3062
{
cRandomChooser random
{
cChooserEntryFloat male_door_open_push_front_lhand430187
{
Anim = 3071
Value = 0.000000
}
}
cAnimRef 3071
{
File = 1592924324
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -429910867
{
Time = 0.770000
Duration = 8.000000
}
cSaveLoadEvent -88677369
{
Time = 0.230000
Duration = 0.000000
}
cAudioAnimEvent 500111186
{
Time = 0.040000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmMed"
PlaybackPercentage = 0
}
cAudioAnimEvent 423105815
{
Time = 0.500000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmFast"
PlaybackPercentage = 0
}
}
}
cAnimRef 3063
{
File = -159364033
DataRate = 1.000000
Looping = "false"
Mirror = "false"
PhysicalStartSpeed = "PhysicalStartSpeed"
PhysicalEndSpeed = "PhysicalEndSpeed"
cAnimEvent -429910867
{
Time = 0.100000
Duration = 8.000000
}
cSaveLoadEvent -88677369
{
Time = 0.050000
Duration = 0.000000
}
}
cAnimRef 3064
{
File = 381452656
DataRate = 1.000000
Looping = "false"
Mirror = "false"
PhysicalStartSpeed = "PhysicalStartSpeed"
PhysicalEndSpeed = "PhysicalEndSpeed"
cAnimEvent -429910867
{
Time = 0.100000
Duration = 8.000000
}
cSaveLoadEvent -88677369
{
Time = 0.050000
Duration = 0.000000
}
}
cAnimGroup 3065
{
cCategoryChooser category
{
ChooserType = "WEAPONON"
cChooserEntryInt male_idle_smallbox150500
{
Anim = 3072
Value = 0
}
cChooserEntryInt male_idle_portablelawn150500
{
Anim = 3073
Value = 1
}
}
cAnimRef 3072
{
File = 1575695495
DataRate = 1.000000
Looping = "false"
Mirror = "false"
PhysicalStartSpeed = "PhysicalStartSpeed"
PhysicalEndSpeed = "PhysicalEndSpeed"
cAnimEvent -429910867
{
Time = 0.100000
Duration = 8.000000
}
cAnimEvent -1536808069
{
Time = 0.000000
Duration = 8.000000
}
cSaveLoadEvent -88677369
{
Time = 0.050000
Duration = 0.000000
}
}
cAnimRef 3073
{
File = 2051093354
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1536808069
{
Time = 0.000000
Duration = 8.000000
}
cAnimEvent -429910867
{
Time = 0.100000
Duration = 8.000000
}
cSaveLoadEvent -88677369
{
Time = 0.050000
Duration = 0.000000
}
}
}
cAnimGroup 3066
{
cCategoryChooser category
{
ChooserType = "WEAPONON"
cChooserEntryInt male_idle_mech460765
{
Anim = 3074
Value = 0
}
cChooserEntryInt male_idle_chainsaw190578
{
Anim = 3075
Value = 1
}
}
cAnimRef 3074
{
File = -720360466
DataRate = 1.000000
Looping = "false"
Mirror = "false"
PhysicalStartSpeed = "PhysicalStartSpeed"
PhysicalEndSpeed = "PhysicalEndSpeed"
cAnimEvent -429910867
{
Time = 0.100000
Duration = 8.000000
}
cAnimEvent -1536808069
{
Time = 0.000000
Duration = 8.000000
}
cSaveLoadEvent -88677369
{
Time = 0.050000
Duration = 0.000000
}
}
cAnimRef 3075
{
File = -1706736379
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -429910867
{
Time = 0.100000
Duration = 8.000000
}
cAnimEvent -1536808069
{
Time = 0.000000
Duration = 8.000000
}
cSaveLoadEvent -88677369
{
Time = 0.050000
Duration = 0.000000
}
}
}
cAnimGroup 3067
{
cRandomChooser random
{
cChooserEntryFloat male_door_open_push_front_rhand380843
{
Anim = 3076
Value = 0.000000
}
}
cAnimRef 3076
{
File = -1954444870
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -429910867
{
Time = 0.730000
Duration = 8.000000
}
cSaveLoadEvent -88677369
{
Time = 0.440000
Duration = 0.000000
}
cAudioAnimEvent 462301977
{
Time = 0.470000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 686373524
{
Time = 0.820000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 2097460769
{
Time = 0.360000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmFast"
PlaybackPercentage = 0
}
cHashAudioAnimEvent 1718458114
{
Time = 0.280000
Duration = 0.000000
Type = "motion"
AssetName = "fx_door.big/DoorRoundHandleOpen.sfx"
PlaybackPercentage = 0
}
}
}
cAnimGroup 3068
{
cCategoryChooser random
{
ChooserType = "WEAPONON"
cChooserEntryInt male_idle_thrust290281
{
Anim = 3077
Value = 0
}
cChooserEntryInt male_paddlesaw_idle_loop90671
{
Anim = 3078
Value = 1
}
}
cAnimRef 3077
{
File = 533618769
DataRate = 1.000000
Looping = "false"
Mirror = "false"
PhysicalStartSpeed = "PhysicalStartSpeed"
PhysicalEndSpeed = "PhysicalEndSpeed"
cAnimEvent -1536808069
{
Time = 0.000000
Duration = 8.000000
}
cAnimEvent -429910867
{
Time = 0.100000
Duration = 8.000000
}
cSaveLoadEvent -88677369
{
Time = 0.050000
Duration = 0.000000
}
}
cAnimRef 3078
{
File = 947138483
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1536808069
{
Time = 0.000000
Duration = 8.000000
}
cAnimEvent -429910867
{
Time = 0.100000
Duration = 8.000000
}
cSaveLoadEvent -88677369
{
Time = 0.050000
Duration = 0.000000
}
}
}
}
}
|
Chuck's idle animations[]
- Further information: Stop idle animations chuck in injured state sgraph, proboards.
Original:
|
Replace it with:
|
Unarmed attacks damage[]
Zombie's damage[]
Open sgraph.txt and search for cHealthEvent to modify the zombie's damage.[2] Look for negative values. "Last night, I left a zombie chewing on my head for a good 20 minutes while I was away from the game. Health was still full". The negative numbers seem to be damage.[1]
sgraph.txt is more focused on effects, animation events, flags, etc. Zombie attacks are an effect, because a zombie chewing on chuck is not a weapon and the damage is linked to the event of being grabbed. Experiment with it. Try -1, 0, or even a normal positive number like 100.
Maybe you can get zombies to restore your health, but I haven't tried that yet.[2]
cHealthEvent[]
| Line | Number of cHealthEvent lines | Function |
|---|---|---|
| cNPCAIAnimationState 7 | 6 | For psychopaths, including Antoine. |
| cGenericAnimState 488 | 2 | Chef "battle_chef_chuck_struggle" |
| cGenericAnimState 482 | 2 | "male_hitreaction shot from_prone_belly" |
| cGenericAnimState 486 | 1 | Boykin "male_hitreaction_face down prone_to_throw_from_boykin" |
| cGenericAnimState 514 | 1 | WWJWD? psychopath "male_hit_reaction clubbed_while noose590963' |
| cGenericAnimState 484 | 1 | "player_attack_charge grabbed_against_wall" "fx_tk_ot_battle.big/BodyHitSmash.sfx" |
| cNPCAIAnimationState 353 | 1 | Tyrone King ToKCLocomotion "kc_attack_charge grab_against_wall_beatdown" |
| cGenericAnimState 504 | 1 | "player_attack_charge grabbed against wall_beatdown_success" |
| cGenericAnimState 532 | 1 | player_minigame_winch_grab_to_grapple_front |
| cGenericAnimState 531 | 1 | "player_minigame winch grapple_success" |
Huge radius damage for Chucks skills/moves[]
For the ultimate cheat attack: In sgraph.txt, find the line AttackName = "elbowdrop" and go down to AttackRadius= and change it to around 1000.
Edit maxheightdiff for an attack that kills most of the zombies in any two story room you're in.
So every time you use the elbowdrop, all the zombies around you drop dead. Note that this might effect survivor escorts.[3]
Zombie death animations[]
| cGenericAnimState 887 |
|---|
cGenericAnimState 887
{
AbsoluteTranslationMode = "false"
cRandomChooser cRandomChooser
{
Dice = "Dice"
cChooserEntryFloat zombie_dead_onback410671
{
Anim = 5500
Value = 0.000000
}
}
cAnimRef 5500
{
File = 1567632852
DataRate = 1.000000
Looping = "false"
Mirror = "false"
}
}
|
| cAnimGroup 4944 |
|---|
cAnimGroup 4944
{
cRandomChooser random
{
Dice = "Dice"
cChooserEntryFloat zombie_dead_onbelly40609
{
Anim = 5337
Value = 0.000000
}
cChooserEntryFloat zombie_dead_onground100796
{
Anim = 5338
Value = 0.000000
}
cChooserEntryFloat zombie_dead_headshot_fall_onface220296
{
Anim = 5339
Value = 0.000000
}
cChooserEntryFloat zombie_dead_headshot_fall_onside_r300031
{
Anim = 5340
Value = 0.000000
}
}
cAnimRef 5337
{
File = -1425160767
DataRate = 1.000000
Looping = "true"
Mirror = "false"
PhysicalStartSpeed = "PhysicalStartSpeed"
PhysicalEndSpeed = "PhysicalEndSpeed"
cAnimEvent 984278783
{
Time = 0.000000
Duration = 8.000000
}
}
cAnimRef 5338
{
File = -1096575302
DataRate = 1.000000
Looping = "false"
Mirror = "false"
PhysicalStartSpeed = "PhysicalStartSpeed"
PhysicalEndSpeed = "PhysicalEndSpeed"
cAnimEvent -1141532598
{
Time = 0.000000
Duration = 8.000000
}
}
cAnimRef 5339
{
File = -835294159
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1141388864
{
Time = 0.000000
Duration = 8.000000
}
}
cAnimRef 5340
{
File = 1814446758
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1140982630
{
Time = 0.000000
Duration = 8.000000
}
}
}
|
| cAnimGroup 5419 |
|---|
cAnimGroup 5419
{
cRandomChooser random
{
Dice = "Dice"
cChooserEntryFloat zombie_soldier_dead_turret_truck420906
{
Anim = 5420
Value = 1.000000
}
cChooserEntryFloat zombie_soldier_dead_turret_overturned_truck430734
{
Anim = 5421
Value = 0.000000
}
cChooserEntryFloat zombie_soldier_dead_overturned_truck440437
{
Anim = 5422
Value = 0.000000
}
cChooserEntryFloat zombie_soldier_dead_window_truck460062
{
Anim = 5423
Value = 0.000000
}
cChooserEntryFloat zombie_deadpose_10340515
{
Anim = 5424
Value = 0.000000
}
cChooserEntryFloat zombie_deadpose_1340531
{
Anim = 5425
Value = 0.000000
}
cChooserEntryFloat zombie_deadpose_2340531
{
Anim = 5426
Value = 0.000000
}
cChooserEntryFloat zombie_deadpose_3340546
{
Anim = 5427
Value = 0.000000
}
cChooserEntryFloat zombie_deadpose_4340546
{
Anim = 5428
Value = 0.000000
}
cChooserEntryFloat zombie_deadpose_5340546
{
Anim = 5429
Value = 0.000000
}
cChooserEntryFloat zombie_deadpose_6340546
{
Anim = 5430
Value = 0.000000
}
cChooserEntryFloat zombie_deadpose_7340546
{
Anim = 5431
Value = 0.000000
}
cChooserEntryFloat zombie_deadpose_8340546
{
Anim = 5432
Value = 0.000000
}
cChooserEntryFloat zombie_deadpose_9340546
{
Anim = 5433
Value = 0.000000
}
}
cAnimRef 5420
{
File = -702155105
DataRate = 1.000000
Looping = "true"
Mirror = "false"
PhysicalStartSpeed = "PhysicalStartSpeed"
PhysicalEndSpeed = "PhysicalEndSpeed"
cAnimEvent -1141532598
{
Time = 0.000000
Duration = 8.000000
}
}
cAnimRef 5421
{
File = -138255854
DataRate = 1.000000
Looping = "true"
Mirror = "false"
PhysicalStartSpeed = "PhysicalStartSpeed"
PhysicalEndSpeed = "PhysicalEndSpeed"
cAnimEvent -1141532598
{
Time = 0.000000
Duration = 8.000000
}
}
cAnimRef 5422
{
File = 948849117
DataRate = 1.000000
Looping = "true"
Mirror = "false"
PhysicalStartSpeed = "PhysicalStartSpeed"
PhysicalEndSpeed = "PhysicalEndSpeed"
cAnimEvent -1141532598
{
Time = 0.000000
Duration = 8.000000
}
}
cAnimRef 5423
{
File = 1200919971
DataRate = 1.000000
Looping = "true"
Mirror = "false"
PhysicalStartSpeed = "PhysicalStartSpeed"
PhysicalEndSpeed = "PhysicalEndSpeed"
cAnimEvent -1141532598
{
Time = 0.000000
Duration = 8.000000
}
}
cAnimRef 5424
{
File = 885822070
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1141532598
{
Time = 0.000000
Duration = 8.000000
}
}
cAnimRef 5425
{
File = 807030918
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1141532598
{
Time = 0.000000
Duration = 8.000000
}
}
cAnimRef 5426
{
File = 803692805
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1141532598
{
Time = 0.000000
Duration = 8.000000
}
}
cAnimRef 5427
{
File = 804806916
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1141532598
{
Time = 0.000000
Duration = 8.000000
}
}
cAnimRef 5428
{
File = 810373251
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1141532598
{
Time = 0.000000
Duration = 8.000000
}
}
cAnimRef 5429
{
File = 811487362
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1141532598
{
Time = 0.000000
Duration = 8.000000
}
}
cAnimRef 5430
{
File = 808149249
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1141532598
{
Time = 0.000000
Duration = 8.000000
}
}
cAnimRef 5431
{
File = 809263360
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1141532598
{
Time = 0.000000
Duration = 8.000000
}
}
cAnimRef 5432
{
File = 797003919
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1141532598
{
Time = 0.000000
Duration = 8.000000
}
}
cAnimRef 5433
{
File = 798118030
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent -1141532598
{
Time = 0.000000
Duration = 8.000000
}
}
}
|
cImmediateTransitioner ToZombieDead
{
Dest = 887
DestEvent = -1
UseDestEvent = "false"
SyncWithDest = "false"
}
Looter death[]
cAnimGroup 1824
{
cRandomChooser random
{
cChooserEntryFloat looter_dead_onbelly875
{
Anim = 1855
Value = 0.000000
}
cChooserEntryFloat looter_dead_onback875
{
Anim = 1856
Value = 0.000000
}
cChooserEntryFloat looter_clear_stickable280781
{
Anim = 1857
Value = 0.000000
}
cChooserEntryFloat looter_point450171
{
Anim = 1858
Value = 0.000000
}
cChooserEntryFloat looter_hitreaction_onfire480328
{
Anim = 1859
Value = 0.000000
}
cChooserEntryFloat looter_hitreaction_onfire_240328
{
Anim = 1860
Value = 0.000000
}
cChooserEntryFloat looter_hitreaction_onfire_3120890
{
Anim = 1861
Value = 0.000000
}
}
cAnimRef 1855
{
File = -1783202888
DataRate = 1.000000
Looping = "false"
Mirror = "false"
}
cAnimRef 1856
{
File = -1302174195
DataRate = 1.000000
Looping = "false"
Mirror = "false"
}
cAnimRef 1857
{
File = 2055681846
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAnimEvent 1504856554
{
Time = 0.320000
Duration = 0.200000
}
cAudioAnimEvent -1400614996
{
Time = 0.320000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520974
{
Time = 0.770000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674644821
{
Time = 0.300000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmFast"
PlaybackPercentage = 0
}
cAudioAnimEvent 176886476
{
Time = 0.550000
Duration = 0.000000
Type = "vocal"
AssetName = "Stickable"
PlaybackPercentage = 0
}
}
cAnimRef 1858
{
File = -621499088
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cCanTurnEvent 1870904494
{
Time = 0.000000
Duration = 10.000000
LimitRateOfTurn = "true"
RateOfTurn = 0.500000
}
cAudioAnimEvent 1674616869
{
Time = 0.180000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyLegMed"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520974
{
Time = 0.500000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -1010520975
{
Time = 2.880000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674644821
{
Time = 0.150000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmSlow"
PlaybackPercentage = 0
}
cAudioAnimEvent 1674644822
{
Time = 2.520000
Duration = 0.000000
Type = "cfoley"
AssetName = "CfoleyArmSlow"
PlaybackPercentage = 0
}
cAudioAnimEvent -2013351516
{
Time = 0.680000
Duration = 0.000000
Type = "vgasp"
AssetName = "LooterAwareness"
PlaybackPercentage = 0
}
}
cAnimRef 1859
{
File = -1418016698
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAudioAnimEvent -1518139103
{
Time = 0.010000
Duration = 0.000000
Type = "vocal"
AssetName = "HitReactionMedium"
PlaybackPercentage = 0
}
cAudioAnimEvent 507225691
{
Time = 0.591500
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 687629631
{
Time = 1.280000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkHardLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 2106936431
{
Time = 1.970000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 506112670
{
Time = 1.970000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspPivot"
PlaybackPercentage = 0
}
cAudioAnimEvent 465780441
{
Time = 2.460000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkRight"
PlaybackPercentage = 0
}
cAudioAnimEvent -120331384
{
Time = 3.150000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspScuff"
PlaybackPercentage = 0
}
cAudioAnimEvent 497749176
{
Time = 3.540000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 423094999
{
Time = 3.930000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftRIght"
PlaybackPercentage = 0
}
cAudioAnimEvent 654279859
{
Time = 4.420000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 496629884
{
Time = 4.620000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 497740664
{
Time = 0.880000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 650790706
{
Time = 1.527750
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 686377812
{
Time = 4.030000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 691123665
{
Time = 5.010000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkHardLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 2108060960
{
Time = 5.210000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 419478331
{
Time = 5.510000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunHardLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 649542360
{
Time = 5.900000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 500120959
{
Time = 6.490000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspWalkRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 423105815
{
Time = 6.980000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 702966744
{
Time = 7.370000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunHardRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 502481917
{
Time = 8.010751
Duration = 0.000000
Type = "motion"
AssetName = "BodyFall"
PlaybackPercentage = 100
}
}
cAnimRef 1860
{
File = -1068119093
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAudioAnimEvent -1518139103
{
Time = 0.010000
Duration = 0.000000
Type = "vocal"
AssetName = "HitReactionMedium"
PlaybackPercentage = 0
}
cAudioAnimEvent 425477437
{
Time = 0.420000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 686378046
{
Time = 0.830000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 663763633
{
Time = 1.210000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunSoftLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 2106945733
{
Time = 1.420000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 455192180
{
Time = 1.670000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 421843549
{
Time = 1.830000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 691107604
{
Time = 2.210000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 648421241
{
Time = 2.790000
Duration = 0.000000
Type = "motion"
AssetName = "BodyFall"
PlaybackPercentage = 0
}
cAudioAnimEvent 506113598
{
Time = 3.960000
Duration = 0.000000
Type = "motionp"
AssetName = "-helditem-HitHardSurface"
PlaybackPercentage = 0
}
}
cAnimRef 1861
{
File = -1067004982
DataRate = 1.000000
Looping = "false"
Mirror = "false"
cAudioAnimEvent -1518139103
{
Time = 0.010000
Duration = 0.000000
Type = "vocal"
AssetName = "HitReactionMedium"
PlaybackPercentage = 0
}
cAudioAnimEvent -120332347
{
Time = 0.530000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 498999162
{
Time = 0.960000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 418353459
{
Time = 1.390000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 693482943
{
Time = 1.710000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 651905686
{
Time = 2.130000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 2103312193
{
Time = 2.450000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 502478611
{
Time = 2.670000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 464676179
{
Time = 3.410000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 687627188
{
Time = 3.840000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 647174047
{
Time = 4.050000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 497739548
{
Time = 4.480000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 463426938
{
Time = 5.650000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 427845982
{
Time = 6.080000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 653160437
{
Time = 6.400000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunRight"
PlaybackPercentage = 0
}
cAudioAnimEvent 2103316324
{
Time = 7.040000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 500106899
{
Time = 7.680000
Duration = 0.000000
Type = "footstep"
AssetName = "FtspRunLeft"
PlaybackPercentage = 0
}
cAudioAnimEvent 418363163
{
Time = 9.280000
Duration = 0.000000
Type = "motion"
AssetName = "BodyFall"
PlaybackPercentage = 0
}
cAudioAnimEvent 702970968
{
Time = 10.450000
Duration = 0.000000
Type = "motionp"
AssetName = "-helditem-HitHardSurface"
PlaybackPercentage = 0
}
}
}
|
Merc death[]
| cAnimGroup 1935 |
|---|
cAnimGroup 1935
{
cRandomChooser random
{
Dice = "Dice"
cChooserEntryFloat merc_dead_onback40633
{
Anim = 1961
Value = 0.000000
}
cChooserEntryFloat merc_dead_onbelly150165
{
Anim = 1962
Value = 0.000000
}
}
cAnimRef 1961
{
File = -373647493
DataRate = 1.000000
Looping = "false"
Mirror = "false"
PhysicalStartSpeed = "PhysicalStartSpeed"
PhysicalEndSpeed = "PhysicalEndSpeed"
cAnimEvent -1141532598
{
Time = 0.000000
Duration = 8.000000
}
}
cAnimRef 1962
{
File = -879425266
DataRate = 1.000000
Looping = "false"
Mirror = "false"
PhysicalStartSpeed = "PhysicalStartSpeed"
PhysicalEndSpeed = "PhysicalEndSpeed"
cAnimEvent 984278783
{
Time = 0.000000
Duration = 8.000000
}
}
}
|
Coding for idle[]
cGenericTransitioner ToSIdle
cAnimGroup 548
Attempts to modify[]
cGenericAnimState 739
{
AbsoluteTranslationMode = "false"
cRandomChooser cRandomChooser
{
cChooserEntryFloat male_sullivan_checkwatch60968
{
Anim = 4035
Value = 0.000000
}
}
cAnimRef 4035
{
}
cGenericTransitioner ToSSullivanPace
{
Dest = 739
DestEvent = -1
UseDestEvent = "false"
}
cSurvivorHeadTrackingPoseWarper SurvivorHeadTrackingPoseWarper
{
}
}
References[]
External links[]
- Duration of blood splatter, Dead Rising 2 PC Mods, (April 25, 2011).













