├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── API ├── .gitignore ├── FortniteEmotesNDancesAPI.csproj └── IFortniteEmotesAPI.cs ├── CS2TraceRay ├── CS2TraceRay.csproj ├── CS2TraceRay.gamedata.json ├── Class │ ├── Address.cs │ ├── GameTraceExtensions.cs │ ├── PlayerExtensions.cs │ ├── TraceRay.cs │ └── TraceRayExtensions.cs ├── Enum │ ├── Contents.cs │ ├── CsgoLayerIndex.cs │ ├── DesignerNameMatchType.cs │ ├── LayerIndex.cs │ ├── RayType.cs │ ├── StandardLayerIndex.cs │ └── TraceMask.cs └── Struct │ ├── CGameTrace.cs │ ├── CTraceFilter.cs │ ├── CTraceHitbox.cs │ ├── Capsule.cs │ ├── Hull.cs │ ├── Line.cs │ ├── Mesh.cs │ ├── Ray.cs │ └── Sphere.cs ├── Plugin ├── .gitignore ├── API.cs ├── Commands.cs ├── Config.cs ├── EmoteMenu.cs ├── Events.cs ├── FortniteEmotesNDances.cs ├── FortniteEmotesNDances.csproj ├── Helpers.cs ├── Transmit.cs ├── gamedata │ └── fortnite_emotes.json └── lang │ ├── en.json │ ├── ru.json │ ├── tr.json │ └── zh-Hans.json ├── README.md ├── csgo_addons ├── characters │ └── kolka │ │ └── fortnite_dance.vmdl_c ├── soundevents │ └── fortnite_emotes.vsndevts_c └── sounds │ └── emote │ ├── dancemoves1.vsnd_c │ ├── dancemoves2.vsnd_c │ ├── electroshuffle.vsnd_c │ ├── emote_aerobicchamp.vsnd_c │ ├── emote_bandofthefort.vsnd_c │ ├── emote_bendy.vsnd_c │ ├── emote_blowkiss.vsnd_c │ ├── emote_boogiedown.vsnd_c │ ├── emote_calculated.vsnd_c │ ├── emote_capoeira.vsnd_c │ ├── emote_celebration_loop.vsnd_c │ ├── emote_charleston.vsnd_c │ ├── emote_chicken.vsnd_c │ ├── emote_cry.vsnd_c │ ├── emote_dance_breakdance.vsnd_c │ ├── emote_dance_disco_t3.vsnd_c │ ├── emote_dance_loser.vsnd_c │ ├── emote_dance_nobones.vsnd_c │ ├── emote_dance_pump.vsnd_c │ ├── emote_dance_ridethepony.vsnd_c │ ├── emote_dance_shoot.vsnd_c │ ├── emote_dance_swipeit.vsnd_c │ ├── emote_dance_worm.vsnd_c │ ├── emote_dg_disco.vsnd_c │ ├── emote_dustingoffhands.vsnd_c │ ├── emote_dustingoffshoulders.vsnd_c │ ├── emote_easternbloc.vsnd_c │ ├── emote_facepalm.vsnd_c │ ├── emote_fancyfeet.vsnd_c │ ├── emote_fishing.vsnd_c │ ├── emote_flex.vsnd_c │ ├── emote_flippnsexy.vsnd_c │ ├── emote_flossdance.vsnd_c │ ├── emote_fresh.vsnd_c │ ├── emote_golfclap.vsnd_c │ ├── emote_groovejam.vsnd_c │ ├── emote_guitar.vsnd_c │ ├── emote_handsignals.vsnd_c │ ├── emote_heelclick.vsnd_c │ ├── emote_hillbilly_shuffle.vsnd_c │ ├── emote_hip_hop.vsnd_c │ ├── emote_hiphop_01.vsnd_c │ ├── emote_hotstuff.vsnd_c │ ├── emote_hula.vsnd_c │ ├── emote_infinidab.vsnd_c │ ├── emote_intensity_loop.vsnd_c │ ├── emote_irishjig.vsnd_c │ ├── emote_koreaneagle.vsnd_c │ ├── emote_kpop_02.vsnd_c │ ├── emote_laugh.vsnd_c │ ├── emote_livinglarge.vsnd_c │ ├── emote_luchador.vsnd_c │ ├── emote_make_it_rain.vsnd_c │ ├── emote_maracas.vsnd_c │ ├── emote_mask_off_loop.vsnd_c │ ├── emote_poplock.vsnd_c │ ├── emote_poprock.vsnd_c │ ├── emote_robotdance.vsnd_c │ ├── emote_salute.vsnd_c │ ├── emote_smoothdrive.vsnd_c │ ├── emote_snap.vsnd_c │ ├── emote_stagebow.vsnd_c │ ├── emote_technozombie.vsnd_c │ ├── emote_twist.vsnd_c │ ├── emote_warehousedance_loop.vsnd_c │ ├── emote_wiggle.vsnd_c │ ├── emote_yeet.vsnd_c │ ├── emote_youre_awesome.vsnd_c │ └── emote_zippy_dance.vsnd_c └── git_assets ├── preview_emotes.gif └── preview_menu.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/.gitignore -------------------------------------------------------------------------------- /API/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/API/.gitignore -------------------------------------------------------------------------------- /API/FortniteEmotesNDancesAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/API/FortniteEmotesNDancesAPI.csproj -------------------------------------------------------------------------------- /API/IFortniteEmotesAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/API/IFortniteEmotesAPI.cs -------------------------------------------------------------------------------- /CS2TraceRay/CS2TraceRay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/CS2TraceRay.csproj -------------------------------------------------------------------------------- /CS2TraceRay/CS2TraceRay.gamedata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/CS2TraceRay.gamedata.json -------------------------------------------------------------------------------- /CS2TraceRay/Class/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/Class/Address.cs -------------------------------------------------------------------------------- /CS2TraceRay/Class/GameTraceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/Class/GameTraceExtensions.cs -------------------------------------------------------------------------------- /CS2TraceRay/Class/PlayerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/Class/PlayerExtensions.cs -------------------------------------------------------------------------------- /CS2TraceRay/Class/TraceRay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/Class/TraceRay.cs -------------------------------------------------------------------------------- /CS2TraceRay/Class/TraceRayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/Class/TraceRayExtensions.cs -------------------------------------------------------------------------------- /CS2TraceRay/Enum/Contents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/Enum/Contents.cs -------------------------------------------------------------------------------- /CS2TraceRay/Enum/CsgoLayerIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/Enum/CsgoLayerIndex.cs -------------------------------------------------------------------------------- /CS2TraceRay/Enum/DesignerNameMatchType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/Enum/DesignerNameMatchType.cs -------------------------------------------------------------------------------- /CS2TraceRay/Enum/LayerIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/Enum/LayerIndex.cs -------------------------------------------------------------------------------- /CS2TraceRay/Enum/RayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/Enum/RayType.cs -------------------------------------------------------------------------------- /CS2TraceRay/Enum/StandardLayerIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/Enum/StandardLayerIndex.cs -------------------------------------------------------------------------------- /CS2TraceRay/Enum/TraceMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/Enum/TraceMask.cs -------------------------------------------------------------------------------- /CS2TraceRay/Struct/CGameTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/Struct/CGameTrace.cs -------------------------------------------------------------------------------- /CS2TraceRay/Struct/CTraceFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/Struct/CTraceFilter.cs -------------------------------------------------------------------------------- /CS2TraceRay/Struct/CTraceHitbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/Struct/CTraceHitbox.cs -------------------------------------------------------------------------------- /CS2TraceRay/Struct/Capsule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/Struct/Capsule.cs -------------------------------------------------------------------------------- /CS2TraceRay/Struct/Hull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/Struct/Hull.cs -------------------------------------------------------------------------------- /CS2TraceRay/Struct/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/Struct/Line.cs -------------------------------------------------------------------------------- /CS2TraceRay/Struct/Mesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/Struct/Mesh.cs -------------------------------------------------------------------------------- /CS2TraceRay/Struct/Ray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/Struct/Ray.cs -------------------------------------------------------------------------------- /CS2TraceRay/Struct/Sphere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/CS2TraceRay/Struct/Sphere.cs -------------------------------------------------------------------------------- /Plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/Plugin/.gitignore -------------------------------------------------------------------------------- /Plugin/API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/Plugin/API.cs -------------------------------------------------------------------------------- /Plugin/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/Plugin/Commands.cs -------------------------------------------------------------------------------- /Plugin/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/Plugin/Config.cs -------------------------------------------------------------------------------- /Plugin/EmoteMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/Plugin/EmoteMenu.cs -------------------------------------------------------------------------------- /Plugin/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/Plugin/Events.cs -------------------------------------------------------------------------------- /Plugin/FortniteEmotesNDances.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/Plugin/FortniteEmotesNDances.cs -------------------------------------------------------------------------------- /Plugin/FortniteEmotesNDances.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/Plugin/FortniteEmotesNDances.csproj -------------------------------------------------------------------------------- /Plugin/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/Plugin/Helpers.cs -------------------------------------------------------------------------------- /Plugin/Transmit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/Plugin/Transmit.cs -------------------------------------------------------------------------------- /Plugin/gamedata/fortnite_emotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/Plugin/gamedata/fortnite_emotes.json -------------------------------------------------------------------------------- /Plugin/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/Plugin/lang/en.json -------------------------------------------------------------------------------- /Plugin/lang/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/Plugin/lang/ru.json -------------------------------------------------------------------------------- /Plugin/lang/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/Plugin/lang/tr.json -------------------------------------------------------------------------------- /Plugin/lang/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/Plugin/lang/zh-Hans.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/README.md -------------------------------------------------------------------------------- /csgo_addons/characters/kolka/fortnite_dance.vmdl_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/characters/kolka/fortnite_dance.vmdl_c -------------------------------------------------------------------------------- /csgo_addons/soundevents/fortnite_emotes.vsndevts_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/soundevents/fortnite_emotes.vsndevts_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/dancemoves1.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/dancemoves1.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/dancemoves2.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/dancemoves2.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/electroshuffle.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/electroshuffle.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_aerobicchamp.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_aerobicchamp.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_bandofthefort.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_bandofthefort.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_bendy.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_bendy.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_blowkiss.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_blowkiss.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_boogiedown.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_boogiedown.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_calculated.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_calculated.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_capoeira.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_capoeira.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_celebration_loop.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_celebration_loop.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_charleston.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_charleston.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_chicken.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_chicken.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_cry.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_cry.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_dance_breakdance.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_dance_breakdance.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_dance_disco_t3.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_dance_disco_t3.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_dance_loser.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_dance_loser.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_dance_nobones.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_dance_nobones.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_dance_pump.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_dance_pump.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_dance_ridethepony.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_dance_ridethepony.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_dance_shoot.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_dance_shoot.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_dance_swipeit.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_dance_swipeit.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_dance_worm.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_dance_worm.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_dg_disco.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_dg_disco.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_dustingoffhands.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_dustingoffhands.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_dustingoffshoulders.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_dustingoffshoulders.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_easternbloc.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_easternbloc.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_facepalm.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_facepalm.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_fancyfeet.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_fancyfeet.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_fishing.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_fishing.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_flex.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_flex.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_flippnsexy.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_flippnsexy.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_flossdance.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_flossdance.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_fresh.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_fresh.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_golfclap.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_golfclap.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_groovejam.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_groovejam.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_guitar.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_guitar.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_handsignals.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_handsignals.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_heelclick.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_heelclick.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_hillbilly_shuffle.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_hillbilly_shuffle.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_hip_hop.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_hip_hop.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_hiphop_01.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_hiphop_01.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_hotstuff.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_hotstuff.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_hula.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_hula.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_infinidab.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_infinidab.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_intensity_loop.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_intensity_loop.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_irishjig.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_irishjig.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_koreaneagle.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_koreaneagle.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_kpop_02.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_kpop_02.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_laugh.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_laugh.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_livinglarge.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_livinglarge.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_luchador.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_luchador.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_make_it_rain.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_make_it_rain.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_maracas.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_maracas.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_mask_off_loop.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_mask_off_loop.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_poplock.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_poplock.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_poprock.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_poprock.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_robotdance.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_robotdance.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_salute.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_salute.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_smoothdrive.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_smoothdrive.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_snap.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_snap.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_stagebow.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_stagebow.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_technozombie.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_technozombie.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_twist.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_twist.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_warehousedance_loop.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_warehousedance_loop.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_wiggle.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_wiggle.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_yeet.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_yeet.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_youre_awesome.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_youre_awesome.vsnd_c -------------------------------------------------------------------------------- /csgo_addons/sounds/emote/emote_zippy_dance.vsnd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/csgo_addons/sounds/emote/emote_zippy_dance.vsnd_c -------------------------------------------------------------------------------- /git_assets/preview_emotes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/git_assets/preview_emotes.gif -------------------------------------------------------------------------------- /git_assets/preview_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruze03/FortniteEmotesNDances/HEAD/git_assets/preview_menu.png --------------------------------------------------------------------------------